changeset 31:e4d2a8eb1450

widescreen style aspect ratio for music still sttuggling with memory leak releated to stop in transport controls
author tzara <rc-web@kiben.net>
date Thu, 16 Aug 2012 07:17:03 +0000
parents ea19684cd1db
children c4719d1b7633 710ce76d98fd
files nodescore.js rasterize.js ss2thumb.sh svgmods.sh www/m/js/nodescore-client.js www/m/music.html www/m/svg/12_7_1.svg www/m/svg/13_6_2.svg www/m/svg/14_1_1.svg www/m/svg/15_0_2.svg www/m/svg/16_2_2.svg www/m/svg/17_3_1.svg www/m/svg/18_4_2.svg www/m/svg/19_5_1.svg www/m/svg/20_5_0.svg www/m/svg/21_4_3.svg www/m/svg/22_3_0.svg www/m/svg/23_2_3.svg www/m/svg/24_0_3.svg www/m/svg/25_1_0.svg www/m/svg/26_6_3.svg www/m/svg/27_7_0.svg www/m/svg/28_7_7.svg www/m/svg/29_6_4.svg www/m/svg/30_1_7.svg www/m/svg/31_0_4.svg www/m/svg/32_2_4.svg www/m/svg/33_3_7.svg www/m/svg/34_4_4.svg www/m/svg/35_5_7.svg www/m/svg/36_5_6.svg www/m/svg/37_4_5.svg www/m/svg/38_3_6.svg www/m/svg/39_2_5.svg www/m/svg/40_0_5.svg www/m/svg/41_1_6.svg www/m/svg/42_6_5.svg www/m/svg/43_7_6.svg www/m/svg/44_7_5.svg www/m/svg/45_6_6.svg www/m/svg/46_1_5.svg www/m/svg/47_0_6.svg www/m/svg/48_2_6.svg www/m/svg/49_3_5.svg www/m/svg/50_4_6.svg www/m/svg/51_5_5.svg www/m/svg/52_5_4.svg www/m/svg/53_4_7.svg www/m/svg/54_3_4.svg www/m/svg/55_2_7.svg www/m/svg/56_0_7.svg www/m/svg/57_1_4.svg www/m/svg/58_6_7.svg www/m/svg/59_7_4.svg www/m/svg/60_7_3.svg www/m/svg/61_6_0.svg www/m/svg/62_1_3.svg www/m/svg/63_0_0.svg www/m/svg/64_2_0.svg www/m/svg/65_3_3.svg www/m/svg/66_4_0.svg www/m/svg/67_5_3.svg www/m/svg/68_5_2.svg www/m/svg/69_4_1.svg www/m/svg/70_3_2.svg www/m/svg/71_2_1.svg www/m/svg/72_0_1.svg www/m/svg/73_1_2.svg www/m/svg/74_6_1.svg www/m/svg/75_7_2.svg www/m/svg/svg-stylesheet.css www/m/thumbs/1.png www/m/thumbs/2.png www/m/thumbs/3.png www/m/thumbs/4.png www/m/thumbs/5.png www/m/thumbs/6.png
diffstat 77 files changed, 4145 insertions(+), 4653 deletions(-) [+]
line wrap: on
line diff
--- a/nodescore.js	Wed Aug 08 00:58:11 2012 +0000
+++ b/nodescore.js	Thu Aug 16 07:17:03 2012 +0000
@@ -37,7 +37,7 @@
 var io = sio.listen(httpServer)
 , nicknames = {};
 
-io.set('log level', 2); // reduce loggingi
+io.set('log level', 1); // reduce loggingi
 io.sockets.on('connection', function (socket) {
 
     ////////////////////////////////////////////
@@ -84,7 +84,8 @@
 	    var now=datetime.toString()
 //	    console.log(now);
 	    socket.broadcast.emit("dateTime", now);
- 	    socket.emit("dateTime", now);}, 1000)}
+// 	    socket.emit("dateTime", now);
+	}, 1000)}
    
     clearInterval(ding);
     dateTime()
@@ -130,7 +131,7 @@
     var seqD = { metrobeat:0, voice:4, name: "D", counter: 0, mm: 60, beatsinbar: 4, durations: srcsqr[3], units: [2,3,4,2,3,1]};
     
 
-    countdowntick = function(seq){
+    var countdowntick = function(seq){
 
 	var outcount = 12; var incount=12;
 	var time = ((seq.durations[seq.counter]+1) *timemultiplier) + 30000 + (outcount*1000);
@@ -138,19 +139,12 @@
 	var unit = seq.units[seq.counter];
 	var tempoms = 60000/seq.mm
 	
-	// inititate first page here
+	// initiate first page here
 	socket.broadcast.emit("pageFlipfromserver", seq.voice, unit, time, seq.mm,seq.counter);
 	
-	var tock = setInterval(function(){    
+	var tock = setInterval(function(){
 
 
-	    	    
-	    socket.on('stopSeq', function () {
-		clearInterval(tock)
-		sequencerState=0;  
-		stopChr();
-	    });
-
 
 	    if (ztime >= 0 ){
 		
@@ -202,25 +196,41 @@
 	    if (ztime < 0){}	    	    	    
 	    // decrement the time 
 	    ztime -= 1000
-			
+				
 	}, tempoms)
-			  };
+		
+	  };
+
+//	    socket.on('stopSeq', function () {
+//		console.log("sequencer stopping...")	    
+//		clearInterval(tock)
+//		sequencerState=0;  
+//		stopChr();    
+		//		var tock = function(){null}
+	    
+//	    });
 
     socket.on('startSeq', function () { 
 	if (sequencerState == 0) { 
-	    console.log("bla")	    
+	    console.log("sequencer starting...")	    
 	    sequencerState=1;
 	    startChr();
 	    step(seqA); step(seqB); step(seqC); step(seqD);	    
 	    ztime =-1;
 	}
-	else console.log("already started...")
+	else console.log("sequencer already started...")
     });
+
+
+
+
     
     socket.on('resetSeq', function () { 
 	console.log("reset")
 	resetChr();		
     });
+
+
     
     step = function (seq) {
 	clearInterval(countdowntick);
--- a/rasterize.js	Wed Aug 08 00:58:11 2012 +0000
+++ b/rasterize.js	Thu Aug 16 07:17:03 2012 +0000
@@ -4,7 +4,7 @@
 
 top = system.args[3];
 
-page.clipRect = { top: top, left: 0, width: 800, height: 400 }
+page.clipRect = { top: top, left: 0, width: 1000, height: 400 }
 
 if (system.args.length < 3 || system.args.length > 5) {
     console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]');
@@ -15,7 +15,7 @@
     output = system.args[2];
  
 
-    page.viewportSize = { width: 1024, height: 400 };
+    page.viewportSize = { width: 1000, height: 400 };
     if (system.args.length > 4 && system.args[2].substr(-4) === ".pdf") {
         size = system.args[4].split('*');
         page.paperSize = size.length === 2 ? { width: size[0], height: size[1], margin: '0px' }
--- a/ss2thumb.sh	Wed Aug 08 00:58:11 2012 +0000
+++ b/ss2thumb.sh	Thu Aug 16 07:17:03 2012 +0000
@@ -20,7 +20,7 @@
 fi
 
 ANCHORS=`grep '<a' www/$BASEDIR/music.html|wc -l`
-GAP=800
+GAP=400
 TOP=0
 for each in $(seq 1 $ANCHORS);
 do
--- a/svgmods.sh	Wed Aug 08 00:58:11 2012 +0000
+++ b/svgmods.sh	Thu Aug 16 07:17:03 2012 +0000
@@ -5,10 +5,12 @@
 path="www/m/svg"
 header='<?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?> '
 
+
+
 for i in `ls $path/*.svg`;
 do
     # change size - commented out - size can be defined in html
-    sed -i 's/ width="105.00mm" height="60.00mm" viewBox="0 0 108.6378 62.0787"/ width="1280px" height="800px" viewBox="0 0 1280 800"/'g $i
+    sed -i 's/  width="100.00mm" height="40.00mm" viewBox="0 0 103.4646 41.3858"/ width="1000px" height="400px" viewBox="0 0 1000 400"/'g $i
     #sed -i 's/ width="105.00mm" height="60.00mm" / width="1280px" height="800px" /'g $i
     echo $header > tmp.svg; 
     cat $i >> tmp.svg ; 
--- a/www/m/js/nodescore-client.js	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/js/nodescore-client.js	Thu Aug 16 07:17:03 2012 +0000
@@ -107,7 +107,7 @@
     var next=(((unit+1)%units)+units)%units
     console.log("HOP TURN" + unit+ "next:" + next);
     $("#live").load("music.html #"+unit +" *"); 
-    $("#preview").html("<h3 style='background:transparent; position: absolute; bottom:14px; right:14px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='320'>")
+    $("#preview").html("<h3 style='background:transparent; position: absolute; bottom:14px; right:14px;';> n e x t : </h3><img src='thumbs/"+next + ".png" + "' width='400'>")
 }
 
 ////////////////////////////////////////////////
--- a/www/m/music.html	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/music.html	Thu Aug 16 07:17:03 2012 +0000
@@ -2,7 +2,7 @@
 <html>
 <head>
     <style type="text/css">
-      .svgmusic {width:1024px; height:768px;}
+      .svgmusic {width:1000px; height:400px;}
     </style>
 </head>
 
--- a/www/m/svg/12_7_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/12_7_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,50 +1,248 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 12</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.0691C2.3890 1.4863 1.4416 1.4863 0.9769 1.0691L0.9769 1.0691C1.4416 1.6401 2.3890 1.6401 2.8538 1.0691z"/>
-<path transform="translate(11.5732, 12.1792) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 21.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 20.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 20.7146)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 20.7146)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 22.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 21.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 20.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 21.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 20.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 20.7146)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 20.7146)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-1.0000, 30.6805, 19.2146)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 34.8208)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
 </g>
-<text transform="translate(30.6805, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(26.7330, 34.8208)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-8va</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(34.5190, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="41.2809" y2="-0.0000" stroke-dasharray="0.453626170616239,0.545906952217112"/>
-<line transform="translate(75.7999, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(34.5190, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
+<polygon transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 35.0445)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 35.0445)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 34.9132)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 34.9132)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 34.7177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 34.8208)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 34.8208)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 34.7945)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 34.7945)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 34.4794)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 34.4794)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 34.2177)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/13_6_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/13_6_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,84 +1,249 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 18.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 13.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 17.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 13</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.0213, 23.6256) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.0213, 22.6256) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.2678, 23.1256)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(25.8839, 23.1256)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 25.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 24.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 23.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 22.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.1256)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 26.1256)" x="26.7837" y="-0.1269" width="1.7444" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1256)" x="42.9767" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 23.1256)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(72.9103, 20.6256) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(75.0996, 21.1256) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(73.4288, 25.9425) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(66.5755, 24.6256) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(68.7255, 29.6442)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(68.7255, 29.6442)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(68.0255, 24.6256) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(22.6189, 24.1256) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(63.8206, 19.6256) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(45.2092, 26.0699) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/>
-<path transform="translate(44.5559, 21.1256) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.0880, 22.6256) scale(0.0028, -0.0028)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(42.9712, 21.1256) scale(0.0045, -0.0045)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
-c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
-zM101 59v-148l73 30v148z" fill="currentColor"/>
-<path transform="translate(41.2158, 22.6256) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(29.9214, 17.2256)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 37.4521)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 37.4521)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-8va</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(33.7599, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="43.2463" y2="-0.0000" stroke-dasharray="0.453391428930474,0.545359221616993"/>
-<line transform="translate(77.0062, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(33.7599, 16.4807)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(30.3833, 26.7622) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(64.9706, 19.6256) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(51.3496, 20.6256) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(52.6796, 20.6256) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(29.9214, 22.6256) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(47.3275, 26.1256) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(49.4776, 29.6442)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(49.4776, 29.6442)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(48.7776, 26.1256) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
+<polygon transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 37.6759)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 37.6759)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 37.5445)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 37.5445)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 37.3490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 37.4521)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 37.4521)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 37.4259)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 37.4259)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 37.1107)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 37.1107)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 36.8490)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/14_1_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/14_1_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,77 +1,245 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 17.6547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.7982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 14</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 13.4535) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.4535) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 22.9294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 21.9294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 22.4294)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 22.4294)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 24.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 22.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 21.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 20.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 19.4294)" x="35.7330" y="-0.1269" width="1.6227" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(38.0213, 22.9294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.0213, 21.9294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.2678, 22.4294)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(35.8839, 22.4294)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(32.6189, 23.4294) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(66.5769, 19.4294) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(65.8860, 20.9294) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(39.9829, 20.4294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(39.9829, 22.4294)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.2927 -3.0129C12.1923 -4.4678 2.6824 -4.4678 0.5820 -3.0129L0.5820 -3.0129C2.6824 -4.6523 12.1923 -4.6523 14.2927 -3.0129z"/>
-<line transform="translate(31.8189, 22.4294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.2417" y1="-1.8856" x2="13.7866" y2="-1.6144"/>
-<path transform="translate(46.5191, 20.9294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<g transform="rotate(-3.9866, 48.5975, 20.8251)">
-<path transform="translate(51.5975, 21.2251) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.5975, 21.2251) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.5975, 21.2251) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.5975, 21.2251) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 37.9676)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
 </g>
-<path transform="translate(53.6936, 20.4294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.2436, 20.4294) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(59.9798, 21.9294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(60.6798, 26.9294)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(60.6798, 26.9294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.7269, 20.9294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.7269, 19.4294) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.3060, 17.2626) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
+<text transform="translate(26.7330, 37.9676)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 38.1913)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 38.1913)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 38.0600)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 38.0600)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 37.8645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 37.9676)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 37.9676)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 37.9413)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 37.9413)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 37.6262)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 37.6262)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 37.3645)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/15_0_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/15_0_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,119 +1,243 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 15</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0080) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 27.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 26.8283)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 26.8283)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 28.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 27.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 23.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.8283)" x="7.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.8283)" x="15.2978" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.8283)" x="22.7226" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.0213, 27.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.0213, 26.3283) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.2678, 26.8283)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.8839, 26.8283)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 27.8283) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(53.4077, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -1.8104C6.1614 -1.1067 2.3273 -1.1067 1.3640 -1.8104L1.3640 -1.8104C2.3273 -0.9221 6.1614 -0.9221 7.1247 -1.8104z"/>
-<path transform="translate(53.4077, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2248 -6.0000C6.2529 -6.7070 2.3359 -6.7070 1.3640 -6.0000L1.3640 -6.0000C2.3359 -6.8915 6.2529 -6.8915 7.2248 -6.0000z"/>
-<line transform="translate(54.3230, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.6734" y2="0.0000"/>
-<line transform="translate(54.3230, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.6734" y2="-0.0000"/>
-<path transform="translate(45.9829, 24.8283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.9829, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.6734" y2="0.6666"/>
-<line transform="translate(45.9829, 32.0884)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.6734" y2="-0.6666"/>
-<line transform="translate(51.7522, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.7522, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.0148, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.0148, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(50.2773, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(50.2773, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(49.5399, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(49.5399, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.8024, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.8024, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.0649, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.0649, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.7522, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.7522, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.0148, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.0148, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(50.2773, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(50.2773, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(49.5399, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(49.5399, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.8024, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.8024, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.0649, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.0649, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<path transform="translate(53.4077, 21.3283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.4077, 24.8283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.4077, 16.7154) scale(0.0040, -0.0040)" d="M118 30c-1 34 -17 68 -48 68c-26 0 -38 -31 -38 -61c0 -55 42 -96 82 -134c3 20 5 41 5 62v10zM173 -144c0 -20 -12 -38 -31 -38c-30 0 -39 37 -59 57c-54 52 -128 94 -128 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-10 330c11 6 24 9 36 9s24 -3 35 -9z" fill="currentColor"/>
-<path transform="translate(45.9829, 21.3283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.9897, 19.3154) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(45.9829, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2248 -6.0000C6.2529 -6.7070 2.3359 -6.7070 1.3640 -6.0000L1.3640 -6.0000C2.3359 -6.8915 6.2529 -6.8915 7.2248 -6.0000z"/>
-<path transform="translate(45.9829, 26.8283)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1247 -1.8104C6.1614 -1.1067 2.3273 -1.1067 1.3640 -1.8104L1.3640 -1.8104C2.3273 -0.9221 6.1614 -0.9221 7.1247 -1.8104z"/>
-<line transform="translate(59.1770, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(59.1770, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(58.4396, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(58.4396, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(57.7021, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(57.7021, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.9646, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.9646, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.2272, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.2272, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(55.4897, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(55.4897, 21.3283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(59.1770, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(59.1770, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(58.4396, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(58.4396, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(57.7021, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(57.7021, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.9646, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.9646, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.2272, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.2272, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(55.4897, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(55.4897, 24.8283)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<path transform="translate(60.8325, 21.3283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.8325, 24.8283) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.8812)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 36.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 36.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.9736)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 35.8812)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 35.5397)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 35.5397)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/16_2_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/16_2_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,112 +1,252 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 16</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(88.9236, 26.3311) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.9236, 27.3311) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.9236, 28.3311) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.9236, 29.3311) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(19.2899, 29.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.9811" y2="-0.0000"/>
-<line transform="translate(19.2899, 28.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.9811" y2="-0.0000"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.9811" y2="-0.0000"/>
-<line transform="translate(19.2899, 26.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.9811" y2="-0.0000"/>
-<line transform="translate(19.2899, 25.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.9811" y2="-0.0000"/>
-<path transform="translate(72.5236, 27.4039) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(72.4236, 27.8311)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="52.7718" y1="3.0000" x2="59.7718" y2="4.0000"/>
-<path transform="translate(79.5236, 27.9039) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.4236, 27.8311)" x="-0.0999" y="-0.0000" width="0.1999" height="3.9020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(85.4253, 29.1039)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(85.4253, 29.1039)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(84.7889, 29.3766)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(84.7889, 29.3766)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(84.1526, 29.6493)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(84.1526, 29.6493)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(83.5162, 29.9221)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(83.5162, 29.9221)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(82.8798, 30.1948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(82.8798, 30.1948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(82.2435, 30.4675)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(82.2435, 30.4675)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(81.6071, 30.7402)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(81.6071, 30.7402)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(80.9708, 31.0130)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(80.9708, 31.0130)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(80.3344, 31.2857)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(80.3344, 31.2857)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(79.6980, 31.5584)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(79.6980, 31.5584)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<line transform="translate(79.0617, 31.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.2001" y1="-0.4119" x2="0.7545" y2="0.0028"/>
-<line transform="translate(79.0617, 31.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1181" y1="0.2756" x2="0.2001" y2="-0.4119"/>
-<path transform="translate(86.0617, 25.1311) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<g transform="rotate(26.5651, 65.0617, 27.3311)">
-<path transform="translate(71.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.0617, 27.7311) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 27.1312)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
 </g>
-<path transform="translate(64.7996, 30.7584) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(64.6997, 27.8311)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="38.7718" y1="-1.5000" x2="45.7718" y2="-0.5000"/>
-<path transform="translate(57.7996, 29.7584) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(57.6997, 27.8311)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(85.5997, 28.8311)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<rect transform="translate(86.4236, 27.8311)" x="-0.0999" y="-2.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(39.5433, 16.9759)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -1.1785 3.5037 -0.9399 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.5433, 17.6838)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -1.1785 3.5037 -0.9399 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.5433, 18.3917)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -1.1785 3.5037 -0.9399 0.0727 0.1193 0.0727 -0.1193"/>
-<rect transform="translate(41.0265, 27.8311)" x="-0.0999" y="-11.2946" width="0.1999" height="3.2253" ry="0.0727" fill="currentColor"/>
-<path transform="translate(40.7998, 30.4080) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(25.0899, 28.6634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 0.1683 7.1272 0.5028 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.6432, 27.8311)" x="-0.0999" y="-10.8849" width="0.1999" height="3.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(39.4165, 30.4080) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="-1.5000" x2="20.1266" y2="-7.0000"/>
-<rect transform="translate(32.1898, 27.8311)" x="-0.0999" y="-1.3615" width="0.1999" height="2.5246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="-2.0000" x2="13.4533" y2="-1.5000"/>
-<rect transform="translate(25.1898, 27.8311)" x="-0.0999" y="-1.8615" width="0.1999" height="2.6984" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.2899, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="31.7718" y1="-2.5000" x2="38.7718" y2="-1.5000"/>
-<polygon transform="translate(49.9497, 26.7136)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.9497, 27.5236)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.9497, 28.3336)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.6997, 27.8311)" x="-0.0999" y="-2.4020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.7996, 29.7584) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(43.6997, 27.8311)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.5997, 27.8311)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4619 -2.9071C12.3407 -4.4831 2.5831 -4.4831 0.4619 -2.9071L0.4619 -2.9071C2.5831 -4.6522 12.3407 -4.6522 14.4619 -2.9071z"/>
-<line transform="translate(44.0617, 26.3311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="-1.0000" stroke-dasharray="0.611853225613092,0.341156461796262"/>
-<rect transform="translate(43.0198, 27.8311)" x="-0.0999" y="-11.8849" width="0.1999" height="2.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.7931, 30.4080) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
+<text transform="translate(26.7330, 27.1312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 27.3549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 27.3549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 27.2236)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 27.2236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 27.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 27.1312)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 27.1312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 27.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 27.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 26.7897)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 26.7897)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 26.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.0953, 30.4490)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.0953, 30.4490)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+6.69</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(12.8773, 30.3177)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(12.8773, 30.3177)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left</tspan>
+</text>
+<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -5.6902 0.0000 -6.6902 0.2500 -5.6902"/>
+<line transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-6.4402"/>
+</g>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/17_3_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/17_3_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,78 +1,252 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 16.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 17</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0080) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(30.9279, 25.0744) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(30.9279, 24.0744) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(30.1744, 24.5744)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(28.7905, 24.5744)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(24.6072, 26.5744)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.3466" y2="-0.0000"/>
-<line transform="translate(24.6072, 25.5744)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.3466" y2="-0.0000"/>
-<line transform="translate(24.6072, 24.5744)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.3466" y2="-0.0000"/>
-<line transform="translate(24.6072, 23.5744)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.3466" y2="-0.0000"/>
-<line transform="translate(24.6072, 22.5744)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.3466" y2="-0.0000"/>
-<path transform="translate(81.4690, 25.0744) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(81.4690, 24.0744) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(82.3546, 24.5744)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(83.1080, 24.5744)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(32.9790, 18.7881)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="36.0943" y2="-0.0000" stroke-dasharray="0.745338618369465,2.21252330464669"/>
-<line transform="translate(69.1503, 18.7881)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(32.9022, 19.2881)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(37.0168, 23.5744) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(37.0168, 17.2766)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 27.0989)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 27.0989)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-flautando</tspan>
+bottom-of-extent</tspan>
 </text>
-<text transform="translate(37.0168, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<polygon transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 27.3227)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 27.3227)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-repeat,</tspan>
+0.50</tspan>
 </text>
-<text transform="translate(44.4455, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 27.1913)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 27.1913)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-alternating</tspan>
+padding</tspan>
 </text>
-<text transform="translate(56.4059, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<polygon transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 26.9959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-between</tspan>
+0.00</tspan>
 </text>
-<text transform="translate(65.0140, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 27.0989)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 27.0989)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-given</tspan>
+min-dist</tspan>
 </text>
-<text transform="translate(70.9528, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<polygon transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 27.0727)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 27.0727)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-pitches</tspan>
+0.00</tspan>
 </text>
-<text transform="translate(78.5677, 30.0218)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 26.7575)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 26.7575)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-freely</tspan>
+space</tspan>
 </text>
-<path transform="translate(37.0168, 24.5744)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M30.1466 -1.1629C27.3872 -2.9478 3.4688 -3.7572 0.5951 -2.1629L0.5951 -2.1629C3.4751 -3.9416 27.3934 -3.1322 30.1466 -1.1629z"/>
-<path transform="translate(51.9175, 23.0744) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(66.5683, 24.5744) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(25.4072, 23.5744) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
+<polygon transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 26.4959)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.0953, 30.4329)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.0953, 30.4329)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+6.72</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(12.8773, 30.3016)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(12.8773, 30.3016)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left</tspan>
+</text>
+<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -5.7225 0.0000 -6.7225 0.2500 -5.7225"/>
+<line transform="translate(12.3773, 33.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-6.4725"/>
+</g>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/18_4_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/18_4_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,59 +1,240 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 18</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.0691C2.3890 1.4863 1.4416 1.4863 0.9769 1.0691L0.9769 1.0691C1.4416 1.6401 2.3890 1.6401 2.8538 1.0691z"/>
-<path transform="translate(11.5732, 12.1792) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(35.7866, 23.3909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(35.7866, 22.3909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(35.0331, 22.8909)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(33.6492, 22.8909)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(29.4659, 24.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.6292" y2="-0.0000"/>
-<line transform="translate(29.4659, 23.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.6292" y2="-0.0000"/>
-<line transform="translate(29.4659, 22.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.6292" y2="-0.0000"/>
-<line transform="translate(29.4659, 21.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.6292" y2="-0.0000"/>
-<line transform="translate(29.4659, 20.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.6292" y2="-0.0000"/>
-<path transform="translate(76.6103, 23.3909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(76.6103, 22.3909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(77.4959, 22.8909)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(78.2493, 22.8909)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(30.2659, 21.8909) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<polygon transform="translate(29.4659, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="43.2375 0.6119 43.2375 -0.6119 44.8285 -0.0000"/>
-<line transform="translate(44.5786, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="28.9517" y2="-0.0000" stroke-dasharray="1.15203962543356,0.844507157901094"/>
-<text transform="translate(37.9982, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.8812)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-ad lib.</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(51.8250, 22.2663)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="9.0104" y2="-0.7509" stroke-dasharray="0.53783710393478,0.422340071486586"/>
-<path transform="translate(37.7482, 20.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(37.7482, 22.8909)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M36.5820 -3.0129C33.6068 -4.7936 3.5572 -4.7936 0.5820 -3.0129L0.5820 -3.0129C3.5572 -4.9627 33.6068 -4.9627 36.5820 -3.0129z"/>
-<line transform="translate(29.4659, 22.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.3528" y1="-1.8139" x2="19.3759" y2="-0.6861"/>
-<path transform="translate(49.7482, 22.3909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.7482, 21.3909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(63.8289, 21.3284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="9.0026" y2="-0.3751" stroke-dasharray="0.153766233766234,0.847390671729801"/>
-<path transform="translate(60.2982, 21.3909) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(73.7482, 20.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 36.1049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 36.1049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.9736)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 35.7781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 35.8812)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 35.8812)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 35.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 35.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 35.5397)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 35.5397)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 35.2781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/19_5_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/19_5_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,45 +1,240 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 19</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(59.9449, 20.0516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(59.9449, 19.0516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(60.8305, 19.5516)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.5840, 19.5516)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(46.1312, 21.5516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 20.5516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 19.5516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 18.5516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 17.5516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<path transform="translate(52.4519, 20.0516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.4519, 19.0516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.6985, 19.5516)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.3146, 19.5516)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(54.1762, 18.0516) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.9312, 18.5516) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(55.0116, 17.2247) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 34.6312)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 34.6312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 34.8549)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 34.8549)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 34.7236)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 34.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 34.5281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 34.6312)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 34.6312)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 34.6049)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 34.6049)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 34.2897)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 34.2897)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 34.0281)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/20_5_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/20_5_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,56 +1,246 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 13.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 19.4637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 20</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(59.9449, 22.0414) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(59.9449, 21.0414) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(60.8305, 21.5414)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.5840, 21.5414)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(46.1312, 23.5414)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 22.5414)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 21.5414)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 20.5414)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 19.5414)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<rect transform="translate(46.1312, 24.5414)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(46.1312, 25.5414)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(46.1312, 26.5414)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(46.1312, 27.5414)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(52.4519, 22.0414) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.4519, 21.0414) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.6985, 21.5414)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.3146, 21.5414)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(54.1762, 27.5414) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.9312, 20.5414) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<text transform="translate(51.0084, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 40.0834)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 40.0834)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-8va</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(54.8469, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="1.6000" y2="-0.0000" stroke-dasharray="0.543766233766234,0.756233766233766"/>
-<line transform="translate(56.4469, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(54.8469, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(55.0116, 19.2146) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
+<polygon transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 40.3072)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 40.3072)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 40.1759)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 40.1759)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 39.9804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 40.0834)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 40.0834)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 40.0572)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 40.0572)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 39.7420)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 39.7420)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 39.4804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/21_4_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/21_4_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,59 +1,243 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 21</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(41.3764, 23.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(41.3764, 22.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(40.6230, 22.8411)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(39.2391, 22.8411)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(35.1741, 24.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.2128" y2="-0.0000"/>
-<line transform="translate(35.1741, 23.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.2128" y2="-0.0000"/>
-<line transform="translate(35.1741, 22.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.2128" y2="-0.0000"/>
-<line transform="translate(35.1741, 21.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.2128" y2="-0.0000"/>
-<line transform="translate(35.1741, 20.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.2128" y2="-0.0000"/>
-<rect transform="translate(35.1741, 19.8411)" x="19.8730" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(70.9021, 23.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(70.9021, 22.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(71.7877, 22.8411)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(72.5411, 22.8411)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<polygon transform="translate(35.1741, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="31.1192 0.6119 31.1192 -0.6119 32.7102 -0.0000"/>
-<line transform="translate(50.1684, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="16.9517" y2="-0.0000" stroke-dasharray="1.15074466918406,0.843212201651588"/>
-<text transform="translate(43.5881, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.7499)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.7499)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-ad lib.</tspan>
+bottom-of-extent</tspan>
 </text>
-<path transform="translate(43.3381, 20.8411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(43.3381, 22.8411)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M24.5820 -3.0129C21.9446 -4.7272 3.2194 -4.7272 0.5820 -3.0129L0.5820 -3.0129C3.2194 -4.8963 21.9446 -4.8963 24.5820 -3.0129z"/>
-<line transform="translate(35.1741, 22.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="22.2409" y1="-2.8754" x2="31.2512" y2="-2.1246"/>
-<path transform="translate(55.3381, 19.8411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(35.1741, 22.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.2409" y1="-2.1246" x2="19.2512" y2="-2.8754"/>
-<path transform="translate(67.3381, 20.8411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(35.9741, 23.8411) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
+<polygon transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 35.9736)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 35.9736)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 35.8423)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 35.8423)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 35.6468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 35.7499)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 35.7499)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 35.7236)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 35.7236)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 35.4084)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 35.4084)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 35.1468)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/22_3_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/22_3_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,84 +1,252 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 20.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 15.7831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.7831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.7831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 19.7831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.7831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 22.9266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 22</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 13.7831) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 13.5155) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(69.2572, 27.7298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(69.2572, 26.7298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(70.1428, 27.2298)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(70.8963, 27.2298)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(43.0213, 27.7298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(43.0213, 26.7298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(42.2678, 27.2298)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(40.8839, 27.2298)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(36.8189, 29.2298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 28.2298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 27.2298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 26.2298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 25.2298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<path transform="translate(37.6189, 28.2298) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(62.5992, 25.2298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.49802308913302 0 4.49406926739907 -0.66 4.49406926739907 -1.0"/>
-<path transform="translate(55.6891, 25.7298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.58201165448387 0 4.74603496345162 0.66 4.74603496345162 1.0"/>
-<text transform="translate(44.7456, 19.7632)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 43.2885)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 43.2885)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-8va</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(48.5841, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="15.7791" y2="-0.0000" stroke-dasharray="0.463348545295715,0.568592493135889"/>
-<line transform="translate(64.3632, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(48.5841, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(49.0311, 25.7298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(49.0311, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<polygon transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 43.5123)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 43.5123)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-pizz.</tspan>
+0.50</tspan>
 </text>
-<text transform="translate(54.2249, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 43.3810)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 43.3810)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-&amp;</tspan>
+padding</tspan>
 </text>
-<text transform="translate(56.6873, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<polygon transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 43.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-slide</tspan>
+0.00</tspan>
 </text>
-<path transform="translate(49.0311, 25.7298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.49802308913302 0 4.49406926739907 -0.66 4.49406926739907 -1.0"/>
-<path transform="translate(49.6131, 24.3529) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(47.8811, 25.7298) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(55.6891, 25.7298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.0725, 20.8400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="20.0318" y2="-0.0000" stroke-dasharray="0.801494104043105,2.43714524734125"/>
-<line transform="translate(65.1812, 20.8400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(44.9956, 21.3400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(56.2711, 24.3529) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(54.6725, 25.7298) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(62.5992, 25.2298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(63.1812, 23.9669) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(61.1492, 25.2298) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 43.2885)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 43.2885)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 43.2623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 43.2623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 42.9471)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 42.9471)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 42.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/23_2_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/23_2_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,118 +1,248 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 20.3508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 22.4791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 23</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 13.5155) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(88.3103, 23.3015) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 24.3015) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 25.3015) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 26.3015) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(19.9032, 26.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 25.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 23.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 22.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<path transform="translate(71.9103, 24.8743) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(71.8104, 24.8015)" x="-0.0999" y="-0.0000" width="0.1999" height="6.9020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="51.5452" y1="7.0000" x2="58.5452" y2="6.5000"/>
-<path transform="translate(78.9103, 24.8743) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(78.8104, 24.8015)" x="-0.0999" y="-0.0000" width="0.1999" height="6.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(84.8650, 27.1765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(84.8650, 27.1765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(84.2817, 27.5515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(84.2817, 27.5515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(83.6984, 27.9265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(83.6984, 27.9265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(83.1150, 28.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(83.1150, 28.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(82.5317, 28.6765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(82.5317, 28.6765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(81.9484, 29.0515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(81.9484, 29.0515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(81.3650, 29.4265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(81.3650, 29.4265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(80.7817, 29.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(80.7817, 29.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(80.1984, 30.1765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(80.1984, 30.1765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(79.6150, 30.5515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(79.6150, 30.5515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(79.0317, 30.9265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(79.0317, 30.9265)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(78.4484, 31.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(78.4484, 31.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<rect transform="translate(85.8104, 24.8015)" x="-0.0999" y="-1.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<g transform="rotate(32.7352, 64.4484, 27.3015)">
-<path transform="translate(71.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(64.4484, 27.7015) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 42.3012)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
 </g>
-<path transform="translate(64.9103, 23.8743) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(64.8104, 24.8015)" x="-0.0999" y="-1.0000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="37.5452" y1="3.0000" x2="44.5452" y2="2.5000"/>
-<path transform="translate(84.9864, 26.8015)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<path transform="translate(57.9103, 24.3743) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(57.8104, 24.8015)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(85.4484, 22.4747) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(41.2298, 27.3784) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(26.8098, 22.6338)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 0.1683 7.1272 0.5028 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(40.2565, 24.8015)" x="-0.0999" y="-8.8849" width="0.1999" height="3.3156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(40.0298, 27.3784) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(40.1566, 15.9167)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(40.1566, 16.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(40.1566, 17.3325)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<rect transform="translate(41.4565, 24.8015)" x="-0.0999" y="-8.8849" width="0.1999" height="2.8156" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="1.5000" x2="20.1266" y2="-5.5000"/>
-<rect transform="translate(33.9098, 24.8015)" x="-0.0999" y="-1.8369" width="0.1999" height="3.1984" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="1.0000" x2="13.4533" y2="1.5000"/>
-<rect transform="translate(26.9098, 24.8015)" x="-0.0999" y="-2.1631" width="0.1999" height="3.0246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="30.5452" y1="2.0000" x2="37.5452" y2="3.0000"/>
-<polygon transform="translate(50.0604, 25.7940)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.0604, 24.9840)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.0604, 24.1740)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.8104, 24.8015)" x="-0.0999" y="-1.6250" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<line transform="translate(43.4484, 25.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="1.5000" stroke-dasharray="0.616872809600103,0.348685837776779"/>
-<path transform="translate(43.9103, 21.8743) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(43.8104, 24.8015)" x="-0.0999" y="-3.0000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.9864, 24.8015)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4047 4.0571C12.0091 5.2133 2.2119 3.3589 0.4047 1.4071L0.4047 1.4071C2.1805 3.5251 11.9776 5.3795 14.4047 4.0571z"/>
-<rect transform="translate(42.6565, 24.8015)" x="-0.0999" y="-8.8849" width="0.1999" height="3.3156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.4298, 27.3784) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
+<text transform="translate(26.7330, 42.3012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 42.5249)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 42.5249)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 42.3936)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 42.3936)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 42.1981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 42.3012)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 42.3012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 42.2749)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 42.2749)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 41.9598)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 41.9598)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 41.6981)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/24_0_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/24_0_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,126 +1,252 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.3588)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-of-extent</tspan>
+</text>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(31.2330, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.9510, 9.8325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.9510, 9.8325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(31.7330, 9.7012)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(31.7330, 9.7012)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0835 -0.3340 0 0 -0.0835 -0.3340"/>
+<polygon transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0835 -0.6680 0.0000 -1.0020 0.0835 -0.6680"/>
+<line transform="translate(31.2330, 9.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0835" stroke="currentColor" x1="0.0000" y1="-0.1670" x2="0.0000" y2="-0.8350"/>
+</g>
+<g color="rgb(50.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.6049, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.6049, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(19.3869, 9.3588)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(19.3869, 9.3588)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(18.8869, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(25.0%, 0.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(5.0953, 9.3325)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(5.0953, 9.3325)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.8773, 9.0173)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.8773, 9.0173)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(9.3773, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 24</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<g color="rgb(0.0%, 0.0%, 100.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.4064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 25.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 26.4864)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 26.4864)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 28.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 27.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.4864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<path transform="translate(44.0213, 26.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.0213, 25.9864) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.2678, 26.4864)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.8839, 26.4864)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 27.4864) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(54.5495, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 0.1951C5.5896 0.8992 1.7462 0.8992 0.7820 0.1951L0.7820 0.1951C1.7462 1.0837 5.5896 1.0837 6.5538 0.1951z"/>
-<path transform="translate(54.5495, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.6539 -3.0000C5.7331 -3.6870 2.2848 -3.6870 1.3640 -3.0000L1.3640 -3.0000C2.2848 -3.8715 5.7331 -3.8715 6.6539 -3.0000z"/>
-<path transform="translate(44.9456, 25.9864) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(46.2456, 23.9864) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(52.9892, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.9892, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(52.3469, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.3469, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.7045, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.7045, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.0622, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.0622, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(50.4199, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(50.4199, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(49.7776, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(49.7776, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<path transform="translate(54.5495, 23.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(52.9892, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.9892, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(52.3469, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.3469, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.7045, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.7045, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.0622, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.0622, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(50.4199, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(50.4199, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(49.7776, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(49.7776, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<text transform="translate(47.6956, 19.9734)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 39.7886)" x="0.0000" y="-1.2081" width="15.1281" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 39.7886)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
 <tspan>
-8va</tspan>
+bottom-of-extent</tspan>
 </text>
-<line transform="translate(51.5341, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="11.6333" y2="-0.0000" stroke-dasharray="0.46285575429614,0.567442647470213"/>
-<line transform="translate(63.1674, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(51.5341, 19.2285)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(47.6956, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.1026" y2="0.6666"/>
-<line transform="translate(47.6956, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.1026" y2="-0.6666"/>
-<path transform="translate(47.6956, 25.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(47.6956, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 0.1951C5.5896 0.8992 1.7462 0.8992 0.7820 0.1951L0.7820 0.1951C1.7462 1.0837 5.5896 1.0837 6.5538 0.1951z"/>
-<path transform="translate(61.4034, 25.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.4034, 23.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(59.8431, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.8431, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.2007, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.2007, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(58.5584, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(58.5584, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.9161, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.9161, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.2738, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.2738, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(56.6315, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(56.6315, 25.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.8431, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.8431, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.2007, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.2007, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(58.5584, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(58.5584, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.9161, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.9161, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.2738, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.2738, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(56.6315, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(56.6315, 23.9864)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<path transform="translate(47.6956, 23.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(47.6956, 26.4864)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.6539 -3.0000C5.7331 -3.6870 2.2848 -3.6870 1.3640 -3.0000L1.3640 -3.0000C2.2848 -3.8715 5.7331 -3.8715 6.6539 -3.0000z"/>
-<path transform="translate(55.1315, 21.9735) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<line transform="translate(55.4648, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.1026" y2="0.0000"/>
-<line transform="translate(55.4648, 32.4196)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.1026" y2="-0.0000"/>
-<path transform="translate(54.5495, 16.4835) scale(0.0040, -0.0040)" d="M313 -312c-14 0 -26 12 -26 26v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-25 11 -25 25v122l-62 -18v-136c0 -14 -11 -25 -25 -25s-26 11 -26 25v122l-17 -5c-3 -1 -6 -1 -9 -1c-19 0 -36 16 -36 36v41c0 16 11 30 26 34l36 11v147l-17 -5c-3 -1 -6 -2 -9 -2
-c-19 0 -36 16 -36 36v42c0 16 11 30 26 34l36 10v136c0 14 12 26 26 26s25 -12 25 -26v-122l62 18v136c0 14 11 25 25 25s25 -11 25 -25v-122l62 18v136c0 14 12 25 26 25s25 -11 25 -25v-122l17 5c3 1 6 1 9 1c19 0 36 -16 36 -36v-41c0 -16 -11 -30 -26 -34l-36 -11v-147
-l17 5c3 1 6 2 9 2c19 0 36 -16 36 -36v-42c0 -16 -11 -30 -26 -34l-36 -10v-136c0 -14 -11 -26 -25 -26zM113 49v-147l62 17v147zM225 81v-147l62 17v147z" fill="currentColor"/>
-<path transform="translate(54.5495, 25.9864) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<polygon transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(26.2330, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 100.0%, 0.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(21.9510, 40.0123)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(21.9510, 40.0123)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.50</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(26.7330, 39.8810)" x="0.0000" y="-1.2081" width="6.6185" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(26.7330, 39.8810)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+padding</tspan>
+</text>
+<polygon transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0418 -0.1673 0 0 -0.0418 -0.1673"/>
+<polygon transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0418 -0.3347 0.0000 -0.5020 0.0418 -0.3347"/>
+<line transform="translate(26.2330, 39.6855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0418" stroke="currentColor" x1="0.0000" y1="-0.0837" x2="0.0000" y2="-0.4183"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(9.6049, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(9.6049, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(14.3869, 39.7886)" x="0.0000" y="-1.2081" width="7.5641" height="1.2081" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(14.3869, 39.7886)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+min-dist</tspan>
+</text>
+<polygon transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(13.8869, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 25.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(0.0953, 39.7623)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(0.0953, 39.7623)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+0.00</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(4.8773, 39.4471)" x="0.0000" y="-0.8405" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(4.8773, 39.4471)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space</tspan>
+</text>
+<polygon transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.0002 -0.0007 0 0 -0.0002 -0.0007"/>
+<polygon transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.0002 -0.0013 0.0000 -0.0020 0.0002 -0.0013"/>
+<line transform="translate(4.3773, 39.1855)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0002" stroke="currentColor" x1="0.0000" y1="-0.0003" x2="0.0000" y2="-0.0017"/>
+</g>
+<text transform="translate(12.3773, -0.0000)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+space left: NaN/inf</tspan>
+</text>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
+</text>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(1.7725, 18.0872)" x="0.0000" y="-1.1556" width="4.7275" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(1.7725, 18.0872)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+35.02</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(7.5000, 17.9559)" x="0.0000" y="-1.2081" width="11.3461" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(7.5000, 17.9559)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+paper-height</tspan>
+</text>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -34.0208 0.0000 -35.0208 0.2500 -34.0208"/>
+<line transform="translate(7.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-34.7708"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 4.9552)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 4.9552)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+8.76</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 4.8238)" x="0.0000" y="-1.2081" width="9.4551" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 4.8238)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+top-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.2500 -1.0000 0 0 -0.2500 -1.0000"/>
+<polygon transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.2500 -7.7567 0.0000 -8.7567 0.2500 -7.7567"/>
+<line transform="translate(8.0000, 8.7557)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-8.5067"/>
+</g>
+<g color="rgb(0.0%, 0.0%, 50.0%)">
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(3.7180, 34.7211)" x="0.0000" y="-1.1556" width="3.7820" height="1.1556" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(3.7180, 34.7211)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+1.75</tspan>
+</text>
+<g color="rgb(100.0%, 100.0%, 100.0%)">
+<rect transform="translate(8.5000, 34.5898)" x="0.0000" y="-1.2081" width="12.2916" height="1.5233" ry="0.0000" fill="currentColor"/>
+</g>
+<text transform="translate(8.5000, 34.5898)" font-family="monospace" font-size="1.5552" text-anchor="start" fill="currentColor">
+<tspan>
+bottom-margin</tspan>
+</text>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="0.1461 -0.5843 0 0 -0.1461 -0.5843"/>
+<polygon transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0000" fill="currentColor" stroke="currentColor" points="-0.1461 -1.1686 0.0000 -1.7529 0.1461 -1.1686"/>
+<line transform="translate(8.0000, 35.0198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0000" y1="-0.2500" x2="0.0000" y2="-1.5029"/>
+</g>
 </svg>
--- a/www/m/svg/25_1_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/25_1_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,85 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 25</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.4064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 25.1732) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 24.1732) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 24.6732)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 24.6732)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 26.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 25.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 24.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 22.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 21.6732)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.6732)" x="14.4235" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 20.6732)" x="14.4235" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 19.6732)" x="14.4235" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 18.6732)" x="14.5395" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.6732)" x="21.7285" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.6732)" x="28.4133" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 20.6732)" x="28.4133" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.6732)" x="35.6024" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.6732)" x="35.6038" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 20.6732)" x="35.7184" y="-0.1269" width="1.6227" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(38.1396, 25.1732) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.1396, 24.1732) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.3861, 24.6732)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(36.0022, 24.6732)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(66.2623, 20.1732) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(32.6189, 23.6732) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.7224, 21.6732) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(45.3834, 18.6732) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<g transform="rotate(22.6508, 48.4997, 19.2509)">
-<path transform="translate(51.4997, 19.6509) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.4997, 19.6509) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.4997, 19.6509) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.4997, 19.6509) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(46.5334, 18.6732) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(31.8189, 24.6732)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.1471" y1="-4.0348" x2="13.8951" y2="-5.4652"/>
-<path transform="translate(39.9826, 24.6732)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.3360 -4.0129C12.4126 -8.9932 2.8763 -9.3402 0.5961 -4.5129L0.5961 -4.5129C2.8831 -9.5246 12.4193 -9.1776 14.3360 -4.0129z"/>
-<path transform="translate(39.9826, 21.1732) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.2724, 21.6732) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(60.5232, 20.6732) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.2232, 28.2501)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.2232, 28.2501)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.7123, 21.6732) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.7123, 20.1732) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.2914, 18.0065) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/26_6_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/26_6_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,65 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 26</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.1396, 19.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.1396, 18.6145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.3861, 19.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.0022, 19.1145)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 21.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 20.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 19.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 18.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 17.1145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 22.1145)" x="45.4279" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 23.1145)" x="45.4279" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 19.1145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(22.6189, 18.1145) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(74.9096, 19.6145) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(73.1489, 23.2652) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/>
-<path transform="translate(72.4956, 19.1145) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(68.2607, 26.3505)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(68.2607, 26.3505)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(44.5238, 21.8303) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(44.1123, 19.6145) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.0123, 17.6145) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151
-c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22
-zM99 61v-152l77 30v152z" fill="currentColor"/>
-<path transform="translate(41.7483, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(30.6198, 21.9314) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(30.1013, 17.6145) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.5607, 23.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(64.5528, 17.1145) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(51.9780, 19.1145) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(46.7600, 21.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(48.9100, 26.3505)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(48.9100, 26.3505)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(48.2100, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/27_7_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/27_7_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,43 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 27</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 20.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 16.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-0.0000, 30.6805, 17.2247)">
-</g>
 </svg>
--- a/www/m/svg/28_7_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/28_7_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,43 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 28</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 20.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 16.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-7.0000, 30.6805, 17.2247)">
-</g>
 </svg>
--- a/www/m/svg/29_6_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/29_6_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,82 +1,35 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<rect transform="translate(36.6684, 11.2547)" x="8.5250" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.4684, 13.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.4684, 18.9508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.3403, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/>
+<line transform="translate(49.7805, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.3403, 18.1628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 21.0791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 29</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
-</text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.4064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.1396, 21.3064) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.1396, 20.3064) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.3861, 20.8064)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.0022, 20.8064)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 22.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 20.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 19.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 18.8064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(86.5267, 20.8064)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(75.6323, 18.3064) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(74.0083, 23.6233) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(73.4898, 18.8064) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.5847, 21.8064) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<circle transform="translate(69.4347, 29.2163)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(69.4347, 29.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(68.7347, 21.8064) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(64.2658, 20.3064) scale(0.0032, -0.0032)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(22.6189, 19.8064) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(46.3897, 23.6833) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(45.8077, 18.3064) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.3837, 19.8064) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151
-c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22
-zM99 61v-152l77 30v152z" fill="currentColor"/>
-<path transform="translate(42.1196, 19.8064) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(44.6577, 18.3064) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(29.0639, 21.3064) scale(0.0045, -0.0045)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
 c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
 zM101 59v-148l73 30v148z" fill="currentColor"/>
-<text transform="translate(30.6486, 27.7163)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
-8vb</tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(34.5492, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.8472" y2="-0.0000" stroke-dasharray="0.450606921079355,0.53886203663105"/>
-<line transform="translate(77.3963, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(34.5492, 26.9092)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(31.3019, 23.7507) scale(0.0045, -0.0045)" d="M0 -138c-19 0 -35 16 -35 35v68h-68c-19 0 -35 16 -35 35s16 35 35 35h68v68c0 19 16 35 35 35s35 -16 35 -35v-68h68c19 0 35 -16 35 -35s-16 -35 -35 -35h-68v-68c0 -19 -16 -35 -35 -35z" fill="currentColor"/>
-<path transform="translate(30.6486, 21.3064) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(65.2508, 20.3064) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.4580, 18.8064) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(48.3070, 23.3064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(50.4571, 29.2163)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(50.4571, 29.2163)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(49.7571, 23.3064) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/30_1_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/30_1_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,80 +1,34 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 16.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 15.8960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.0395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 30</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 25.9813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 24.9813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 25.4813)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 25.4813)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 27.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 26.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 25.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 24.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 22.4813)" x="35.4673" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.4813)" x="35.4673" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(38.0213, 25.9813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.0213, 24.9813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.2678, 25.4813)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(35.8839, 25.4813)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(66.5590, 22.9813) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(32.6189, 26.4813) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(39.9829, 23.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(39.9829, 25.4813)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.5674 -3.5129C12.3439 -4.8229 2.5694 -4.1253 0.5544 -2.5129L0.5544 -2.5129C2.5563 -4.3094 12.3307 -5.0069 14.5674 -3.5129z"/>
-<text transform="translate(39.9829, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(43.8214, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="25.5183" y2="-0.0000" stroke-dasharray="0.456385538189258,0.552345476554155"/>
-<line transform="translate(69.3397, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(43.8214, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(31.8189, 25.4813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.2419" y1="-1.3882" x2="13.9376" y2="-1.1118"/>
-<path transform="translate(46.6703, 24.4813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<g transform="rotate(-11.5719, 48.7218, 24.1804)">
-<path transform="translate(51.7218, 24.5804) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.7218, 24.5804) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.7218, 24.5804) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.7218, 24.5804) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(53.9960, 22.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.5460, 22.9813) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(60.6834, 23.4813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.3834, 29.0582)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.3834, 29.0582)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.5757, 22.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.5757, 21.4813) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.1548, 19.3146) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/31_0_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/31_0_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,120 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 10.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 11.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 16.8305)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 31</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 27.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 26.7679)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 26.7679)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 28.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 27.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 23.7679)" x="8.4040" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7679)" x="8.5200" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.7679)" x="15.6518" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7679)" x="15.6518" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.7679)" x="22.8996" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7679)" x="22.8996" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.1396, 27.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.1396, 26.2679) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.3861, 26.7679)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(42.0022, 26.7679)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 25.7679) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.7617, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/>
-<path transform="translate(53.7617, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -5.0000C6.0912 -5.7012 2.3206 -5.7012 1.3640 -5.0000L1.3640 -5.0000C2.3206 -5.8857 6.0912 -5.8857 7.0478 -5.0000z"/>
-<path transform="translate(53.7617, 22.2679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(45.0639, 25.7679) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(45.0639, 22.2679) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(52.1357, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(52.1357, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(51.4278, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(51.4278, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(50.7198, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(50.7198, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(50.0118, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(50.0118, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(49.3039, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(49.3039, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(48.5959, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(48.5959, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<path transform="translate(53.7617, 25.7679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(52.1357, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(52.1357, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(51.4278, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(51.4278, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(50.7198, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(50.7198, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(50.0118, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(50.0118, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(49.3039, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(49.3039, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(48.5959, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(48.5959, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(46.5139, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.4964" y2="0.6666"/>
-<line transform="translate(46.5139, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.4964" y2="-0.6666"/>
-<path transform="translate(46.5139, 25.7679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.0095, 25.7679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.0095, 22.2679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(59.3835, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(59.3835, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(58.6755, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(58.6755, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(57.9676, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(57.9676, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(57.2596, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(57.2596, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(56.5517, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(56.5517, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(55.8437, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(55.8437, 25.7679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(59.3835, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(59.3835, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(58.6755, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(58.6755, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(57.9676, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(57.9676, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(57.2596, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(57.2596, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(56.5517, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(56.5517, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<line transform="translate(55.8437, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3540" y1="-0.3066" x2="0.7080" y2="0.3066"/>
-<line transform="translate(55.8437, 22.2679)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3066" x2="0.3540" y2="-0.3066"/>
-<path transform="translate(46.5139, 22.2679) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(46.5139, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.9477 -0.8088C6.0000 -0.1111 2.3117 -0.1111 1.3640 -0.8088L1.3640 -0.8088C2.3117 0.0735 6.0000 0.0735 6.9477 -0.8088z"/>
-<path transform="translate(46.5139, 26.7679)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.0478 -5.0000C6.0912 -5.7012 2.3206 -5.7012 1.3640 -5.0000L1.3640 -5.0000C2.3206 -5.8857 6.0912 -5.8857 7.0478 -5.0000z"/>
-<path transform="translate(54.3437, 20.2550) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<line transform="translate(54.6770, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.4964" y2="0.0000"/>
-<line transform="translate(54.6770, 32.2012)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.4964" y2="-0.0000"/>
-<path transform="translate(53.7617, 16.7550) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42
-c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/32_2_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/32_2_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,114 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 15.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 32</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.6246) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(89.2022, 27.5474) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2022, 28.5474) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2022, 29.5474) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2022, 30.5474) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(19.0113, 31.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5384" y2="-0.0000"/>
-<line transform="translate(19.0113, 30.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5384" y2="-0.0000"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5384" y2="-0.0000"/>
-<line transform="translate(19.0113, 28.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5384" y2="-0.0000"/>
-<line transform="translate(19.0113, 27.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5384" y2="-0.0000"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="53.3291" y1="3.0000" x2="60.3291" y2="1.5000"/>
-<path transform="translate(79.8022, 27.1201) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.7023, 29.0474)" x="-0.0999" y="-2.0000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(72.8022, 28.6201) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(72.7023, 29.0474)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(85.7039, 26.9110)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(85.7039, 26.9110)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(85.0676, 27.2747)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(85.0676, 27.2747)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(84.4312, 27.6383)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(84.4312, 27.6383)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(83.7949, 28.0020)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(83.7949, 28.0020)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(83.1585, 28.3656)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(83.1585, 28.3656)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(82.5221, 28.7292)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(82.5221, 28.7292)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(81.8858, 29.0929)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(81.8858, 29.0929)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(81.2494, 29.4565)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(81.2494, 29.4565)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(80.6130, 29.8201)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(80.6130, 29.8201)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(79.9767, 30.1838)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(79.9767, 30.1838)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<line transform="translate(79.3403, 30.5474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1607" y1="-0.4574" x2="0.7938" y2="-0.0881"/>
-<line transform="translate(79.3403, 30.5474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1575" y1="0.2756" x2="0.1607" y2="-0.4574"/>
-<rect transform="translate(85.9783, 29.0474)" x="-0.0999" y="-2.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<g transform="rotate(26.5651, 65.3403, 28.5474)">
-<path transform="translate(71.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.3403, 28.9474) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(65.0783, 31.9747) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(64.9783, 29.0474)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="39.3291" y1="-1.5000" x2="46.3291" y2="-0.5000"/>
-<path transform="translate(85.8784, 26.5474)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<path transform="translate(86.3403, 25.9403) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<polygon transform="translate(39.2646, 16.5630)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.0610 -0.7656 4.0610 -0.5271 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.2646, 17.2709)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.0610 -0.7656 4.0610 -0.5271 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.2646, 17.9788)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.0610 -0.7656 4.0610 -0.5271 0.0727 0.1193 0.0727 -0.1193"/>
-<rect transform="translate(41.3579, 29.0474)" x="-0.0999" y="-12.8117" width="0.1999" height="3.7424" ry="0.0727" fill="currentColor"/>
-<path transform="translate(41.1312, 31.6243) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(24.8113, 30.0594)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 -1.0281 7.1272 -0.6935 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.3646, 29.0474)" x="-0.0999" y="-12.5000" width="0.1999" height="2.9307" ry="0.0727" fill="currentColor"/>
-<path transform="translate(39.1379, 31.6243) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="-3.0000" x2="20.1266" y2="-9.5000"/>
-<rect transform="translate(31.9112, 29.0474)" x="-0.0999" y="-2.8615" width="0.1999" height="3.0246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="-1.5000" x2="13.4533" y2="-3.0000"/>
-<rect transform="translate(24.9112, 29.0474)" x="-0.0999" y="-1.3615" width="0.1999" height="2.3615" ry="0.0727" fill="currentColor"/>
-<path transform="translate(58.0783, 30.9747) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(57.9783, 29.0474)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.0113, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="32.3291" y1="-1.0000" x2="39.3291" y2="-1.5000"/>
-<polygon transform="translate(50.2283, 29.4299)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.2283, 30.2399)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.2283, 31.0499)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.9783, 29.0474)" x="-0.0999" y="-0.9020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.0783, 30.4747) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(43.9783, 29.0474)" x="-0.0999" y="-1.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.8784, 29.0474)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4729 -2.4071C12.4087 -4.0580 2.6497 -4.4065 0.4729 -2.9071L0.4729 -2.9071C2.6557 -4.5756 12.4147 -4.2270 14.4729 -2.4071z"/>
-<line transform="translate(44.3403, 27.0474)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="1.0000" stroke-dasharray="0.611853225613092,0.341156461796262"/>
-<rect transform="translate(43.2984, 29.0474)" x="-0.0999" y="-13.1151" width="0.1999" height="2.5459" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.0717, 31.6243) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/33_3_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/33_3_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,83 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 11.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 16.9637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 16.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.0920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 33</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.0691C2.3890 1.4863 1.4416 1.4863 0.9769 1.0691L0.9769 1.0691C1.4416 1.6401 2.3890 1.6401 2.8538 1.0691z"/>
-<path transform="translate(11.5732, 12.1792) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(69.2572, 24.1916) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(69.2572, 23.1916) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(70.1428, 23.6916)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(70.8963, 23.6916)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(43.1396, 24.1916) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(43.1396, 23.1916) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(42.3861, 23.6916)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.0022, 23.6916)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(36.8189, 25.6916)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 24.6916)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 23.6916)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 22.6916)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 21.6916)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<path transform="translate(37.6189, 22.6916) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<text transform="translate(44.8639, 30.2962)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(48.7645, 29.4891)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="17.3235" y2="-0.0000" stroke-dasharray="0.454181562705514,0.547202867092086"/>
-<line transform="translate(66.0880, 29.4891)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(48.7645, 29.4891)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(49.0242, 21.6916) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(49.0242, 17.0904)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-senza</tspan>
-</text>
-<text transform="translate(55.2113, 17.0904)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-tempo</tspan>
-</text>
-<rect transform="translate(49.7742, 23.6916)" x="-0.0999" y="-1.8766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(49.0242, 23.0741)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.0242, 23.8841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.0242, 24.6941)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(54.7075, 22.6916) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<rect transform="translate(55.4575, 23.6916)" x="-0.0999" y="-0.8766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(54.7075, 24.0741)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(54.7075, 24.8841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(54.7075, 25.6941)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<line transform="translate(45.1908, 18.6018)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="21.6383" y2="-0.0000" stroke-dasharray="0.754861507439055,2.25061486092505"/>
-<line transform="translate(66.9060, 18.6018)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(45.1139, 19.1018)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(53.2575, 22.6916) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(59.6407, 22.1916) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<rect transform="translate(60.3907, 23.6916)" x="-0.0999" y="-1.3766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(59.6407, 23.5741)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(59.6407, 24.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(59.6407, 25.1941)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(64.3240, 23.1916) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<rect transform="translate(65.0740, 23.6916)" x="-0.0999" y="-0.3766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(64.3240, 24.5741)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(64.3240, 25.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(64.3240, 26.1941)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
 </svg>
--- a/www/m/svg/34_4_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/34_4_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,71 +1,37 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.2831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.2831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.7831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.4266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 34</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 13.7831) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 11.7337) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/>
-<path transform="translate(11.5732, 11.7337) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(41.2293, 23.9809) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(41.2293, 22.9809) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(40.4758, 23.4809)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(39.0919, 23.4809)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(35.0269, 25.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.5072" y2="-0.0000"/>
-<line transform="translate(35.0269, 24.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.5072" y2="-0.0000"/>
-<line transform="translate(35.0269, 23.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.5072" y2="-0.0000"/>
-<line transform="translate(35.0269, 22.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.5072" y2="-0.0000"/>
-<line transform="translate(35.0269, 21.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.5072" y2="-0.0000"/>
-<path transform="translate(71.0493, 23.9809) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(71.0493, 22.9809) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(71.9349, 23.4809)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(72.6883, 23.4809)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(35.8269, 24.4809) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(55.4853, 24.4809) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(35.0269, 19.3286)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="31.4135 0.6119 31.4135 -0.6119 33.0046 -0.0000"/>
-<line transform="translate(50.3156, 19.3286)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="16.9517" y2="-0.0000" stroke-dasharray="1.15074466918406,0.843212201651589"/>
-<text transform="translate(43.7353, 19.3286)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(43.4853, 23.4809) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(43.4853, 23.4809)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M24.5820 -1.6629C21.9446 -3.3772 3.2194 -3.3772 0.5820 -1.6629L0.5820 -1.6629C3.2194 -3.5463 21.9446 -3.5463 24.5820 -1.6629z"/>
-<text transform="translate(43.4853, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(47.3237, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="22.7741" y2="-0.0000" stroke-dasharray="0.460231419060703,0.561319198587527"/>
-<line transform="translate(70.0979, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(47.3237, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(35.0269, 23.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.5352" y1="0.1246" x2="19.5456" y2="0.8754"/>
-<path transform="translate(42.3353, 23.4809) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<line transform="translate(35.0269, 23.4809)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="22.5352" y1="0.8754" x2="31.5456" y2="0.1246"/>
-<path transform="translate(54.0353, 24.4809) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(67.4853, 23.4809) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/35_5_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/35_5_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,49 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 15.2676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 18.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 35</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(59.8858, 20.2357) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(59.8858, 19.2357) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(60.7714, 19.7357)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.5248, 19.7357)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(46.1904, 21.7357)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.1802" y2="-0.0000"/>
-<line transform="translate(46.1904, 20.7357)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.1802" y2="-0.0000"/>
-<line transform="translate(46.1904, 19.7357)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.1802" y2="-0.0000"/>
-<line transform="translate(46.1904, 18.7357)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.1802" y2="-0.0000"/>
-<line transform="translate(46.1904, 17.7357)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.1802" y2="-0.0000"/>
-<path transform="translate(52.3927, 20.2357) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.3927, 19.2357) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.6393, 19.7357)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.2554, 19.7357)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(54.1170, 19.2357) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.9904, 20.7357) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(54.9524, 17.4089) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/36_5_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/36_5_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,47 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 36</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(59.9449, 22.4376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(59.9449, 21.4376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(60.8305, 21.9376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.5840, 21.9376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(46.1312, 23.9376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 22.9376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 21.9376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 20.9376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 19.9376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<rect transform="translate(46.1312, 18.9376)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(46.1312, 17.9376)" x="7.6273" y="-0.1269" width="2.5060" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(52.4519, 22.4376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.4519, 21.4376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.6985, 21.9376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.3146, 21.9376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(54.1762, 17.9376) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.9312, 20.9376) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(55.0116, 17.2247) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/37_4_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/37_4_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,82 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 13.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 15.9659)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 37</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.0691C2.3890 1.4863 1.4416 1.4863 0.9769 1.0691L0.9769 1.0691C1.4416 1.6401 2.3890 1.6401 2.8538 1.0691z"/>
-<path transform="translate(11.5732, 12.1792) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(48.1543, 25.4451) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(48.1543, 24.4451) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(47.4008, 24.9451)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(46.0169, 24.9451)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(41.8336, 26.9451)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="24.8938" y2="-0.0000"/>
-<line transform="translate(41.8336, 25.9451)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="24.8938" y2="-0.0000"/>
-<line transform="translate(41.8336, 24.9451)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="24.8938" y2="-0.0000"/>
-<line transform="translate(41.8336, 23.9451)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="24.8938" y2="-0.0000"/>
-<line transform="translate(41.8336, 22.9451)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="24.8938" y2="-0.0000"/>
-<path transform="translate(64.2426, 25.4451) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(64.2426, 24.4451) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(65.1282, 24.9451)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(65.8816, 24.9451)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<polygon transform="translate(41.8336, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="19.0064 0.6119 19.0064 -0.6119 20.5974 -0.0000"/>
-<line transform="translate(56.7089, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="4.9579" y2="-0.0000" stroke-dasharray="1.14324264480309,0.835710177270621"/>
-<text transform="translate(50.1286, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(49.8786, 26.4451) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(49.8786, 24.9451)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M12.3741 -6.5129C9.8216 -6.7054 2.4259 -1.9200 1.5555 0.4871L1.5555 0.4871C2.3340 -2.0621 9.7297 -6.8474 12.3741 -6.5129z"/>
-<line transform="translate(60.5418, 20.5687)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(60.5418, 20.5687)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(59.9174, 20.9343)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(59.9174, 20.9343)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(59.2931, 21.2999)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(59.2931, 21.2999)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(58.6687, 21.6655)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(58.6687, 21.6655)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(58.0444, 22.0311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(58.0444, 22.0311)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(57.4200, 22.3967)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(57.4200, 22.3967)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(56.7956, 22.7623)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(56.7956, 22.7623)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(56.1713, 23.1279)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(56.1713, 23.1279)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(55.5469, 23.4936)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(55.5469, 23.4936)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(54.9225, 23.8592)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(54.9225, 23.8592)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(54.2982, 24.2248)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(54.2982, 24.2248)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(53.6738, 24.5904)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(53.6738, 24.5904)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(53.0494, 24.9560)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(53.0494, 24.9560)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(52.4251, 25.3216)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(52.4251, 25.3216)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(51.8007, 25.6872)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(51.8007, 25.6872)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<path transform="translate(42.6336, 23.9451) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/38_3_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/38_3_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,80 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 38</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(30.9796, 25.3287) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(30.9796, 24.3287) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(30.2262, 24.8287)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(28.8423, 24.8287)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(24.6589, 26.8287)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.2430" y2="-0.0000"/>
-<line transform="translate(24.6589, 25.8287)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.2430" y2="-0.0000"/>
-<line transform="translate(24.6589, 24.8287)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.2430" y2="-0.0000"/>
-<line transform="translate(24.6589, 23.8287)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.2430" y2="-0.0000"/>
-<line transform="translate(24.6589, 22.8287)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="59.2430" y2="-0.0000"/>
-<path transform="translate(81.4172, 25.3287) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(81.4172, 24.3287) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(82.3028, 24.8287)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(83.0563, 24.8287)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(51.9504, 23.3287) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(36.9650, 24.8287) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(36.9650, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-flautando</tspan>
-</text>
-<text transform="translate(36.9650, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-repeat,</tspan>
-</text>
-<text transform="translate(44.3937, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-alternating</tspan>
-</text>
-<text transform="translate(56.3541, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-between</tspan>
-</text>
-<text transform="translate(64.9623, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-given</tspan>
-</text>
-<text transform="translate(70.9010, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-pitches</tspan>
-</text>
-<text transform="translate(78.5159, 30.2761)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-freely</tspan>
-</text>
-<path transform="translate(36.9650, 24.8287)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M30.2942 -2.1629C27.4437 -3.8069 3.3691 -3.4018 0.5755 -1.6629L0.5755 -1.6629C3.3660 -3.5863 27.4406 -3.9913 30.2942 -2.1629z"/>
-<line transform="translate(33.0308, 18.8501)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="36.1581" y2="-0.0000" stroke-dasharray="0.746400942235171,2.21677260010951"/>
-<line transform="translate(69.2658, 18.8501)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(32.9539, 19.3501)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(50.5004, 23.3287) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(66.6838, 23.8287) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(25.4589, 23.8287) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/39_2_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/39_2_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,112 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 39</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(89.3640, 26.4516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.3640, 27.4516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.3640, 28.4516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.3640, 29.4516) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(18.8495, 29.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.8620" y2="-0.0000"/>
-<line transform="translate(18.8495, 28.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.8620" y2="-0.0000"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.8620" y2="-0.0000"/>
-<line transform="translate(18.8495, 26.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.8620" y2="-0.0000"/>
-<line transform="translate(18.8495, 25.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.8620" y2="-0.0000"/>
-<path transform="translate(79.9640, 25.5243) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.8641, 27.9516)" x="-0.0999" y="-2.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(72.9640, 25.5243) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(72.8641, 27.9516)" x="-0.0999" y="-2.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="53.6526" y1="1.0000" x2="60.6526" y2="1.0000"/>
-<g transform="rotate(15.9454, 65.5021, 26.9516)">
-<path transform="translate(71.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.5021, 27.3516) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<line transform="translate(85.8657, 25.7697)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(85.8657, 25.7697)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(85.2294, 26.0879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(85.2294, 26.0879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(84.5930, 26.4061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(84.5930, 26.4061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(83.9567, 26.7243)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(83.9567, 26.7243)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(83.3203, 27.0425)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(83.3203, 27.0425)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.6839, 27.3607)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.6839, 27.3607)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.0476, 27.6788)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.0476, 27.6788)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(81.4112, 27.9970)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(81.4112, 27.9970)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.7748, 28.3152)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.7748, 28.3152)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.1385, 28.6334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.1385, 28.6334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(79.5021, 28.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(79.5021, 28.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<path transform="translate(65.2401, 30.3788) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(65.1401, 27.9516)" x="-0.0999" y="-0.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="39.6526" y1="-0.5000" x2="46.6526" y2="-1.0000"/>
-<path transform="translate(58.2401, 30.8788) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(58.1401, 27.9516)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(86.0402, 25.4516)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<rect transform="translate(86.1401, 27.9516)" x="-0.0999" y="-2.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(86.5021, 24.8445) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<polygon transform="translate(39.1028, 17.1016)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.3204 -1.3042 3.3204 -1.0656 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.1028, 17.8095)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.3204 -1.3042 3.3204 -1.0656 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.1028, 18.5174)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.3204 -1.3042 3.3204 -1.0656 0.0727 0.1193 0.0727 -0.1193"/>
-<rect transform="translate(40.4028, 27.9516)" x="-0.0999" y="-11.3039" width="0.1999" height="3.7347" ry="0.0727" fill="currentColor"/>
-<path transform="translate(40.1761, 30.5284) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(25.7561, 25.1051)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 0.5257 7.1272 0.8603 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.2028, 27.9516)" x="-0.0999" y="-10.8849" width="0.1999" height="3.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(38.9761, 30.5284) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="1.5000" x2="20.1266" y2="-7.0000"/>
-<rect transform="translate(32.8561, 27.9516)" x="-0.0999" y="-2.1631" width="0.1999" height="3.5246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="0.5000" x2="13.4533" y2="1.5000"/>
-<rect transform="translate(25.8561, 27.9516)" x="-0.0999" y="-2.8369" width="0.1999" height="3.1984" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.0402, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4839 -1.4071C12.4779 -3.1312 2.7146 -3.8286 0.4839 -2.4071L0.4839 -2.4071C2.7266 -3.9973 12.4899 -3.2999 14.4839 -1.4071z"/>
-<line transform="translate(18.8495, 27.9516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="32.6526" y1="-1.5000" x2="39.6526" y2="-0.5000"/>
-<polygon transform="translate(50.3901, 27.8341)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.3901, 28.6441)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.3901, 29.4541)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(51.1401, 27.9516)" x="-0.0999" y="-1.4020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.2401, 29.8788) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(44.1401, 27.9516)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(44.5021, 26.4516)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="-0.0000" stroke-dasharray="0.607792207792208,0.335064935064935"/>
-<rect transform="translate(42.3961, 27.9516)" x="-0.0999" y="-12.0000" width="0.1999" height="2.9307" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.1694, 30.5284) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/40_0_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/40_0_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,132 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 13.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 19.4637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 18.6757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 40</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 23.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 22.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 22.9860)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 22.9860)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 24.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 23.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 21.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 20.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 25.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 25.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 27.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 28.9860)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 25.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 25.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 27.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 28.9860)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 25.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 25.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 26.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 27.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 28.9860)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.1396, 23.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.1396, 22.4860) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.3861, 22.9860)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(42.0022, 22.9860)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 21.9860) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.3283, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/>
-<path transform="translate(53.3283, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 3.2500C6.8320 2.5275 2.4786 2.5275 1.4641 3.2500L1.4641 3.2500C2.4786 2.3430 6.8320 2.3430 7.8465 3.2500z"/>
-<line transform="translate(51.6663, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(51.6663, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.9222, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.9222, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.1781, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.1781, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(49.4341, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(49.4341, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(48.6900, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(48.6900, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(47.9459, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(47.9459, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<path transform="translate(53.3283, 14.8192) scale(0.0040, -0.0040)" d="M118 30c-1 34 -17 68 -48 68c-26 0 -38 -31 -38 -61c0 -55 42 -96 82 -134c3 20 5 41 5 62v10zM173 -144c0 -20 -12 -38 -31 -38c-30 0 -39 37 -59 57c-54 52 -128 94 -128 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-10 330c11 6 24 9 36 9s24 -3 35 -9z" fill="currentColor"/>
-<path transform="translate(53.3283, 28.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.3283, 26.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(51.6663, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(51.6663, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.9222, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.9222, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.1781, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.1781, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(49.4341, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(49.4341, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(48.6900, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(48.6900, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(47.9459, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(47.9459, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(54.2437, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7131" y2="0.0000"/>
-<line transform="translate(54.2437, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7131" y2="-0.0000"/>
-<text transform="translate(45.8639, 17.4091)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(49.7024, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="12.8544" y2="-0.0000" stroke-dasharray="0.443483473748415,0.522240659525523"/>
-<line transform="translate(62.5568, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(49.7024, 16.6642)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(45.8639, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7131" y2="0.6666"/>
-<line transform="translate(45.8639, 31.7340)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7131" y2="-0.6666"/>
-<path transform="translate(45.8639, 28.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(45.8639, 26.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.9103, 19.4091) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(45.8639, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 3.2500C6.8320 2.5275 2.4786 2.5275 1.4641 3.2500L1.4641 3.2500C2.4786 2.3430 6.8320 2.3430 7.8465 3.2500z"/>
-<path transform="translate(45.8639, 22.9860)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8465 6.7500C6.7813 7.4895 1.8472 7.4895 0.7820 6.7500L0.7820 6.7500C1.8472 7.6740 6.7813 7.6740 7.8465 6.7500z"/>
-<line transform="translate(59.1307, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(59.1307, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(58.3866, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(58.3866, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(57.6426, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(57.6426, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.8985, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.8985, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.1544, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.1544, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(55.4103, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(55.4103, 26.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(59.1307, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(59.1307, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(58.3866, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(58.3866, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(57.6426, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(57.6426, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.8985, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.8985, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.1544, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.1544, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(55.4103, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(55.4103, 28.9860)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<path transform="translate(60.7928, 26.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.7928, 28.9860) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/41_1_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/41_1_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,72 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 15.2676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 18.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 41</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.3444)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.3444) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 21.9404) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 20.9404) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 21.4404)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 21.4404)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 23.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 22.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 21.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 20.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 19.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<path transform="translate(38.0213, 21.9404) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.0213, 20.9404) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.2678, 21.4404)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(35.8839, 21.4404)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(32.6189, 22.4404) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(66.6179, 19.4404) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(53.6526, 20.4404) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<g transform="rotate(4.3137, 49.1019, 20.0533)">
-<path transform="translate(51.1019, 20.4533) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.1019, 20.4533) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.1019, 20.4533) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(47.0241, 19.9404) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(38.9456, 19.4404) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(31.8189, 21.4404)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.6544" y1="-1.8872" x2="14.2915" y2="-1.6128"/>
-<path transform="translate(40.3956, 21.4404)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M13.8639 -2.1629C11.8915 -3.7339 2.7637 -4.3192 0.6068 -3.0129L0.6068 -3.0129C2.7755 -4.5033 11.9033 -3.9181 13.8639 -2.1629z"/>
-<path transform="translate(40.3956, 19.4404) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.8011, 19.9404) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.5011, 25.0173)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.5011, 25.0173)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(59.6511, 19.9404) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(67.6346, 20.9404) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.6346, 19.4404) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.2136, 17.2737) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/42_6_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/42_6_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,85 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 15.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 42</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.1396, 24.6296) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.1396, 23.6296) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.3861, 24.1296)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.0022, 24.1296)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 26.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 25.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 24.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 23.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 22.1296)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 21.1296)" x="7.9298" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="19.7885" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="19.7885" y="-0.1269" width="1.9598" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.1296)" x="19.9401" y="-0.1269" width="1.8082" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="22.1347" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="22.1347" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="30.0445" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="30.0445" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.1296)" x="30.0753" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.1296)" x="42.6000" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.1296)" x="42.7927" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.1296)" x="51.0521" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 21.1296)" x="52.7939" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.1296)" x="52.7939" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 24.1296)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(22.6189, 23.1296) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(74.8721, 20.1296) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(73.4883, 26.8454) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(73.0767, 19.1296) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(68.9594, 29.8526)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(68.9594, 29.8526)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(68.2594, 23.6296) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(44.7313, 26.9465) scale(0.0036, -0.0036)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(44.2128, 20.1296) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.3493, 19.1296) scale(0.0045, -0.0045)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
-c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
-zM101 59v-148l73 30v148z" fill="currentColor"/>
-<path transform="translate(41.9340, 19.1296) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(30.6217, 27.0065) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(30.0397, 21.1296) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.0692, 19.1296) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(63.4286, 18.1296) scale(0.0050, -0.0050)" d="M33 35l-2 -60v-11c0 -21 2 -43 5 -64c42 38 87 81 87 138c0 32 -13 63 -41 63c-31 0 -48 -32 -49 -66zM-17 -141l-15 587c10 6 21 8 32 8s22 -2 32 -8l-9 -337c25 26 59 40 95 40c50 0 82 -51 82 -105c0 -77 -80 -117 -137 -169c-18 -17 -26 -48 -52 -48
-c-16 0 -28 15 -28 32z" fill="currentColor"/>
-<path transform="translate(64.7866, 18.1296) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(51.2478, 19.1296) scale(0.0028, -0.0028)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(47.1116, 22.6296) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(49.2617, 29.8526)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(49.2617, 29.8526)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(48.5617, 22.6296) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/43_7_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/43_7_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,52 +1,40 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 43</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 21.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 20.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 20.7146)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 20.7146)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 22.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 21.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 20.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7146)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 21.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 20.2146) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 20.7146)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 20.7146)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-6.0000, 30.6805, 19.2146)">
-</g>
-<text transform="translate(30.6805, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(34.5190, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="41.2809" y2="-0.0000" stroke-dasharray="0.453626170616239,0.545906952217112"/>
-<line transform="translate(75.7999, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(34.5190, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
 </svg>
--- a/www/m/svg/44_7_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/44_7_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,46 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 16.2547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.3457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 44</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.3444)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.3444) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.3444) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 18.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 19.3444)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 19.3444)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 21.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 20.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 19.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 18.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 19.3444)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 19.3444)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-5.0000, 30.6805, 17.8444)">
-</g>
 </svg>
--- a/www/m/svg/45_6_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/45_6_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,71 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 45</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0080) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.0213, 20.5525) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.0213, 19.5525) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.2678, 20.0525)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(25.8839, 20.0525)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 22.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 20.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 19.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 18.0525)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 17.0525)" x="30.0466" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 23.0525)" x="46.3052" y="-0.1269" width="1.8832" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.0525)" x="51.1546" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 20.0525)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(22.6189, 21.0525) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(74.9558, 19.5525) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(73.5908, 22.7683) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(73.1792, 17.0525) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(69.1379, 26.3915)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(69.1379, 26.3915)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(68.4379, 23.0525) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(44.4305, 23.6890) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(43.9686, 19.5525) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.6481, 18.0525) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(41.9781, 18.0525) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(30.5649, 22.9294) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(29.9829, 18.0525) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.0712, 17.0525) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(63.1723, 17.5525) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151
-c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22
-zM99 61v-152l77 30v152z" fill="currentColor"/>
-<path transform="translate(64.9082, 17.5525) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(46.7354, 21.5525) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(48.8854, 26.3915)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(48.8854, 26.3915)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(48.1854, 21.5525) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/46_1_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/46_1_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,84 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<rect transform="translate(36.7944, 16.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 15.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<line transform="translate(36.7944, 21.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 20.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 18.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 23.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 46</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 25.9914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 24.9914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 25.4914)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 25.4914)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 27.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 26.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 25.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 24.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 22.4914)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.4914)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 20.4914)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 19.4914)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 22.4914)" x="14.0828" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 22.4914)" x="20.6617" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 22.4914)" x="27.4905" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.4914)" x="27.4905" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 22.4914)" x="35.5743" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.4914)" x="35.5743" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 22.4914)" x="35.5758" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 21.4914)" x="35.5758" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 20.4914)" x="35.5758" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 19.4914)" x="35.6903" y="-0.1269" width="1.6227" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(38.1396, 25.9914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.1396, 24.9914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.3861, 25.4914)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(36.0022, 25.4914)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(32.6189, 24.4914) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(66.6676, 19.4914) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(65.3676, 20.9914) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(39.8639, 19.4914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(39.8639, 25.4914)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M13.5775 -4.0129C11.8909 -5.8839 3.0087 -7.9483 0.6698 -7.0129L0.6698 -7.0129C3.0505 -8.1280 11.9327 -6.0636 13.5775 -4.0129z"/>
-<line transform="translate(31.8189, 25.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.0221" y1="-5.4489" x2="13.5607" y2="-4.0511"/>
-<path transform="translate(38.7139, 19.4914) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(46.1927, 21.9914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<g transform="rotate(4.3462, 48.2704, 22.1051)">
-<path transform="translate(50.2704, 22.5051) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.2704, 22.5051) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.2704, 22.5051) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(52.7716, 22.4914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(59.6004, 20.9914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(60.3004, 29.0683)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(60.3004, 29.0683)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.6842, 20.9914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.6842, 19.4914) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.2633, 17.3247) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/47_0_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/47_0_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,147 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.7457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 47</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 11.6717) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/>
-<path transform="translate(11.5732, 11.6717) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 25.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 25.7033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 25.7033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 27.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 23.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 22.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 18.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 17.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 16.7033)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 18.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 17.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 16.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="15.2185" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 18.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 17.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 16.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.7033)" x="22.6829" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.1396, 26.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.1396, 25.2033) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.3861, 25.7033)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(42.0022, 25.7033)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 24.7033) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.3283, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/>
-<path transform="translate(53.3283, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -10.0000C6.2892 -10.7083 2.3392 -10.7083 1.3640 -10.0000L1.3640 -10.0000C2.3392 -10.8928 6.2892 -10.8928 7.2644 -10.0000z"/>
-<path transform="translate(53.3283, 16.2033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(44.7139, 19.7033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(44.7139, 16.2033) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<line transform="translate(51.6663, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(51.6663, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.9222, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.9222, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.1781, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.1781, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(49.4341, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(49.4341, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(48.6900, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(48.6900, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(47.9459, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(47.9459, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<path transform="translate(53.3283, 19.7033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(51.6663, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(51.6663, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.9222, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.9222, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(50.1781, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(50.1781, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(49.4341, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(49.4341, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(48.6900, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(48.6900, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(47.9459, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(47.9459, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(45.8639, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.7131" y2="0.6666"/>
-<line transform="translate(45.8639, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.7131" y2="-0.6666"/>
-<path transform="translate(45.8639, 19.7033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.7928, 19.7033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.7928, 16.2033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(59.1307, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(59.1307, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(58.3866, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(58.3866, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(57.6426, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(57.6426, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.8985, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.8985, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.1544, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.1544, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(55.4103, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(55.4103, 19.7033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(59.1307, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(59.1307, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(58.3866, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(58.3866, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(57.6426, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(57.6426, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.8985, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.8985, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(56.1544, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(56.1544, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<line transform="translate(55.4103, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3720" y1="-0.3222" x2="0.7441" y2="0.3222"/>
-<line transform="translate(55.4103, 16.2033)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3222" x2="0.3720" y2="-0.3222"/>
-<path transform="translate(45.8639, 16.2033) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(45.8639, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1644 -5.2500C6.1499 -4.5275 1.7965 -4.5275 0.7820 -5.2500L0.7820 -5.2500C1.7965 -4.3430 6.1499 -4.3430 7.1644 -5.2500z"/>
-<path transform="translate(45.8639, 25.7033)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2644 -10.0000C6.2892 -10.7083 2.3392 -10.7083 1.3640 -10.0000L1.3640 -10.0000C2.3392 -10.8928 6.2892 -10.8928 7.2644 -10.0000z"/>
-<path transform="translate(53.9103, 14.1904) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<line transform="translate(54.2437, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.7131" y2="0.0000"/>
-<line transform="translate(54.2437, 30.9634)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.7131" y2="-0.0000"/>
-<path transform="translate(53.3283, 10.6904) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42
-c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/48_2_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/48_2_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,115 +1,39 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 48</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.4064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(88.3103, 23.9833) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 24.9833) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 25.9833) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.3103, 26.9833) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(19.9032, 27.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 26.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 24.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<line transform="translate(19.9032, 23.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="68.7546" y2="-0.0000"/>
-<path transform="translate(78.9103, 25.0561) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(78.8104, 25.4833)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(71.9103, 25.5561) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(71.8104, 25.4833)" x="-0.0999" y="-0.0000" width="0.1999" height="3.9020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="51.5452" y1="4.0000" x2="58.5452" y2="3.0000"/>
-<line transform="translate(84.8120, 25.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(84.8120, 25.3015)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(84.1757, 25.6197)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(84.1757, 25.6197)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(83.5393, 25.9379)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(83.5393, 25.9379)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.9029, 26.2561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.9029, 26.2561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.2666, 26.5742)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.2666, 26.5742)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(81.6302, 26.8924)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(81.6302, 26.8924)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.9938, 27.2106)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.9938, 27.2106)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.3575, 27.5288)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.3575, 27.5288)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(79.7211, 27.8470)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(79.7211, 27.8470)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(79.0847, 28.1652)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(79.0847, 28.1652)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(78.4484, 28.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(78.4484, 28.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<g transform="rotate(23.1986, 64.4484, 26.4833)">
-<path transform="translate(70.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(64.4484, 26.8833) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(64.9103, 23.0561) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(64.8104, 25.4833)" x="-0.0999" y="-2.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="37.5452" y1="2.0000" x2="44.5452" y2="1.0000"/>
-<path transform="translate(57.9103, 24.0561) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(57.8104, 25.4833)" x="-0.0999" y="-1.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(84.9864, 24.9833)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<path transform="translate(85.4484, 23.1564) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<rect transform="translate(85.0864, 25.4833)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(26.8098, 23.3298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 -0.8603 7.1272 -0.5257 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(40.2565, 25.4833)" x="-0.0999" y="-8.8849" width="0.1999" height="3.3156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(40.0298, 28.0602) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(40.1566, 16.5984)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(40.1566, 17.3064)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(40.1566, 18.0143)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="2.5272 -0.1193 2.5272 0.1193 0.0727 0.1193 0.0727 -0.1193"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="-0.0000" x2="20.1266" y2="-5.5000"/>
-<rect transform="translate(33.9098, 25.4833)" x="-0.0999" y="-2.8369" width="0.1999" height="2.6984" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="1.0000" x2="13.4533" y2="-0.0000"/>
-<rect transform="translate(26.9098, 25.4833)" x="-0.0999" y="-2.1631" width="0.1999" height="3.0246" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.9864, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4477 3.0571C12.2545 4.5333 2.4945 4.0801 0.4477 2.4071L0.4477 2.4071C2.4867 4.2491 12.2467 4.7022 14.4477 3.0571z"/>
-<line transform="translate(19.9032, 25.4833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="30.5452" y1="2.5000" x2="37.5452" y2="2.0000"/>
-<polygon transform="translate(50.0604, 26.9758)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.0604, 26.1658)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.0604, 25.3558)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.8104, 25.4833)" x="-0.0999" y="-1.1250" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<line transform="translate(43.4484, 26.9833)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="1.0000" stroke-dasharray="0.611853225613092,0.341156461796262"/>
-<path transform="translate(43.9103, 23.5561) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(43.8104, 25.4833)" x="-0.0999" y="-2.0000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<rect transform="translate(42.6565, 25.4833)" x="-0.0999" y="-8.8849" width="0.1999" height="3.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.4298, 28.0602) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<rect transform="translate(41.4565, 25.4833)" x="-0.0999" y="-8.8849" width="0.1999" height="2.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(41.2298, 28.0602) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/49_3_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/49_3_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,84 +1,37 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 15.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 14.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 16.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.4684, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.3403, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/>
+<line transform="translate(49.7805, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.3403, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.3684, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 20.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 49</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.6246) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(69.2572, 28.2298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(69.2572, 27.2298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(70.1428, 27.7298)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(70.8963, 27.7298)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(43.0213, 28.2298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(43.0213, 27.2298) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(42.2678, 27.7298)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(40.8839, 27.7298)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(36.8189, 29.7298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 28.7298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 27.7298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 26.7298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 25.7298)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<path transform="translate(37.6189, 28.7298) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(62.5992, 25.2298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.49802308913302 0 4.49406926739907 -0.66 4.49406926739907 -1.0"/>
-<path transform="translate(55.9411, 27.2298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.49802308913302 0 4.49406926739907 0.66 4.49406926739907 1.0"/>
-<text transform="translate(44.7456, 19.7632)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(48.5841, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="15.7791" y2="-0.0000" stroke-dasharray="0.463348545295715,0.568592493135889"/>
-<line transform="translate(64.3632, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(48.5841, 19.0182)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(49.0311, 25.2298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(49.0311, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-pizz.</tspan>
-</text>
-<text transform="translate(54.2249, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-&amp;</tspan>
-</text>
-<text transform="translate(56.6873, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-slide</tspan>
-</text>
-<path transform="translate(49.0311, 25.2298)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.66400284675614 0c1.58201165448387 0 4.74603496345162 -0.66 4.74603496345162 -1.0"/>
-<path transform="translate(49.6131, 23.9669) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(47.5811, 25.2298) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(55.9411, 27.2298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.0725, 20.8400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="20.0318" y2="-0.0000" stroke-dasharray="0.801494104043105,2.43714524734125"/>
-<line transform="translate(65.1812, 20.8400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(44.9956, 21.3400)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(56.5231, 24.8529) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(54.4911, 27.2298) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(62.5992, 25.2298) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(63.1812, 23.9669) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(61.5825, 25.2298) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/50_4_6.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/50_4_6.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,85 +1,35 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 20.3508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 19.5628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 22.4791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 50</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 13.5155) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(41.2884, 22.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(41.2884, 21.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(40.5350, 21.8411)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(39.1511, 21.8411)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(34.9677, 23.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.6255" y2="-0.0000"/>
-<line transform="translate(34.9677, 22.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.6255" y2="-0.0000"/>
-<line transform="translate(34.9677, 21.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.6255" y2="-0.0000"/>
-<line transform="translate(34.9677, 20.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.6255" y2="-0.0000"/>
-<line transform="translate(34.9677, 19.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.6255" y2="-0.0000"/>
-<path transform="translate(71.1084, 22.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(71.1084, 21.3411) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(71.9940, 21.8411)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(72.7475, 21.8411)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(35.7677, 20.8411) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<polygon transform="translate(34.9677, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="31.5318 0.6119 31.5318 -0.6119 33.1229 -0.0000"/>
-<line transform="translate(50.3748, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="16.9517" y2="-0.0000" stroke-dasharray="1.15074466918406,0.843212201651589"/>
-<text transform="translate(43.7944, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(43.5444, 21.3411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(43.5444, 21.8411)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M24.5820 -2.0129C21.9446 -3.7272 3.2194 -3.7272 0.5820 -2.0129L0.5820 -2.0129C3.2194 -3.8963 21.9446 -3.8963 24.5820 -2.0129z"/>
-<text transform="translate(43.5444, 26.9551)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(47.4450, 26.1481)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="22.7120" y2="-0.0000" stroke-dasharray="0.459384890785828,0.559343965946153"/>
-<line transform="translate(70.1570, 26.1481)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(47.4450, 26.1481)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<g transform="rotate(-7.1250, 45.6148, 21.1550)">
-<path transform="translate(53.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(52.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(51.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.6149, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(47.6148, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(46.6148, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(45.6148, 21.5550) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(42.3944, 21.3411) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(55.5444, 19.8411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(34.9677, 21.8411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="22.6471" y1="-1.8139" x2="31.6703" y2="-0.6861"/>
-<path transform="translate(67.5444, 21.3411) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/51_5_5.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/51_5_5.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,56 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7540, 16.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/>
+<line transform="translate(36.7540, 15.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/>
+<line transform="translate(36.7540, 14.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/>
+<line transform="translate(36.7540, 13.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/>
+<line transform="translate(36.7540, 12.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.9712" y2="-0.0000"/>
+<path transform="translate(37.5540, 13.1547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5540, 18.8508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4259, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.2690" y2="-0.0000" stroke-dasharray="0.432280419365498,0.557372260570777"/>
+<line transform="translate(49.6949, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4259, 18.0628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2828, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2828, 20.9791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 51</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.1328, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 11.6717) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/>
-<path transform="translate(11.5732, 11.6717) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(60.2108, 19.9895) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(60.2108, 18.9895) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(61.0964, 19.4895)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.8498, 19.4895)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(45.8654, 21.4895)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 20.4895)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 19.4895)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 18.4895)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 17.4895)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<path transform="translate(52.1861, 19.9895) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.1861, 18.9895) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.4326, 19.4895)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.0487, 19.4895)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(55.2774, 17.1626) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<text transform="translate(51.2122, 24.1804)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(55.1127, 23.3734)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="1.6000" y2="-0.0000" stroke-dasharray="0.543766233766234,0.756233766233766"/>
-<line transform="translate(56.7127, 23.3734)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(55.1127, 23.3734)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(53.2921, 20.4895) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(46.6654, 18.4895) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(54.4421, 20.4895) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/52_5_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/52_5_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,46 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 13.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 52</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(59.9449, 20.0626) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(59.9449, 19.0626) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(60.8305, 19.5626)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.5840, 19.5626)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(46.1312, 21.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 20.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 19.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 18.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<line transform="translate(46.1312, 17.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.2985" y2="-0.0000"/>
-<path transform="translate(52.4519, 20.0626) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.4519, 19.0626) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.6985, 19.5626)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(50.3146, 19.5626)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(54.1762, 20.0626) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.9312, 18.5626) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(55.0116, 17.2357) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/53_4_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/53_4_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,63 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.6547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.6547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.6547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.6547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.7982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 53</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 11.7337) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/>
-<path transform="translate(11.5732, 11.7337) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(76.7574, 23.8909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(76.7574, 22.8909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(77.6430, 23.3909)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(78.3965, 23.3909)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(35.6394, 23.8909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(35.6394, 22.8909) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(34.8859, 23.3909)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(33.5020, 23.3909)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(29.3187, 25.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.9235" y2="-0.0000"/>
-<line transform="translate(29.3187, 24.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.9235" y2="-0.0000"/>
-<line transform="translate(29.3187, 23.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.9235" y2="-0.0000"/>
-<line transform="translate(29.3187, 22.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.9235" y2="-0.0000"/>
-<line transform="translate(29.3187, 21.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="49.9235" y2="-0.0000"/>
-<path transform="translate(30.1187, 22.3909) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(37.8954, 20.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(37.8954, 23.3909)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M36.5820 -3.5129C33.6068 -5.2936 3.5572 -5.2936 0.5820 -3.5129L0.5820 -3.5129C3.5572 -5.4627 33.6068 -5.4627 36.5820 -3.5129z"/>
-<line transform="translate(51.9774, 21.8909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="9.0000" y2="-0.0000" stroke-dasharray="0.535988455988456,0.4195670995671"/>
-<line transform="translate(29.3187, 23.3909)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.6535" y1="-2.3754" x2="19.6639" y2="-1.6246"/>
-<path transform="translate(36.7454, 20.8909) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(49.8954, 21.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(29.3187, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="43.5318 0.6119 43.5318 -0.6119 45.1229 -0.0000"/>
-<line transform="translate(44.7257, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="28.9517" y2="-0.0000" stroke-dasharray="1.15203962543356,0.844507157901094"/>
-<text transform="translate(38.1454, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(61.8954, 21.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(63.9722, 21.7663)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="9.0104" y2="-0.7509" stroke-dasharray="0.153766233766234,0.850855386099578"/>
-<path transform="translate(60.4454, 21.8909) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(73.8954, 20.8909) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/54_3_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/54_3_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,120 +1,28 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 10.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.7547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 54</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.0691C2.3890 1.4863 1.4416 1.4863 0.9769 1.0691L0.9769 1.0691C1.4416 1.6401 2.3890 1.6401 2.8538 1.0691z"/>
-<path transform="translate(11.5732, 12.1171) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(38.9019, 23.7380) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.9019, 22.7380) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(38.1484, 23.2380)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(36.7645, 23.2380)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(32.6995, 25.2380)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="43.1619" y2="-0.0000"/>
-<line transform="translate(32.6995, 24.2380)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="43.1619" y2="-0.0000"/>
-<line transform="translate(32.6995, 23.2380)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="43.1619" y2="-0.0000"/>
-<line transform="translate(32.6995, 22.2380)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="43.1619" y2="-0.0000"/>
-<line transform="translate(32.6995, 21.2380)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="43.1619" y2="-0.0000"/>
-<rect transform="translate(32.6995, 20.2380)" x="10.9983" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(73.3766, 23.7380) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(73.3766, 22.7380) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(74.2622, 23.2380)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.0157, 23.2380)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(33.4995, 24.2380) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(66.5754, 21.7380) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(67.7254, 21.7380) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(68.3074, 20.3778) scale(0.0040, -0.0040)" d="M0 133c74 0 133 -59 133 -133s-59 -133 -133 -133s-133 59 -133 133s59 133 133 133zM0 98c-54 0 -98 -44 -98 -98s44 -98 98 -98s98 44 98 98s-44 98 -98 98z" fill="currentColor"/>
-<rect transform="translate(44.7388, 23.2380)" x="-0.0999" y="-2.8766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<path transform="translate(50.2220, 19.4918) scale(0.0040, -0.0040)" d="M0 133c74 0 133 -59 133 -133s-59 -133 -133 -133s-133 59 -133 133s59 133 133 133zM0 98c-54 0 -98 -44 -98 -98s44 -98 98 -98s98 44 98 98s-44 98 -98 98z" fill="currentColor"/>
-<path transform="translate(49.6400, 20.7380) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(67.7254, 23.1205)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(67.7254, 23.9305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(67.7254, 24.7405)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(68.4754, 23.2380)" x="-0.0999" y="-1.3766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(43.9888, 21.6205)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(43.9888, 22.4305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(43.9888, 23.2405)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.3900, 23.2380)" x="-0.0999" y="-2.3766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.5708, 18.9918) scale(0.0040, -0.0040)" d="M0 133c74 0 133 -59 133 -133s-59 -133 -133 -133s-133 59 -133 133s59 133 133 133zM0 98c-54 0 -98 -44 -98 -98s44 -98 98 -98s98 44 98 98s-44 98 -98 98z" fill="currentColor"/>
-<text transform="translate(43.9888, 30.1978)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-pitches</tspan>
-</text>
-<text transform="translate(51.6037, 30.1978)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-need</tspan>
-</text>
-<text transform="translate(56.9217, 30.1978)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-not</tspan>
-</text>
-<text transform="translate(60.6877, 30.1978)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-sound</tspan>
-</text>
-<text transform="translate(67.4956, 30.1978)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-absolute</tspan>
-</text>
-<text transform="translate(43.9888, 14.3701)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-senza</tspan>
-</text>
-<text transform="translate(50.1759, 14.3701)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-tempo,</tspan>
-</text>
-<text transform="translate(57.3562, 14.3701)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-sul</tspan>
-</text>
-<text transform="translate(61.0602, 14.3701)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-pont.</tspan>
-</text>
-<path transform="translate(43.9888, 20.2380) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(59.9925, 21.2380) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<polygon transform="translate(61.4425, 22.6205)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(61.4425, 23.4305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(61.4425, 24.2405)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(62.1925, 23.2380)" x="-0.0999" y="-1.8766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<path transform="translate(62.0245, 19.9918) scale(0.0040, -0.0040)" d="M0 133c74 0 133 -59 133 -133s-59 -133 -133 -133s-133 59 -133 133s59 133 133 133zM0 98c-54 0 -98 -44 -98 -98s44 -98 98 -98s98 44 98 98s-44 98 -98 98z" fill="currentColor"/>
-<path transform="translate(61.4425, 21.2380) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(40.9531, 15.8816)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="29.2775" y2="-0.0000" stroke-dasharray="0.727315346812858,2.14043021842026"/>
-<line transform="translate(70.3074, 15.8816)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(40.8762, 16.3816)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<polygon transform="translate(55.0412, 24.1205)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(55.0412, 24.9305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(55.0412, 25.7405)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(55.7912, 23.2380)" x="-0.0999" y="-0.3766" width="0.1999" height="3.5016" ry="0.0727" fill="currentColor"/>
-<path transform="translate(55.6233, 20.3778) scale(0.0040, -0.0040)" d="M0 133c74 0 133 -59 133 -133s-59 -133 -133 -133s-133 59 -133 133s59 133 133 133zM0 98c-54 0 -98 -44 -98 -98s44 -98 98 -98s98 44 98 98s-44 98 -98 98z" fill="currentColor"/>
-<path transform="translate(55.0412, 22.7380) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(49.6400, 22.1205)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.6400, 22.9305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.6400, 23.7405)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
 </svg>
--- a/www/m/svg/55_2_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/55_2_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,114 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.3684, 13.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 16.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 55</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 13.8224) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.5626) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.5626) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(89.4557, 26.4879) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.4557, 27.4879) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.4557, 28.4879) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.4557, 29.4879) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(18.7578, 29.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="71.0453" y2="-0.0000"/>
-<line transform="translate(18.7578, 28.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="71.0453" y2="-0.0000"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="71.0453" y2="-0.0000"/>
-<line transform="translate(18.7578, 26.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="71.0453" y2="-0.0000"/>
-<line transform="translate(18.7578, 25.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="71.0453" y2="-0.0000"/>
-<path transform="translate(72.3317, 30.9152) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(72.2318, 27.9879)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="53.8359" y1="-0.5000" x2="60.8359" y2="1.0000"/>
-<path transform="translate(80.0557, 25.5606) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.9557, 27.9879)" x="-0.0999" y="-2.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(85.9574, 25.8061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(85.9574, 25.8061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(85.3210, 26.1243)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(85.3210, 26.1243)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(84.6847, 26.4425)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(84.6847, 26.4425)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(84.0483, 26.7606)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(84.0483, 26.7606)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(83.4119, 27.0788)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(83.4119, 27.0788)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.7756, 27.3970)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.7756, 27.3970)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(82.1392, 27.7152)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(82.1392, 27.7152)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(81.5028, 28.0334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(81.5028, 28.0334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.8665, 28.3515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.8665, 28.3515)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(80.2301, 28.6697)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(80.2301, 28.6697)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<line transform="translate(79.5937, 28.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="-0.4346" x2="0.7741" y2="-0.0426"/>
-<line transform="translate(79.5937, 28.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1378" y1="0.2756" x2="0.1804" y2="-0.4346"/>
-<g transform="rotate(23.1986, 65.5937, 24.4879)">
-<path transform="translate(71.5938, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.5938, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.5938, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.5938, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.5938, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.5937, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.5937, 24.8879) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(65.3317, 27.9152) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(65.2318, 27.9879)" x="-0.0999" y="-3.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="39.8359" y1="-3.0000" x2="46.8359" y2="-3.5000"/>
-<path transform="translate(58.3317, 28.4152) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(58.2318, 27.9879)" x="-0.0999" y="-2.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(86.1318, 25.4879)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<rect transform="translate(86.2318, 27.9879)" x="-0.0999" y="-2.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(86.5937, 24.8808) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<polygon transform="translate(39.0112, 16.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -0.7708 3.5037 -0.5323 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.0112, 17.2140)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -0.7708 3.5037 -0.5323 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.0112, 17.9219)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.5037 -0.7708 3.5037 -0.5323 0.0727 0.1193 0.0727 -0.1193"/>
-<rect transform="translate(40.4944, 27.9879)" x="-0.0999" y="-11.7520" width="0.1999" height="2.6827" ry="0.0727" fill="currentColor"/>
-<path transform="translate(40.2677, 30.5648) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(24.5578, 30.1391)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 0.6935 7.1272 1.0281 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.1111, 27.9879)" x="-0.0999" y="-11.5000" width="0.1999" height="3.9307" ry="0.0727" fill="currentColor"/>
-<path transform="translate(38.8845, 30.5648) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<path transform="translate(42.2610, 30.5648) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="0.5000" x2="20.1266" y2="-7.5000"/>
-<rect transform="translate(31.6578, 27.9879)" x="-0.0999" y="0.6385" width="0.1999" height="2.3615" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="-1.0000" x2="13.4533" y2="0.5000"/>
-<rect transform="translate(24.6578, 27.9879)" x="-0.0999" y="-0.8615" width="0.1999" height="3.0246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(44.5937, 26.4879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="-0.0000" stroke-dasharray="0.607792207792208,0.335064935064935"/>
-<line transform="translate(18.7578, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="32.8359" y1="-1.5000" x2="39.8359" y2="-3.0000"/>
-<polygon transform="translate(50.4818, 27.8704)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.4818, 28.6804)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.4818, 29.4904)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(51.2318, 27.9879)" x="-0.0999" y="-1.4020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.3317, 29.9152) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(44.2318, 27.9879)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(44.1318, 27.9879)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4291 -3.9071C12.1462 -5.2493 2.3758 -4.2025 0.4291 -2.4071L0.4291 -2.4071C2.3578 -4.3707 12.1282 -5.4175 14.4291 -3.9071z"/>
-<rect transform="translate(42.4877, 27.9879)" x="-0.0999" y="-12.1151" width="0.1999" height="3.0459" ry="0.0727" fill="currentColor"/>
 </svg>
--- a/www/m/svg/56_0_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/56_0_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,123 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 18.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 13.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 17.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 56</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 27.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 26.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 26.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 28.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 27.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 23.7376)" x="9.5857" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7376)" x="9.7017" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.7376)" x="16.4396" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7376)" x="16.4396" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.7376)" x="23.2935" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.7376)" x="23.2935" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.0213, 27.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.0213, 26.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.2678, 26.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.8839, 26.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 27.7376) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(54.5495, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 -0.7750C5.5896 -0.0709 1.7462 -0.0709 0.7820 -0.7750L0.7820 -0.7750C1.7462 0.1136 5.5896 0.1136 6.5538 -0.7750z"/>
-<path transform="translate(54.5495, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2359 -5.0000C6.2158 -5.7244 1.8021 -5.7244 0.7820 -5.0000L0.7820 -5.0000C1.8021 -5.9089 6.2158 -5.9089 7.2359 -5.0000z"/>
-<path transform="translate(54.5495, 22.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(44.9456, 24.7376) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(46.2456, 22.7376) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(52.9892, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.9892, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(52.3469, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.3469, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.7045, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.7045, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.0622, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.0622, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(50.4199, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(50.4199, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(49.7776, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(49.7776, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<path transform="translate(54.5495, 24.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(52.9892, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.9892, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(52.3469, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(52.3469, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.7045, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.7045, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(51.0622, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(51.0622, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(50.4199, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(50.4199, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(49.7776, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(49.7776, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(47.6956, 31.9977)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.1026" y2="0.6666"/>
-<line transform="translate(47.6956, 31.9977)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.1026" y2="-0.6666"/>
-<path transform="translate(47.6956, 24.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.4034, 24.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(61.4034, 22.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(59.8431, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.8431, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.2007, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.2007, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(58.5584, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(58.5584, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.9161, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.9161, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.2738, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.2738, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(56.6315, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(56.6315, 24.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.8431, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.8431, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(59.2007, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(59.2007, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(58.5584, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(58.5584, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.9161, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.9161, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(57.2738, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(57.2738, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<line transform="translate(56.6315, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3212" y1="-0.2781" x2="0.6423" y2="0.2781"/>
-<line transform="translate(56.6315, 22.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.2781" x2="0.3212" y2="-0.2781"/>
-<path transform="translate(47.6956, 22.7376) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(47.6956, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M6.5538 -0.7750C5.5896 -0.0709 1.7462 -0.0709 0.7820 -0.7750L0.7820 -0.7750C1.7462 0.1136 5.5896 0.1136 6.5538 -0.7750z"/>
-<path transform="translate(47.6956, 26.7376)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.2359 -5.0000C6.2158 -5.7244 1.8021 -5.7244 0.7820 -5.0000L0.7820 -5.0000C1.8021 -5.9089 6.2158 -5.9089 7.2359 -5.0000z"/>
-<path transform="translate(55.1315, 20.7247) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<line transform="translate(55.4648, 31.9977)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.1026" y2="0.0000"/>
-<line transform="translate(55.4648, 31.9977)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.1026" y2="-0.0000"/>
-<path transform="translate(54.5495, 17.2247) scale(0.0040, -0.0040)" d="M113 -52c7 5 16 11 26 11c19 0 36 -15 36 -36v-42c0 -12 -6 -23 -16 -30l-46 -29v-134c0 -14 -11 -25 -25 -25s-26 11 -26 25v101c-7 -5 -16 -10 -26 -10c-19 0 -36 15 -36 36v41c0 12 6 23 16 30l46 30v136c-7 -5 -16 -11 -26 -11c-19 0 -36 15 -36 36v42
-c0 12 6 23 16 30l46 29v134c0 14 12 25 26 25s25 -11 25 -25v-101c7 5 16 10 26 10c19 0 36 -15 36 -36v-41c0 -12 -6 -23 -16 -30l-46 -30v-136z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/57_1_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/57_1_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,91 +1,31 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 16.5185)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 15.7305)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 10.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 18.6468)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 57</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.5626) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 23.3294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 22.3294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 22.8294)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 22.8294)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.1396, 23.3294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.1396, 22.3294) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.3861, 22.8294)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(36.0022, 22.8294)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 24.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 22.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 21.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 20.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 25.8294)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 27.8294)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 28.8294)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 25.8294)" x="14.5827" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="14.5827" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 27.8294)" x="14.5827" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 28.8294)" x="14.5827" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 25.8294)" x="21.4113" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="21.4113" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 27.8294)" x="21.4113" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 28.8294)" x="21.4113" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 29.8294)" x="21.4113" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 25.8294)" x="28.4900" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="28.4900" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 27.8294)" x="28.4900" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 25.8294)" x="35.3187" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="35.3187" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 27.8294)" x="35.3187" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 25.8294)" x="35.3260" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(31.8189, 26.8294)" x="35.3260" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(32.6189, 21.8294) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(39.8639, 28.8294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(39.8639, 22.8294)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.2110 8.1629C12.0112 9.4601 2.5410 8.7667 0.5537 7.1629L0.5537 7.1629C2.5276 8.9507 11.9978 9.6441 14.2110 8.1629z"/>
-<text transform="translate(39.8639, 17.1525)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(43.7024, 16.4075)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="25.4902" y2="-0.0000" stroke-dasharray="0.456048556336444,0.551559185564256"/>
-<line transform="translate(69.1926, 16.4075)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(43.7024, 16.4075)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(31.8189, 22.8294)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.1230" y1="6.1095" x2="13.9597" y2="6.3905"/>
-<path transform="translate(46.6926, 29.3294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<g transform="rotate(4.1878, 48.7706, 29.4389)">
-<path transform="translate(50.7706, 29.8389) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.7706, 29.8389) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.7706, 29.8389) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(53.5212, 29.8294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.5999, 27.8294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.2999, 29.8423)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.2999, 29.8423)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.4286, 28.3294) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.4344, 26.8294) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.0106, 19.2525) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/58_6_7.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/58_6_7.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,83 +1,39 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.3831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.3831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.3831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 58</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.4064) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.0213, 23.9044) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.0213, 22.9044) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.2678, 23.4044)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(25.8839, 23.4044)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 25.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 24.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 23.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 22.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.4044)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 20.4044)" x="21.6879" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.4044)" x="42.5017" y="-0.1269" width="1.3298" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 20.4044)" x="52.7590" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 23.4044)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(22.6189, 24.4044) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(74.8689, 20.4044) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(72.9471, 26.4242) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/>
-<path transform="translate(72.2117, 20.9044) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<circle transform="translate(67.9320, 29.1304)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(67.9320, 29.1304)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.2320, 23.9044) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(44.3798, 26.2813) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(43.7978, 20.4044) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(40.2444, 20.9044) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(41.5744, 20.9044) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(28.9456, 22.9044) scale(0.0028, -0.0028)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<text transform="translate(30.0734, 17.8963)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(33.9119, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="42.7210" y2="-0.0000" stroke-dasharray="0.456773642803009,0.553251053986241"/>
-<line transform="translate(76.6329, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(33.9119, 17.1514)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(30.4849, 26.9933) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(30.0734, 22.9044) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(64.4956, 19.9044) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(50.6504, 20.9044) scale(0.0050, -0.0050)" d="M-9 375c9 5 18 8 28 8s20 -3 29 -8l-4 -198l99 25h4c11 0 20 -8 20 -19l9 -558c-9 -5 -19 -8 -29 -8s-19 3 -28 8l3 198l-98 -25h-5c-11 0 -19 8 -19 19zM127 109l-84 -21l-3 -197l84 21z" fill="currentColor"/>
-<path transform="translate(51.8404, 20.9044) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(46.3789, 24.4044) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(48.5289, 29.1304)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(48.5289, 29.1304)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(47.8289, 24.4044) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(63.5107, 19.9044) scale(0.0032, -0.0032)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/59_7_4.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/59_7_4.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,43 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 59</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 20.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 19.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 19.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 21.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 20.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.7376)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 20.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 19.2376) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 19.7376)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 19.7376)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-4.0000, 30.9179, 18.2376)">
-</g>
 </svg>
--- a/www/m/svg/60_7_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/60_7_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,52 +1,34 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.4684, 17.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/>
+<line transform="translate(49.7805, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 19.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 60</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.6246) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 20.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 16.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 18.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 18.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 18.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-3.0000, 30.6805, 17.2247)">
-</g>
-<text transform="translate(30.6805, 24.2394)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(34.5811, 23.4324)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="41.2188" y2="-0.0000" stroke-dasharray="0.45317193593216,0.544847071287594"/>
-<line transform="translate(75.7999, 23.4324)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(34.5811, 23.4324)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
 </svg>
--- a/www/m/svg/61_6_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/61_6_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,86 +1,33 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 21.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 20.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 16.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 15.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.2547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.2547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 23.3982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 61</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.1396, 23.1145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.1396, 22.1145) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.3861, 22.6145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.0022, 22.6145)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 24.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 23.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 22.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 20.6145)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 19.6145)" x="8.0809" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="8.1969" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="19.4241" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="19.4241" y="-0.1269" width="1.5555" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.6145)" x="19.5084" y="-0.1269" width="1.4713" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="22.4501" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="22.4501" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.6145)" x="22.6428" y="-0.1269" width="2.0135" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="30.8249" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="30.8249" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.6145)" x="42.8767" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="50.5984" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="50.5984" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 19.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 18.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.6145)" x="52.7630" y="-0.1269" width="2.2062" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 22.6145)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(73.1102, 25.3780) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(22.6189, 21.6145) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(74.9496, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(72.6483, 18.6145) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(66.9942, 21.1145) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<circle transform="translate(68.7108, 27.6644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(68.7108, 27.6644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(68.0108, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(45.3722, 25.6344) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/>
-<path transform="translate(44.6367, 17.6145) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(40.1723, 17.6145) scale(0.0036, -0.0036)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(41.5023, 17.6145) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(43.4468, 17.6145) scale(0.0050, -0.0050)" d="M-9 375c9 5 18 8 28 8s20 -3 29 -8l-4 -198l99 25h4c11 0 20 -8 20 -19l9 -558c-9 -5 -19 -8 -29 -8s-19 3 -28 8l3 198l-98 -25h-5c-11 0 -19 8 -19 19zM127 109l-84 -21l-3 -197l84 21z" fill="currentColor"/>
-<path transform="translate(28.7408, 18.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(30.7728, 25.4914) scale(0.0040, -0.0040)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(30.1908, 18.1145) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(64.9014, 17.1145) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(52.8747, 18.6145) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(47.7895, 21.1145) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<circle transform="translate(49.9395, 27.6644)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(49.9395, 27.6644)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(49.2395, 21.1145) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/62_1_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/62_1_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,68 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.8224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 17.2316)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 62</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 21.4914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 20.4914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 20.9914)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 20.9914)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 22.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 21.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 20.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 19.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 18.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<path transform="translate(38.1396, 21.4914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.1396, 20.4914) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.3861, 20.9914)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(36.0022, 20.9914)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(66.6366, 19.4914) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(32.6189, 19.9914) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(46.3119, 19.4914) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<g transform="rotate(17.5497, 49.7741, 19.9437)">
-<path transform="translate(51.7741, 20.3438) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.7741, 20.3438) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.7741, 20.3438) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(47.7620, 19.4914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(54.0860, 21.4914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(39.0639, 19.9914) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(31.8189, 20.9914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.7735" y1="-1.1032" x2="15.0286" y2="-1.3968"/>
-<path transform="translate(40.5139, 20.9914)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.2362 -2.0129C12.1563 -3.4889 2.6981 -3.5929 0.5863 -2.1629L0.5863 -2.1629C2.7002 -3.7774 12.1583 -3.6734 14.2362 -2.0129z"/>
-<path transform="translate(40.5139, 19.9914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.8386, 20.4914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.5386, 25.4914)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.5386, 25.4914)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.6533, 20.9914) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.6533, 19.4914) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.2324, 17.3247) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/63_0_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/63_0_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,116 +1,32 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 12.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 17.9637)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 17.1757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 20.0920)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 63</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.4064)" x="5.4116" y="-0.1214" width="2.3306" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.4064) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 24.0316) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 23.0316) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 23.5316)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 23.5316)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 25.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 23.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 21.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<path transform="translate(44.1396, 24.0316) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.1396, 23.0316) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.3861, 23.5316)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(42.0022, 23.5316)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 22.5316) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.3694, 23.5316)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1439 1.2250C6.1310 1.9469 1.7949 1.9469 0.7820 1.2250L0.7820 1.2250C1.7949 2.1314 6.1310 2.1314 7.1439 1.2250z"/>
-<path transform="translate(53.3694, 23.5316)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8259 -1.7500C6.7622 -2.4890 1.8457 -2.4890 0.7820 -1.7500L0.7820 -1.7500C1.8457 -2.6735 6.7622 -2.6735 7.8259 -1.7500z"/>
-<line transform="translate(51.7107, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(51.7107, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(50.9701, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(50.9701, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(50.2294, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(50.2294, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(49.4887, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(49.4887, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(48.7481, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(48.7481, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(48.0074, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(48.0074, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<path transform="translate(53.3694, 17.3547) scale(0.0040, -0.0040)" d="M213 -182h-26c-30 0 -38 37 -58 57c-54 52 -129 94 -129 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-9 330c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57zM163 30
-c-1 34 -16 68 -47 68c-26 0 -39 -31 -39 -61c0 -55 43 -96 83 -134c3 20 5 41 5 62v10zM237 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68z" fill="currentColor"/>
-<path transform="translate(53.3694, 24.0316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.3694, 22.5316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(51.7107, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(51.7107, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(50.9701, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(50.9701, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(50.2294, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(50.2294, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(49.4887, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(49.4887, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(48.7481, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(48.7481, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(48.0074, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(48.0074, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(54.2847, 30.1315)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.6926" y2="0.0000"/>
-<line transform="translate(54.2847, 30.1315)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.6926" y2="-0.0000"/>
-<text transform="translate(45.9254, 32.9890)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8vb</tspan>
-</text>
-<line transform="translate(49.8260, 32.1820)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="12.7513" y2="-0.0000" stroke-dasharray="0.465049005607866,0.572560233864243"/>
-<line transform="translate(62.5773, 32.1820)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(49.8260, 32.1820)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<line transform="translate(45.9254, 30.1315)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.6926" y2="0.6666"/>
-<line transform="translate(45.9254, 30.1315)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.6926" y2="-0.6666"/>
-<path transform="translate(45.9254, 24.0316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(45.9254, 22.5316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.9514, 19.9547) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(45.9254, 23.5316)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8259 -1.7500C6.7622 -2.4890 1.8457 -2.4890 0.7820 -1.7500L0.7820 -1.7500C1.8457 -2.6735 6.7622 -2.6735 7.8259 -1.7500z"/>
-<path transform="translate(45.9254, 23.5316)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1439 1.2250C6.1310 1.9469 1.7949 1.9469 0.7820 1.2250L0.7820 1.2250C1.7949 2.1314 6.1310 2.1314 7.1439 1.2250z"/>
-<line transform="translate(59.1547, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(59.1547, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(58.4140, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(58.4140, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(57.6733, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(57.6733, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(56.9327, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(56.9327, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(56.1920, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(56.1920, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(55.4514, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(55.4514, 22.5316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(59.1547, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(59.1547, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(58.4140, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(58.4140, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(57.6733, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(57.6733, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(56.9327, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(56.9327, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(56.1920, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(56.1920, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<line transform="translate(55.4514, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3703" y1="-0.3207" x2="0.7407" y2="0.3207"/>
-<line transform="translate(55.4514, 24.0316)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3207" x2="0.3703" y2="-0.3207"/>
-<path transform="translate(60.8133, 22.5316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.8133, 24.0316) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/64_2_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/64_2_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,116 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 15.7676) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 18.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 64</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(88.8056, 26.3334) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.8056, 27.3334) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.8056, 28.3334) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(88.8056, 29.3334) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(19.4079, 29.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.7451" y2="-0.0000"/>
-<line transform="translate(19.4079, 28.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.7451" y2="-0.0000"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.7451" y2="-0.0000"/>
-<line transform="translate(19.4079, 26.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.7451" y2="-0.0000"/>
-<line transform="translate(19.4079, 25.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="69.7451" y2="-0.0000"/>
-<path transform="translate(72.4056, 27.4061) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(72.3057, 27.8334)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="52.5358" y1="3.0000" x2="59.5358" y2="4.0000"/>
-<path transform="translate(79.4056, 27.9061) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.3057, 27.8334)" x="-0.0999" y="-0.0000" width="0.1999" height="3.9020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(85.3603, 27.2500)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(85.3603, 27.2500)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(84.7770, 27.6667)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(84.7770, 27.6667)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(84.1937, 28.0834)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(84.1937, 28.0834)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(83.6103, 28.5000)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(83.6103, 28.5000)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(83.0270, 28.9167)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(83.0270, 28.9167)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(82.4437, 29.3334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(82.4437, 29.3334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(81.8603, 29.7500)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(81.8603, 29.7500)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(81.2770, 30.1667)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(81.2770, 30.1667)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(80.6937, 30.5834)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(80.6937, 30.5834)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(80.1103, 31.0000)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(80.1103, 31.0000)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(79.5270, 31.4167)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(79.5270, 31.4167)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<line transform="translate(78.9437, 31.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1112" y1="-0.4609" x2="0.7638" y2="-0.1641"/>
-<line transform="translate(78.9437, 31.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1804" y1="0.2526" x2="0.1112" y2="-0.4609"/>
-<g transform="rotate(35.5377, 64.9437, 25.8334)">
-<path transform="translate(71.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(64.9437, 26.2334) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(64.6816, 29.2606) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(64.5817, 27.8334)" x="-0.0999" y="-1.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="38.5358" y1="-1.0000" x2="45.5358" y2="-2.0000"/>
-<path transform="translate(57.6816, 30.2606) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(57.5817, 27.8334)" x="-0.0999" y="-0.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(85.4817, 26.8334)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<rect transform="translate(85.5817, 27.8334)" x="-0.0999" y="-0.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(85.9437, 25.5065) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<polygon transform="translate(26.3145, 25.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 -0.1673 7.1272 0.1673 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.7612, 27.8334)" x="-0.0999" y="-10.8849" width="0.1999" height="3.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(39.5345, 30.4103) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(39.6613, 16.9803)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.2677 -1.1829 3.2677 -0.9444 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.6613, 17.6882)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.2677 -1.1829 3.2677 -0.9444 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.6613, 18.3961)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="3.2677 -1.1829 3.2677 -0.9444 0.0727 0.1193 0.0727 -0.1193"/>
-<path transform="translate(43.6816, 30.7606) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(43.5817, 27.8334)" x="-0.0999" y="-0.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="1.0000" x2="20.1266" y2="-7.0000"/>
-<rect transform="translate(33.4145, 27.8334)" x="-0.0999" y="-2.0000" width="0.1999" height="2.8615" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="1.0000" x2="13.4533" y2="1.0000"/>
-<rect transform="translate(26.4145, 27.8334)" x="-0.0999" y="-2.0000" width="0.1999" height="2.8615" ry="0.0727" fill="currentColor"/>
-<line transform="translate(19.4079, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="31.5358" y1="-1.5000" x2="38.5358" y2="-1.0000"/>
-<polygon transform="translate(49.8317, 27.7159)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.8317, 28.5259)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(49.8317, 29.3359)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(50.5817, 27.8334)" x="-0.0999" y="-1.4020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<line transform="translate(43.9437, 27.3334)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="-1.0000" stroke-dasharray="0.611853225613092,0.341156461796262"/>
-<path transform="translate(43.4817, 27.8334)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4477 -2.0571C12.2545 -3.5333 2.4945 -3.0801 0.4477 -1.4071L0.4477 -1.4071C2.4867 -3.2491 12.2467 -3.7022 14.4477 -2.0571z"/>
-<rect transform="translate(42.9018, 27.8334)" x="-0.0999" y="-11.8849" width="0.1999" height="2.8156" ry="0.0727" fill="currentColor"/>
-<path transform="translate(42.6751, 30.4103) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<rect transform="translate(41.7018, 27.8334)" x="-0.0999" y="-11.5028" width="0.1999" height="2.9335" ry="0.0727" fill="currentColor"/>
-<path transform="translate(41.4751, 30.4103) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/65_3_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/65_3_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,100 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.7676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.7676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.9111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 65</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(69.2572, 27.2006) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(69.2572, 26.2006) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(70.1428, 26.7006)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(70.8963, 26.7006)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(36.8189, 28.7006)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 27.7006)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 26.7006)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 25.7006)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 24.7006)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<rect transform="translate(36.8189, 23.7006)" x="10.8585" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 22.7006)" x="10.8585" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 23.7006)" x="15.3940" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 22.7006)" x="15.3940" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 21.7006)" x="15.5100" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 23.7006)" x="19.9295" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 22.7006)" x="20.0455" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 23.7006)" x="24.2597" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 22.7006)" x="24.2597" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 21.7006)" x="24.2597" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 20.7006)" x="24.3757" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 23.7006)" x="28.3618" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 22.7006)" x="28.4778" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(43.1396, 27.2006) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(43.1396, 26.2006) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(42.3861, 26.7006)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.0022, 26.7006)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(37.6189, 25.7006) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(64.4551, 22.2006) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<polygon transform="translate(65.4717, 24.4581)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(65.4717, 25.2681)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(65.4717, 26.0781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(66.2217, 26.7006)" x="-0.0999" y="-4.3766" width="0.1999" height="4.3766" ry="0.0727" fill="currentColor"/>
-<path transform="translate(65.4717, 22.2006) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(51.0539, 21.7006) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<rect transform="translate(53.2539, 26.7006)" x="-0.0999" y="-4.8766" width="0.1999" height="4.8766" ry="0.0727" fill="currentColor"/>
-<path transform="translate(52.5039, 21.7006) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(47.9684, 24.4581)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(47.9684, 25.2681)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(47.9684, 26.0781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(48.7184, 26.7006)" x="-0.0999" y="-3.8766" width="0.1999" height="3.8766" ry="0.0727" fill="currentColor"/>
-<text transform="translate(47.9684, 14.7123)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-sul</tspan>
-</text>
-<text transform="translate(51.6723, 14.7123)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-pont.</tspan>
-</text>
-<text transform="translate(57.3628, 14.7123)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-estremo</tspan>
-</text>
-<path transform="translate(47.9684, 22.7006) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.2196, 20.7006) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<polygon transform="translate(61.3696, 24.4581)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(61.3696, 25.2681)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(61.3696, 26.0781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(62.1196, 26.7006)" x="-0.0999" y="-5.8766" width="0.1999" height="5.8766" ry="0.0727" fill="currentColor"/>
-<path transform="translate(61.3696, 20.7006) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.1908, 16.2237)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="22.7861" y2="-0.0000" stroke-dasharray="0.787654082080687,2.38178515949158"/>
-<line transform="translate(68.0537, 16.2237)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(45.1139, 16.7237)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<path transform="translate(55.5894, 22.2006) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<polygon transform="translate(57.0394, 24.4581)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(57.0394, 25.2681)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(57.0394, 26.0781)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(57.7894, 26.7006)" x="-0.0999" y="-4.3766" width="0.1999" height="4.3766" ry="0.0727" fill="currentColor"/>
-<path transform="translate(57.0394, 22.2006) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/66_4_0.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/66_4_0.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,82 +1,24 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 13.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 12.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 11.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 10.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 9.8224)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<path transform="translate(37.5944, 10.8224) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.3224) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 66</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.5155) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(48.0664, 27.4561) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(48.0664, 26.4561) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(47.3129, 26.9561)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(45.9290, 26.9561)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(41.7457, 28.9561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="25.0696" y2="-0.0000"/>
-<line transform="translate(41.7457, 27.9561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="25.0696" y2="-0.0000"/>
-<line transform="translate(41.7457, 26.9561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="25.0696" y2="-0.0000"/>
-<line transform="translate(41.7457, 25.9561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="25.0696" y2="-0.0000"/>
-<line transform="translate(41.7457, 24.9561)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="25.0696" y2="-0.0000"/>
-<path transform="translate(64.3305, 27.4561) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(64.3305, 26.4561) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(65.2161, 26.9561)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(65.9695, 26.9561)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<polygon transform="translate(41.7457, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="19.1822 0.6119 19.1822 -0.6119 20.7732 -0.0000"/>
-<line transform="translate(56.7968, 17.3387)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="4.9579" y2="-0.0000" stroke-dasharray="1.14324264480309,0.835710177270621"/>
-<text transform="translate(50.2165, 17.3387)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(49.9665, 26.4561) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(49.9665, 26.9561)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M12.3859 -8.5129C9.7691 -8.8046 1.4451 -3.9366 0.4163 -1.5129L0.4163 -1.5129C1.3597 -4.0826 9.6837 -8.9506 12.3859 -8.5129z"/>
-<line transform="translate(60.6297, 20.5797)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(60.6297, 20.5797)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(60.0053, 20.9453)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(60.0053, 20.9453)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(59.3810, 21.3109)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(59.3810, 21.3109)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(58.7566, 21.6765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(58.7566, 21.6765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(58.1323, 22.0421)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(58.1323, 22.0421)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(57.5079, 22.4077)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(57.5079, 22.4077)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(56.8835, 22.7733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(56.8835, 22.7733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(56.2592, 23.1389)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(56.2592, 23.1389)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(55.6348, 23.5045)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(55.6348, 23.5045)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(55.0104, 23.8701)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(55.0104, 23.8701)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(54.3861, 24.2358)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(54.3861, 24.2358)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(53.7617, 24.6014)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(53.7617, 24.6014)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(53.1374, 24.9670)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(53.1374, 24.9670)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(52.5130, 25.3326)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(52.5130, 25.3326)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<line transform="translate(51.8886, 25.6982)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1539" y1="-0.4532" x2="0.7827" y2="-0.0952"/>
-<line transform="translate(51.8886, 25.6982)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.1583" y1="0.2704" x2="0.1539" y2="-0.4532"/>
-<path transform="translate(42.5457, 25.9561) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/67_5_3.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/67_5_3.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,59 +1,40 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 67</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(60.2108, 22.4275) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(60.2108, 21.4275) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(61.0964, 21.9275)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.8498, 21.9275)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(45.8654, 23.9275)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 22.9275)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 21.9275)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 20.9275)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<line transform="translate(45.8654, 19.9275)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.8302" y2="-0.0000"/>
-<path transform="translate(52.0677, 22.4275) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.0677, 21.4275) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.3143, 21.9275)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(49.9304, 21.9275)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(55.2774, 19.2146) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<text transform="translate(51.2742, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(55.1127, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="1.6000" y2="-0.0000" stroke-dasharray="0.543766233766234,0.756233766233766"/>
-<line transform="translate(56.7127, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(55.1127, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(52.9920, 19.9275) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(46.6654, 22.9275) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(54.4421, 19.9275) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/68_5_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/68_5_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,52 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 17.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.1547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.1547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.1547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.2424, 11.6547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 19.2982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 68</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(44.0924, 11.6547) scale(0.0040, -0.0040)" d="M34 33l-1 -58v-10c0 -21 2 -43 5 -64c41 38 85 80 85 136c0 31 -13 63 -40 63c-31 0 -48 -33 -49 -67zM-18 -142l-14 583c10 6 21 9 32 9s22 -3 32 -9l-8 -333c25 27 60 42 97 42c49 0 79 -52 79 -106c0 -76 -78 -117 -133 -169c-19 -18 -27 -52 -55 -52
+c-17 0 -30 17 -30 35z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.4232, 11.7337) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 -0.2866C2.5524 -0.5421 2.0551 -0.5421 1.7538 -0.2866L1.7538 -0.2866C2.0551 -0.6959 2.5524 -0.6959 2.8538 -0.2866z"/>
-<path transform="translate(11.5732, 11.7337) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(60.1516, 20.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(60.1516, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(61.0372, 19.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(61.7907, 19.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(45.9245, 21.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.7119" y2="-0.0000"/>
-<line transform="translate(45.9245, 20.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.7119" y2="-0.0000"/>
-<line transform="translate(45.9245, 19.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.7119" y2="-0.0000"/>
-<line transform="translate(45.9245, 18.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.7119" y2="-0.0000"/>
-<line transform="translate(45.9245, 17.7247)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="16.7119" y2="-0.0000"/>
-<path transform="translate(52.1269, 20.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(52.1269, 19.2247) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(51.3734, 19.7247)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(49.9895, 19.7247)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(55.2182, 17.3978) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(53.2329, 19.7247) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(54.3829, 19.7247) scale(0.0036, -0.0036)" d="M207 106c-47 0 -64 -44 -64 -88c0 -59 36 -97 78 -115c13 -5 27 -9 41 -9c47 0 64 44 64 88c0 59 -36 97 -78 115c-13 5 -27 9 -41 9zM234 144c96 0 235 -45 235 -144s-139 -144 -235 -144s-234 45 -234 144s138 144 234 144z" fill="currentColor"/>
-<path transform="translate(46.7245, 20.7247) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/69_4_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/69_4_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,98 +1,36 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 17.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 12.7547)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.7547)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 14.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.5944, 20.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.4663, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 19.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 22.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 69</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(41.5543, 23.2055) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(41.5543, 22.2055) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(40.8008, 22.7055)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(39.4169, 22.7055)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(35.2336, 24.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.0938" y2="-0.0000"/>
-<line transform="translate(35.2336, 23.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.0938" y2="-0.0000"/>
-<line transform="translate(35.2336, 22.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.0938" y2="-0.0000"/>
-<line transform="translate(35.2336, 21.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.0938" y2="-0.0000"/>
-<line transform="translate(35.2336, 20.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="38.0938" y2="-0.0000"/>
-<rect transform="translate(35.2336, 25.7055)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 26.7055)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 27.7055)" x="7.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 28.7055)" x="7.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 25.7055)" x="19.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 26.7055)" x="19.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 27.7055)" x="19.8700" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 25.7055)" x="31.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 26.7055)" x="31.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 27.7055)" x="31.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(35.2336, 28.7055)" x="31.7540" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(70.8426, 23.2055) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(70.8426, 22.2055) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(71.7282, 22.7055)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(72.4816, 22.7055)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(36.0336, 21.7055) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(55.2786, 28.2055) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<polygon transform="translate(35.2336, 19.3286)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" fill="currentColor" stroke="currentColor" points="31.0001 0.6119 31.0001 -0.6119 32.5912 -0.0000"/>
-<line transform="translate(50.1089, 19.3286)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="16.9517" y2="-0.0000" stroke-dasharray="1.15074466918406,0.843212201651589"/>
-<text transform="translate(43.5286, 19.3286)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-ad lib.</tspan>
-</text>
-<path transform="translate(43.2786, 28.7055) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(43.2786, 22.7055)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M24.5820 7.1629C21.9446 8.8772 3.2194 8.8772 0.5820 7.1629L0.5820 7.1629C3.2194 9.0463 21.9446 9.0463 24.5820 7.1629z"/>
-<text transform="translate(43.2786, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(47.1171, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="22.7741" y2="-0.0000" stroke-dasharray="0.460231419060703,0.561319198587527"/>
-<line transform="translate(69.8912, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(47.1171, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<g transform="rotate(-2.3859, 45.3593, 28.6430)">
-<path transform="translate(53.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(52.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(51.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(48.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(47.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(46.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(45.3593, 29.0430) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(41.8286, 28.7055) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(35.2336, 22.7055)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="22.1257" y1="5.5624" x2="31.1283" y2="5.9376"/>
-<path transform="translate(53.8286, 28.2055) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(67.2786, 28.7055) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/70_3_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/70_3_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,102 +1,34 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<text transform="translate(42.4684, 17.4508)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8vb</tspan>
+</text>
+<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.4401" y2="-0.0000" stroke-dasharray="0.449398832063911,0.59731522353374"/>
+<line transform="translate(49.7805, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.3403, 16.6628)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 19.5791)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 70</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.6246) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.6246) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(69.2572, 23.7952) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(69.2572, 22.7952) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(70.1428, 23.2952)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(70.8963, 23.2952)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(36.8189, 25.2952)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 24.2952)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 23.2952)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 22.2952)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<line transform="translate(36.8189, 21.2952)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="34.9231" y2="-0.0000"/>
-<rect transform="translate(36.8189, 26.2952)" x="11.8174" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 27.2952)" x="11.8174" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 28.2952)" x="11.9334" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 26.2952)" x="17.2945" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 27.2952)" x="17.2945" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 28.2952)" x="17.2945" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 29.2952)" x="17.4105" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 26.2952)" x="22.4566" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 27.2952)" x="22.4566" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 28.2952)" x="22.5726" y="-0.1269" width="1.6300" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 26.2952)" x="27.3019" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 27.2952)" x="27.3019" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 28.2952)" x="27.3019" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(36.8189, 29.2952)" x="27.3019" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(43.1396, 23.7952) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(43.1396, 22.7952) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(42.3861, 23.2952)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(41.0022, 23.2952)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<polygon transform="translate(64.4118, 25.9127)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(64.4118, 25.1027)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(64.4118, 24.2927)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(37.6189, 22.2952) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<rect transform="translate(65.1618, 23.2952)" x="-0.0999" y="-0.0000" width="0.1999" height="5.8766" ry="0.0727" fill="currentColor"/>
-<rect transform="translate(55.1544, 23.2952)" x="-0.0999" y="-0.0000" width="0.1999" height="6.3766" ry="0.0727" fill="currentColor"/>
-<text transform="translate(44.8639, 15.5938)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(48.7024, 14.8488)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="17.4735" y2="-0.0000" stroke-dasharray="0.456827358384703,0.553376390343527"/>
-<line transform="translate(66.1759, 14.8488)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(48.7024, 14.8488)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(48.9273, 28.7952) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<text transform="translate(48.9273, 13.1693)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-senza</tspan>
-</text>
-<text transform="translate(55.1144, 13.1693)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-tempo</tspan>
-</text>
-<rect transform="translate(49.6773, 23.2952)" x="-0.0999" y="-0.0000" width="0.1999" height="5.3766" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(48.9273, 25.9127)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(48.9273, 25.1027)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(48.9273, 24.2927)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(47.4773, 28.7952) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(54.4044, 29.7952) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.1908, 16.6706)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="21.7262" y2="-0.0000" stroke-dasharray="0.757371498343719,2.26065482454371"/>
-<line transform="translate(66.9938, 16.6706)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="2"/>
-<line transform="translate(45.1139, 17.1706)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0" y2="-1"/>
-<polygon transform="translate(54.4044, 25.9127)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(54.4044, 25.1027)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(54.4044, 24.2927)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(53.2544, 29.7952) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<path transform="translate(59.5664, 28.7952) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<rect transform="translate(60.3164, 23.2952)" x="-0.0999" y="-0.0000" width="0.1999" height="5.3766" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(59.5664, 25.9127)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(59.5664, 25.1027)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(59.5664, 24.2927)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<path transform="translate(58.5498, 28.7952) scale(0.0040, -0.0040)" d="M-11 375c10 6 21 8 32 8s21 -2 31 -8l-4 -210l92 27c2 1 4 1 6 1c11 0 21 -9 21 -20l10 -548c-10 -6 -20 -8 -31 -8s-21 2 -31 8l4 210c-31 -9 -61 -18 -92 -27c-2 -1 -4 -1 -6 -1c-11 0 -21 9 -21 20zM124 106l-78 -23l-3 -189l77 23z" fill="currentColor"/>
-<path transform="translate(64.4118, 29.2952) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/71_2_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/71_2_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,116 +1,37 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.3960)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.3960)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 18.3960) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 12.3960) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.5395)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 71</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.2272C2.5524 2.4828 2.0551 2.4828 1.7538 2.2272L1.7538 2.2272C2.0551 2.6365 2.5524 2.6365 2.8538 2.2272z"/>
-<path transform="translate(11.5732, 13.4535) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(89.2286, 26.4948) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2286, 27.4948) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2286, 28.4948) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(89.2286, 29.4948) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<line transform="translate(18.9849, 29.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5911" y2="-0.0000"/>
-<line transform="translate(18.9849, 28.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5911" y2="-0.0000"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5911" y2="-0.0000"/>
-<line transform="translate(18.9849, 26.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5911" y2="-0.0000"/>
-<line transform="translate(18.9849, 25.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="70.5911" y2="-0.0000"/>
-<path transform="translate(72.8286, 28.0675) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(72.7286, 27.9948)" x="-0.0999" y="-0.0000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="53.3818" y1="3.5000" x2="60.3818" y2="3.0000"/>
-<path transform="translate(79.8286, 27.5675) scale(0.0028, -0.0028)" d="M0 0c0 -196 209 -331 209 -527c0 -70 -16 -140 -42 -205c-6 -11 -16 -16 -26 -16c-16 0 -31 13 -31 31c0 2 1 4 1 6c27 58 43 120 43 184c0 100 -87 202 -154 277h-25v250h25z" fill="currentColor"/>
-<rect transform="translate(79.7286, 27.9948)" x="-0.0999" y="-0.5000" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(85.7833, 26.8698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(85.7833, 26.8698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(85.2000, 27.2448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(85.2000, 27.2448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(84.6167, 27.6198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(84.6167, 27.6198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(84.0333, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(84.0333, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(83.4500, 28.3698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(83.4500, 28.3698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(82.8667, 28.7448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(82.8667, 28.7448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(82.2833, 29.1198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(82.2833, 29.1198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(81.7000, 29.4948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(81.7000, 29.4948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(81.1167, 29.8698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(81.1167, 29.8698)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(80.5333, 30.2448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(80.5333, 30.2448)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(79.9500, 30.6198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(79.9500, 30.6198)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<line transform="translate(79.3667, 30.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1293" y1="-0.4401" x2="0.7457" y2="-0.1224"/>
-<line transform="translate(79.3667, 30.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0.1624" y1="0.2526" x2="0.1293" y2="-0.4401"/>
-<rect transform="translate(86.0047, 27.9948)" x="-0.0999" y="-1.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<g transform="rotate(32.7352, 65.3667, 26.9948)">
-<path transform="translate(72.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(71.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(70.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(69.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(68.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(67.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(66.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(65.3667, 27.3948) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(65.1046, 30.4220) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(65.0047, 27.9948)" x="-0.0999" y="-0.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="39.3818" y1="-2.5000" x2="46.3818" y2="-1.0000"/>
-<path transform="translate(58.1046, 28.9220) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(58.0047, 27.9948)" x="-0.0999" y="-2.4020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(85.9047, 26.4948)" stroke-width="0.3075" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" d="m1.42386967171734 0c0.466666666666669 0 1.40000000000001 -1.65 1.40000000000001 -2.5"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="32.3818" y1="-1.5000" x2="39.3818" y2="-2.5000"/>
-<path transform="translate(86.3667, 25.6679) scale(0.0028, -0.0028)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(41.1048, 30.5717) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<polygon transform="translate(24.7849, 29.0067)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="7.1272 -1.0281 7.1272 -0.6935 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(39.3382, 27.9948)" x="-0.0999" y="-12.1151" width="0.1999" height="2.5459" ry="0.0727" fill="currentColor"/>
-<path transform="translate(39.1115, 30.5717) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
-<rect transform="translate(41.3315, 27.9948)" x="-0.0999" y="-11.6151" width="0.1999" height="2.5459" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="13.4533" y1="-3.0000" x2="20.1266" y2="-9.5000"/>
-<rect transform="translate(31.8849, 27.9948)" x="-0.0999" y="-2.8615" width="0.1999" height="3.0246" ry="0.0727" fill="currentColor"/>
-<line transform="translate(18.9849, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="6.4533" y1="-1.5000" x2="13.4533" y2="-3.0000"/>
-<rect transform="translate(24.8849, 27.9948)" x="-0.0999" y="-1.3615" width="0.1999" height="2.3615" ry="0.0727" fill="currentColor"/>
-<polygon transform="translate(39.2383, 15.8546)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.1137 0.9309 4.1137 1.1694 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.2383, 16.5625)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.1137 0.9309 4.1137 1.1694 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(39.2383, 17.2704)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="4.1137 0.9309 4.1137 1.1694 0.0727 0.1193 0.0727 -0.1193"/>
-<polygon transform="translate(50.2547, 27.8773)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.2547, 28.6873)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<polygon transform="translate(50.2547, 29.4973)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1455" fill="currentColor" stroke="currentColor" points="1.4273 -0.5423 1.4273 -0.2077 0.0727 0.1673 0.0727 -0.1673"/>
-<rect transform="translate(51.0047, 27.9948)" x="-0.0999" y="-1.4020" width="0.1999" height="3.5270" ry="0.0727" fill="currentColor"/>
-<line transform="translate(44.3667, 25.9948)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.2306" stroke="currentColor" x1="0" y1="0" x2="7.0000" y2="0.5000" stroke-dasharray="0.608811317724156,0.336593599962858"/>
-<path transform="translate(44.1046, 29.4220) scale(0.0028, -0.0028)" d="M0 0h-25v250h25c92 60 214 151 214 259c0 55 -16 109 -42 158c0 2 -1 4 -1 6c0 18 16 30 32 30c10 0 20 -4 26 -15c25 -56 40 -117 40 -179c0 -204 -269 -305 -269 -509z" fill="currentColor"/>
-<rect transform="translate(44.0047, 27.9948)" x="-0.0999" y="-1.9020" width="0.1999" height="3.4020" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.9047, 27.9948)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M14.4509 -3.4071C12.2742 -4.9065 2.5152 -4.5580 0.4509 -2.9071L0.4509 -2.9071C2.5091 -4.7270 12.2682 -5.0756 14.4509 -3.4071z"/>
-<rect transform="translate(43.3248, 27.9948)" x="-0.0999" y="-11.1151" width="0.1999" height="3.5459" ry="0.0727" fill="currentColor"/>
-<path transform="translate(43.0981, 30.5717) scale(0.0020, -0.0020)" d="M-206 75c-11 3 -19 13 -19 25c0 14 11 25 25 25c2 0 4 -1 6 -1l394 -99c17 0 25 -8 25 -25s-8 -25 -25 -25l-394 -99c-2 0 -4 -1 -6 -1c-14 0 -25 11 -25 25c0 12 8 22 19 25l232 58l139 17l-139 17z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/72_0_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/72_0_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,126 +1,29 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 19.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 15.2676)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 14.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 12.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 11.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 10.2676)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 16.2676) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.2424, 10.2676) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 21.4111)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 72</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 2.6727C2.5524 2.9282 2.0551 2.9282 1.7538 2.6727L1.7538 2.6727C2.0551 3.0820 2.5524 3.0820 2.8538 2.6727z"/>
-<path transform="translate(11.5732, 13.9610) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(68.2572, 26.9843) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(68.2572, 25.9843) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(69.1428, 26.4843)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(69.8963, 26.4843)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(37.8189, 28.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 27.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 25.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<line transform="translate(37.8189, 24.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="32.9231" y2="-0.0000"/>
-<rect transform="translate(37.8189, 23.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.4843)" x="7.8727" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.4843)" x="15.2976" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 22.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 21.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 20.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 19.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(37.8189, 23.4843)" x="22.7225" y="-0.1269" width="1.7460" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(44.1396, 26.9843) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(44.1396, 25.9843) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(43.3861, 26.4843)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(42.0022, 26.4843)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(38.6189, 25.4843) scale(0.0040, -0.0040)" d="M560 -125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM560 125c0 27 21 48 48 48s49 -21 49 -48s-22 -48 -49 -48s-48 21 -48 48zM228 269c175 0 297 -91 297 -257c0 -263 -261 -415 -512 -525c-4 -4 -9 -6 -13 -6c-10 0 -19 9 -19 19c0 4 2 9 6 13
-c196 117 400 263 400 487c0 116 -55 231 -159 231c-62 0 -101 -48 -120 -112h4c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 134 98 250 228 250z" fill="currentColor"/>
-<path transform="translate(53.4075, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1248 -2.5000C6.1135 -1.7786 1.7934 -1.7786 0.7820 -2.5000L0.7820 -2.5000C1.7934 -1.5941 6.1135 -1.5941 7.1248 -2.5000z"/>
-<path transform="translate(53.4075, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8069 -8.0000C6.7445 -8.7386 1.8444 -8.7386 0.7820 -8.0000L0.7820 -8.0000C1.8444 -8.9231 6.7445 -8.9231 7.8069 -8.0000z"/>
-<line transform="translate(54.3228, 31.7444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.6666" x2="7.6736" y2="0.0000"/>
-<line transform="translate(54.3228, 31.7444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.6666" x2="7.6736" y2="-0.0000"/>
-<path transform="translate(45.9826, 22.9843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<line transform="translate(45.9826, 31.7444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.0000" x2="7.6736" y2="0.6666"/>
-<line transform="translate(45.9826, 31.7444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="-0.0000" x2="7.6736" y2="-0.6666"/>
-<line transform="translate(51.7520, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.7520, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.0145, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.0145, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(50.2770, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(50.2770, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(49.5395, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(49.5395, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.8021, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.8021, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.0646, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.0646, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.7520, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.7520, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(51.0145, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(51.0145, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(50.2770, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(50.2770, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(49.5395, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(49.5395, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.8021, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.8021, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(48.0646, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(48.0646, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<path transform="translate(53.4075, 19.4843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.4075, 22.9843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.4075, 14.8714) scale(0.0040, -0.0040)" d="M213 -182h-26c-30 0 -38 37 -58 57c-54 52 -129 94 -129 169c0 54 26 108 75 108c38 0 74 -17 99 -46l-9 330c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57zM163 30
-c-1 34 -16 68 -47 68c-26 0 -39 -31 -39 -61c0 -55 43 -96 83 -134c3 20 5 41 5 62v10zM237 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68z" fill="currentColor"/>
-<path transform="translate(45.9826, 19.4843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.9895, 17.4714) scale(0.0040, -0.0040)" d="M-84 84c0 46 38 83 84 83s84 -37 84 -83s-38 -84 -84 -84s-84 38 -84 84zM-295 375h590c10 0 18 -8 18 -18v-329c0 -16 -13 -28 -29 -28s-28 12 -28 28v234h-512v-234c0 -16 -12 -28 -28 -28s-29 12 -29 28v329c0 10 8 18 18 18z" fill="currentColor"/>
-<path transform="translate(45.9826, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.8069 -8.0000C6.7445 -8.7386 1.8444 -8.7386 0.7820 -8.0000L0.7820 -8.0000C1.8444 -8.9231 6.7445 -8.9231 7.8069 -8.0000z"/>
-<path transform="translate(45.9826, 26.4843)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M7.1248 -2.5000C6.1135 -1.7786 1.7934 -1.7786 0.7820 -2.5000L0.7820 -2.5000C1.7934 -1.5941 6.1135 -1.5941 7.1248 -2.5000z"/>
-<line transform="translate(59.1769, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(59.1769, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(58.4394, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(58.4394, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(57.7019, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(57.7019, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.9644, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.9644, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.2270, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.2270, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(55.4895, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(55.4895, 19.4843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(59.1769, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(59.1769, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(58.4394, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(58.4394, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(57.7019, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(57.7019, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.9644, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.9644, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(56.2270, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(56.2270, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<line transform="translate(55.4895, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.3687" y1="-0.3193" x2="0.7375" y2="0.3193"/>
-<line transform="translate(55.4895, 22.9843)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0000" y1="0.3193" x2="0.3687" y2="-0.3193"/>
-<path transform="translate(60.8324, 19.4843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.8324, 22.9843) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/73_1_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/73_1_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,82 +1,40 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.1246)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.7944, 20.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 19.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 18.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 17.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<line transform="translate(36.7944, 16.8831)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="13.8904" y2="-0.0000"/>
+<rect transform="translate(36.7944, 15.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 14.8831)" x="8.1570" y="-0.1177" width="1.7460" height="0.2354" ry="0.1177" fill="currentColor"/>
+<rect transform="translate(36.7944, 13.8831)" x="8.2730" y="-0.1177" width="1.6300" height="0.2354" ry="0.1177" fill="currentColor"/>
+<path transform="translate(37.5944, 19.8831) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<text transform="translate(42.5944, 11.3305)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+8va</tspan>
+</text>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="3.1882" y2="-0.0000" stroke-dasharray="0.424202379596419,0.538523501109594"/>
+<line transform="translate(49.6545, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.405384615384615,0.494615384615385"/>
+<line transform="translate(46.4663, 10.5689)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.435384615384615,0.564615384615385"/>
+<path transform="translate(45.2424, 13.3831) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.2424, 23.0266)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 73</tspan>
 </text>
-<text transform="translate(5.1732, 7.6246)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.7924, 13.3831) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.5155)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.6246)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.8428)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.9519)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.6246) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 13.0701) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.7337)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.7818C2.5524 2.0373 2.0551 2.0373 1.7538 1.7818L1.7538 1.7818C2.0551 2.1911 2.5524 2.1911 2.8538 1.7818z"/>
-<path transform="translate(11.5732, 13.0701) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(74.2572, 25.4813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(74.2572, 24.4813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(75.1428, 24.9813)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(75.8963, 24.9813)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(31.8189, 26.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 25.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 24.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 23.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<line transform="translate(31.8189, 22.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="44.9231" y2="-0.0000"/>
-<rect transform="translate(31.8189, 21.9813)" x="35.6628" y="-0.1269" width="1.7373" height="0.2538" ry="0.1269" fill="currentColor"/>
-<path transform="translate(38.0213, 25.4813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(38.0213, 24.4813) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(37.2678, 24.9813)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(35.8839, 24.9813)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(32.6189, 25.9813) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(66.3212, 22.9813) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(46.2574, 23.4813) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<g transform="rotate(4.4042, 49.4850, 23.5965)">
-<path transform="translate(51.4850, 23.9965) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(50.4850, 23.9965) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-<path transform="translate(49.4850, 23.9965) scale(0.0040, -0.0040)" d="M171 -4c-37 0 -65 89 -122 89c-16 0 -33 -6 -46 -18l-29 -27c-4 -4 -9 -5 -13 -5c-10 0 -19 9 -19 19c0 3 1 6 3 10l115 129c6 8 12 11 19 11c37 0 65 -89 122 -89c16 0 33 6 46 18l29 27c4 5 9 7 14 7c10 0 19 -9 19 -19c0 -4 -1 -8 -4 -12l-115 -129
-c-6 -8 -12 -11 -19 -11z" fill="currentColor"/>
-</g>
-<path transform="translate(47.4074, 23.4813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(38.9456, 24.4813) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<line transform="translate(31.8189, 24.9813)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="10.6437" y1="-0.7118" x2="14.6855" y2="-1.2882"/>
-<text transform="translate(40.3956, 17.2146)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1986" text-anchor="start" fill="currentColor">
-<tspan>
-8va</tspan>
-</text>
-<line transform="translate(44.2341, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="25.3012" y2="-0.0000" stroke-dasharray="0.453780154275692,0.546266247422503"/>
-<line transform="translate(69.5352, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.423766233766234,0.476233766233766"/>
-<line transform="translate(44.2341, 16.4696)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.453766233766234,0.546233766233766"/>
-<path transform="translate(40.3956, 24.9813)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1230" d="M14.0670 -2.1629C11.8823 -4.1558 2.5465 -3.7064 0.5633 -1.5129L0.5633 -1.5129C2.5377 -3.8907 11.8734 -4.3401 14.0670 -2.1629z"/>
-<path transform="translate(40.3956, 24.4813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.8993, 23.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(60.6411, 22.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(61.3411, 28.5582)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(61.3411, 28.5582)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(67.7712, 22.9813) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.7712, 21.4813) scale(0.0036, -0.0036)" d="M82 27l104 -121l57 67l-104 121zM4 -12c-3 3 -4 8 -4 12s1 9 4 12l145 169c3 4 8 6 13 6s11 -2 14 -6l145 -169c3 -3 4 -8 4 -12s-1 -9 -4 -12l-145 -169c-3 -4 -9 -6 -14 -6s-10 2 -13 6z" fill="currentColor"/>
-<path transform="translate(68.3503, 19.3146) scale(0.0040, -0.0040)" d="M-60 60c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60zM-232 225h464c10 0 18 -8 18 -18v-179c0 -16 -12 -28 -28 -28s-29 12 -29 28v122h-386v-122c0 -16 -13 -28 -29 -28s-28 12 -28 28v179c0 10 8 18 18 18zM-357 400h714c10 0 18 -8 18 -18v-354
-c0 -16 -12 -28 -28 -28s-29 12 -29 28v247h-636v-247c0 -16 -13 -28 -29 -28s-28 12 -28 28v354c0 10 8 18 18 18z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/74_6_1.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/74_6_1.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,75 +1,30 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 15.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 14.7547) scale(0.0040, -0.0040)" d="M335 -267c-189 0 -333 175 -333 379c0 180 128 316 243 455c-25 70 -48 140 -58 213c-8 56 -9 112 -9 169c0 116 54 225 147 295c5 4 10 5 15 5c6 0 11 -2 16 -6c79 -87 150 -260 150 -381c0 -147 -85 -264 -179 -378c24 -72 47 -144 66 -217c156 -2 256 -131 256 -265
+c0 -77 -33 -156 -108 -213c-25 -18 -52 -32 -81 -40v-8c0 -55 -3 -111 -6 -166c-8 -124 -97 -231 -221 -231c-113 0 -204 93 -204 207c0 58 54 104 113 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-8 0 -16 2 -24 4c26 -39 69 -66 118 -66c97 0 163 89 169 188
+c3 52 5 105 5 157c-25 -4 -49 -6 -75 -6zM459 -201c67 23 112 93 112 161c0 83 -57 166 -150 185c21 -105 35 -229 38 -346zM338 -217c24 0 49 1 72 4c-3 123 -17 252 -40 362c-85 -4 -133 -59 -133 -118c0 -43 25 -88 79 -119c6 -5 8 -12 8 -18c0 -13 -11 -25 -25 -25
+c-3 0 -7 0 -11 2c-82 44 -119 116 -119 188c0 93 63 184 174 204c-15 59 -34 118 -53 176c-106 -127 -211 -252 -211 -416c0 -131 127 -240 259 -240zM395 1089c-100 -49 -163 -150 -163 -261c0 -29 5 -54 11 -80c11 -46 25 -91 40 -135c80 102 146 209 146 339
+c0 61 -6 86 -34 137z" fill="currentColor"/>
+<path transform="translate(45.3684, 11.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 17.8457)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 74</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 11.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 12.5626) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 1.1775C2.5524 1.4330 2.0551 1.4330 1.7538 1.1775L1.7538 1.1775C2.0551 1.5868 2.5524 1.5868 2.8538 1.1775z"/>
-<path transform="translate(11.5732, 12.5626) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.0213, 21.0061) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.0213, 20.0061) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(27.2678, 20.5061)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(25.8839, 20.5061)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(21.8189, 22.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 21.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 20.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 19.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<line transform="translate(21.8189, 18.5061)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="64.9231" y2="-0.0000"/>
-<rect transform="translate(21.8189, 17.5061)" x="23.6594" y="-0.1269" width="1.2038" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.5061)" x="31.0595" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.5061)" x="51.5081" y="-0.1269" width="1.3858" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(21.8189, 17.5061)" x="53.5941" y="-0.1269" width="1.2346" height="0.2538" ry="0.1269" fill="currentColor"/>
-<rect transform="translate(86.5267, 20.5061)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<path transform="translate(22.6189, 21.5061) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(75.6188, 17.0061) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(74.0199, 23.2695) scale(0.0032, -0.0032)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(73.5579, 17.5061) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(67.7440, 20.5061) scale(0.0040, -0.0040)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
-<circle transform="translate(69.5940, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(69.5940, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(46.0648, 23.2219) scale(0.0028, -0.0028)" d="M0 -138c-21 0 -38 17 -38 38v62h-62c-21 0 -38 17 -38 38s17 38 38 38h62v62c0 21 17 38 38 38s38 -17 38 -38v-62h62c21 0 38 -17 38 -38s-17 -38 -38 -38h-62v-62c0 -21 -17 -38 -38 -38z" fill="currentColor"/>
-<path transform="translate(45.6533, 17.0061) scale(0.0025, -0.0025)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(41.2872, 18.0061) scale(0.0045, -0.0045)" d="M-10 375c9 5 20 8 30 8s21 -3 30 -8l-4 -204l96 26c2 0 3 1 5 1c11 0 20 -9 20 -20l10 -553c-9 -5 -20 -8 -30 -8s-21 3 -30 8l4 204l-96 -26c-2 0 -3 -1 -5 -1c-11 0 -20 9 -20 20zM126 108l-81 -22l-4 -194l81 22z" fill="currentColor"/>
-<path transform="translate(42.3855, 18.0061) scale(0.0040, -0.0040)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(28.9456, 18.0061) scale(0.0050, -0.0050)" d="M198 -328c-12 0 -22 10 -22 22v134l-77 -29v-152c0 -12 -10 -22 -22 -22s-22 10 -22 22v134l-16 -6c-3 -1 -8 -2 -11 -2c-15 0 -28 12 -28 28v50c0 12 7 23 18 27l37 14v152l-16 -7c-3 -1 -8 -2 -11 -2c-15 0 -28 13 -28 29v50c0 12 7 22 18 26l37 15v151
-c0 12 10 22 22 22s22 -10 22 -22v-134l77 29v152c0 12 10 22 22 22s22 -10 22 -22v-134l16 6c3 1 8 2 11 2c15 0 28 -12 28 -28v-50c0 -12 -7 -23 -18 -27l-37 -14v-152l16 7c3 1 8 2 11 2c15 0 28 -13 28 -29v-50c0 -12 -7 -22 -18 -26l-37 -15v-151c0 -12 -10 -22 -22 -22
-zM99 61v-152l77 30v152z" fill="currentColor"/>
-<path transform="translate(31.4169, 23.5259) scale(0.0050, -0.0050)" d="M0 -137c-18 0 -32 13 -32 31v74h-74c-18 0 -32 14 -32 32s14 32 32 32h74v74c0 18 14 32 32 32s32 -14 32 -32v-74h74c18 0 32 -14 32 -32s-14 -32 -32 -32h-74v-74c0 -18 -14 -31 -32 -31z" fill="currentColor"/>
-<path transform="translate(30.6815, 18.0061) scale(0.0045, -0.0045)" d="M207 142c64 0 121 -35 121 -104c0 -71 -51 -120 -98 -148c-33 -20 -71 -32 -109 -32c-64 0 -121 35 -121 104c0 71 51 120 98 148c33 20 71 32 109 32z" fill="currentColor"/>
-<path transform="translate(68.8940, 20.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(65.2376, 18.5061) scale(0.0032, -0.0032)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<path transform="translate(53.1094, 17.5061) scale(0.0028, -0.0028)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
-<circle transform="translate(49.9776, 26.5624)" stroke-linejoin="round" stroke-linecap="round" fill="none" stroke="currentColor" stroke-width="0.1000" r="0.7000"/>
-<line transform="translate(49.9776, 26.5624)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0" y1="-0.1000" x2="0" y2="-1"/>
-<path transform="translate(49.2776, 21.5061) scale(0.0036, -0.0036)" d="M305 59c0 22 -19 38 -38 38c-4 0 -7 -1 -11 -2c-28 -8 -71 -35 -104 -57s-76 -50 -95 -72c-6 -7 -9 -16 -9 -25c0 -22 19 -38 38 -38c4 0 7 1 11 2c28 8 71 35 104 57s75 50 94 72c6 7 10 16 10 25zM337 109c11 -17 15 -35 15 -55c0 -64 -26 -125 -69 -154
-c-50 -34 -106 -44 -172 -44c-38 0 -76 5 -96 35c-11 17 -15 35 -15 55c0 64 26 125 69 154c50 34 106 44 172 44c38 0 76 -5 96 -35z" fill="currentColor"/>
-<path transform="translate(44.7376, 17.0061) scale(0.0028, -0.0028)" d="M37 30l-2 -55v-10c0 -21 2 -42 5 -62c40 38 83 79 83 134c0 30 -13 61 -39 61c-31 0 -46 -34 -47 -68zM-19 -144l-16 580c11 6 23 9 35 9s24 -3 35 -9l-9 -330c25 29 61 46 99 46c49 0 75 -54 75 -108c0 -75 -75 -117 -129 -169c-20 -20 -28 -57 -58 -57
-c-19 0 -32 18 -32 38z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/75_7_2.svg	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/75_7_2.svg	Thu Aug 16 07:17:03 2012 +0000
@@ -1,46 +1,27 @@
 <?xml-stylesheet type="text/css" href="svg-stylesheet.css" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="1280px" height="800px" viewBox="0 0 108.6378 62.0787">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="100.00mm" height="40.00mm" viewBox="0 0 87.5469 35.0188">
 <!-- Page: 1/1 -->
-<text transform="translate(5.1732, 0.5173)" font-family="Century Schoolbook L" font-size="2.1986" text-anchor="start" fill="currentColor">
+<text transform="translate(4.3773, 8.7547)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<text transform="translate(51.8978, 4.0626)" font-family="Vera" font-weight="bold" font-size="3.4919" text-anchor="start" fill="currentColor">
+<line transform="translate(36.6684, 14.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 13.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 12.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 11.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<line transform="translate(36.6684, 10.7547)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1354" stroke="currentColor" x1="0.0677" y1="-0.0000" x2="14.1424" y2="-0.0000"/>
+<path transform="translate(37.4684, 11.7547) scale(0.0040, -0.0040)" d="M559 -125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM559 125c0 27 22 49 49 49s49 -22 49 -49s-22 -49 -49 -49s-49 22 -49 49zM229 267c174 0 296 -90 296 -255c0 -263 -262 -415 -513 -524c-4 -4 -8 -6 -12 -6c-9 0 -18 9 -18 18c0 4 2 8 6 12
+c198 117 403 264 403 489c0 117 -57 232 -162 232c-65 0 -107 -50 -128 -115c4 1 7 1 11 1c55 0 100 -45 100 -100c0 -58 -44 -107 -100 -107c-60 0 -112 48 -112 107c0 134 99 248 229 248z" fill="currentColor"/>
+<path transform="translate(45.3684, 13.2547) scale(0.0036, -0.0036)" d="M202 144c66 0 125 -38 125 -109s-49 -120 -96 -148c-32 -19 -69 -31 -106 -31c-66 0 -125 38 -125 109s49 120 96 148c32 19 69 31 106 31z" fill="currentColor"/>
+<text transform="translate(45.3684, 16.8982)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
 <tspan>
 75</tspan>
 </text>
-<text transform="translate(5.1732, 7.5626)" font-family="Century Schoolbook L" font-size="1.9592" text-anchor="start" fill="currentColor">
-<tspan/>
+<path transform="translate(43.9184, 13.2547) scale(0.0040, -0.0040)" d="M198 -327c-13 0 -24 11 -24 24v129l-73 -29v-148c0 -13 -11 -24 -24 -24s-23 11 -23 24v129l-10 -4c-4 -2 -8 -2 -12 -2c-17 0 -32 14 -32 32v46c0 13 8 24 20 29l34 14v148l-10 -4c-4 -2 -8 -3 -12 -3c-17 0 -32 14 -32 32v46c0 13 8 25 20 30l34 13v148
+c0 13 10 24 23 24s24 -11 24 -24v-129l73 29v148c0 13 11 24 24 24s23 -11 23 -24v-129l10 4c4 2 8 2 12 2c17 0 32 -14 32 -32v-46c0 -13 -8 -24 -20 -29l-34 -14v-148l10 4c4 2 8 3 12 3c17 0 32 -14 32 -32v-46c0 -13 -8 -25 -20 -30l-34 -13v-148c0 -13 -10 -24 -23 -24
+zM101 59v-148l73 30v148z" fill="currentColor"/>
+<text transform="translate(4.3773, 33.2153)" font-family="Century Schoolbook L" font-size="2.1989" text-anchor="start" fill="currentColor">
+<tspan>
+rc@kiben.net</tspan>
 </text>
-<line transform="translate(5.7732, 13.4535)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 12.5626)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 10.7808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<line transform="translate(5.7732, 9.8899)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="8.9749" y2="-0.0000"/>
-<rect transform="translate(5.7732, 14.3444)" x="5.6250" y="-0.1214" width="2.1172" height="0.2429" ry="0.1214" fill="currentColor"/>
-<path transform="translate(6.5732, 12.5626) scale(0.0040, -0.0040)" d="M335 -268c-190 0 -333 175 -333 380c0 180 126 316 240 456c-26 69 -50 139 -61 212c-8 56 -9 113 -9 171c0 115 54 223 146 292c5 4 11 6 17 6c7 0 13 -2 18 -7c80 -86 151 -259 151 -380c0 -146 -82 -264 -175 -378c25 -71 47 -142 66 -215c156 -3 256 -133 256 -267
-c0 -78 -33 -157 -109 -214c-24 -18 -52 -31 -81 -40c0 -58 -1 -115 -5 -173c-8 -125 -100 -232 -224 -232c-113 0 -204 93 -204 207c0 58 53 104 112 104c54 0 95 -48 95 -104c0 -52 -43 -95 -95 -95c-7 0 -13 1 -19 3c26 -38 66 -63 114 -63c97 0 163 90 169 188
-c3 51 5 103 5 154c-25 -4 -48 -5 -74 -5zM461 -200c66 24 109 92 109 159c0 81 -55 162 -146 183c21 -104 34 -226 37 -342zM338 -216c24 0 48 1 71 4c-2 122 -17 250 -39 359c-84 -3 -132 -57 -132 -116c0 -42 25 -87 79 -118c6 -6 8 -12 8 -18c0 -14 -11 -27 -26 -27
-c-4 0 -7 0 -11 2c-82 44 -120 118 -120 190c0 94 64 185 175 205c-15 58 -33 116 -53 173c-105 -127 -209 -255 -209 -418c0 -130 126 -236 257 -236zM392 1084c-100 -48 -163 -148 -163 -258c0 -28 5 -53 12 -79c11 -44 25 -87 40 -130c79 102 144 208 144 337
-c0 59 -6 82 -33 130z" fill="currentColor"/>
-<path transform="translate(10.1232, 14.3444) scale(0.0040, -0.0040)" d="M223 -37c5 2 10 4 16 4c19 0 36 -16 36 -36v-41c0 -14 -9 -28 -22 -33l-30 -13v-144c0 -14 -11 -26 -25 -26s-26 12 -26 26v124l-69 -29v-145c0 -14 -12 -25 -26 -25s-25 11 -25 25v124c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v42c0 14 9 28 22 33l30 12v144
-c-5 -2 -10 -4 -16 -4c-19 0 -36 16 -36 36v41c0 14 9 28 22 33l30 13v144c0 14 11 26 25 26s26 -12 26 -26v-124l69 29v145c0 14 12 25 26 25s25 -11 25 -25v-124c5 2 10 4 16 4c19 0 36 -16 36 -36v-42c0 -14 -9 -28 -22 -33l-30 -12v-144zM103 58v-144l69 28v144z" fill="currentColor"/>
-<path transform="translate(11.5732, 11.6717)" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" stroke-width="0.1538" d="M2.8538 3.1181C2.5524 3.3737 2.0551 3.3737 1.7538 3.1181L1.7538 3.1181C2.0551 3.5274 2.5524 3.5274 2.8538 3.1181z"/>
-<path transform="translate(11.5732, 14.3444) scale(0.0040, -0.0040)" d="M194 185c104 0 194 -82 194 -185s-90 -185 -194 -185s-194 82 -194 185s90 185 194 185zM154 0l-76 72c-15 -21 -21 -64 -23 -72c0 -26 8 -51 23 -72zM194 38l76 71c-22 13 -49 21 -76 21s-53 -8 -75 -21zM194 -38l-75 -71c22 -13 48 -21 75 -21s54 8 76 21zM234 0
-l76 -72c15 21 24 46 24 72s-9 51 -24 72z" fill="currentColor"/>
-<path transform="translate(28.9562, 19.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(28.9562, 18.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(28.2028, 19.3444)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(26.8189, 19.3444)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<line transform="translate(26.8189, 21.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 20.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 19.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 18.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<line transform="translate(26.8189, 17.3444)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1538" stroke="currentColor" x1="0.0769" y1="-0.0000" x2="54.9231" y2="-0.0000"/>
-<path transform="translate(79.2572, 19.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<path transform="translate(79.2572, 18.8444) scale(0.0040, -0.0040)" d="M0 0c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" fill="currentColor"/>
-<rect transform="translate(80.1428, 19.3444)" x="0.0000" y="-2.0769" width="0.2922" height="4.1538" ry="0.0000" fill="currentColor"/>
-<rect transform="translate(80.8963, 19.3444)" x="0.0000" y="-2.0769" width="0.9226" height="4.1538" ry="0.0000" fill="currentColor"/>
-<g transform="rotate(-2.0000, 30.6805, 17.8444)">
-</g>
 </svg>
--- a/www/m/svg/svg-stylesheet.css	Wed Aug 08 00:58:11 2012 +0000
+++ b/www/m/svg/svg-stylesheet.css	Thu Aug 16 07:17:03 2012 +0000
@@ -1,4 +1,4 @@
-svg { background-color: black; width:1280px; height:800px;}
+svg { background-color: black; width:1000px; height:400px;}
 line { stroke: white; }
 text {   fill: white;}
 path { stroke: white; fill: white; }
Binary file www/m/thumbs/1.png has changed
Binary file www/m/thumbs/2.png has changed
Binary file www/m/thumbs/3.png has changed
Binary file www/m/thumbs/4.png has changed
Binary file www/m/thumbs/5.png has changed
Binary file www/m/thumbs/6.png has changed