changeset 38:ea8d61c851c0

added chat server and more work on interface
author tzara <rc-web@kiben.net>
date Wed, 22 Aug 2012 12:51:28 +0000
parents 1b8d0935b749
children 3ba24da53406
files nodescore.js www/m/css/chat.css www/m/css/nodescore.css www/m/ctrl.html www/m/js/nodescore-client.js www/m/score.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/thumbs/1.png www/m/thumbs/2.png www/m/thumbs/3.png www/m/thumbs/4.png www/m/thumbs/5.png
diffstat 75 files changed, 2554 insertions(+), 976 deletions(-) [+]
line wrap: on
line diff
--- a/nodescore.js	Sun Aug 19 22:29:24 2012 +0000
+++ b/nodescore.js	Wed Aug 22 12:51:28 2012 +0000
@@ -40,6 +40,31 @@
 io.set('log level', 1); // reduce loggingi
 io.sockets.on('connection', function (socket) {
 
+  socket.on('nickname', function (nick, fn) {
+    if (nicknames[nick]) {
+      fn(true);
+    } else {
+      fn(false);
+      nicknames[nick] = socket.nickname = nick;
+      socket.broadcast.emit('announcement', nick + ' connected');
+      io.sockets.emit('nicknames', nicknames);
+    }
+  });
+
+
+    socket.on('disconnect', function(client) {
+	
+	if (!socket.nickname) return;
+	
+	delete nicknames[socket.nickname];
+	socket.broadcast.emit('announcement', socket.nickname + ' disconnected');
+	socket.broadcast.emit('nicknames', nicknames);
+    });
+   
+
+    socket.on('user message', function (msg) {
+	socket.broadcast.emit('user message', socket.nickname, msg);
+    });
     ////////////////////////////////////////////
     // metronome
     ////////////////////////////////////////////
@@ -144,8 +169,6 @@
 	
 	var tock = setInterval(function(){
 
-
-
 	    if (ztime >= 0 ){
 		
 		// basic unit is still the second/1000ms - change this to tempoms? no i dont think so
@@ -153,29 +176,33 @@
 		////////////////////////////////////////////
 		
 		var counter = ztime/1000
-		socket.emit('counterText', seq.voice, seq.counter, counter);
+		socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 
 		if (counter > 0 && counter <= outcount ) {              
-		    socket.broadcast.emit('countinFromServer', seq.voice, counter, "","", "white", "transparent");
+		    socket.broadcast.emit('countinFromServer', seq.voice, counter, "","stop in:", "red", "transparent");
+		    socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 		}
 		
 		// remove displayed number with " " at end of both countin/out
 		
 		if (counter == 0 ) {
-
-		    socket.broadcast.emit('countinFromServer', seq.voice, " ", "","", "white","transparent");
+		    socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
+		    socket.broadcast.emit('countinFromServer', seq.voice, "///", "//","/", "green","transparent");
 		}
 		
-		if (counter > (totaltime)-incount  && counter <= totaltime ) {              
-		    socket.broadcast.emit('countinFromServer', seq.voice, counter-(totaltime-incount), "","", "red","gray");	    
+		if (counter > (totaltime)-incount  && counter <= totaltime ) {        
+
+		    socket.broadcast.emit('countinFromServer', seq.voice, counter-(totaltime-incount), "","play in:", "green","black");	    
+		    socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 		}
 		
 		if (counter == (totaltime)-incount ) {
-		    socket.broadcast.emit('countinFromServer', seq.voice, " ", "","", "red","gray");
+		    socket.broadcast.emit('countinFromServer', seq.voice, "+", "","playing..", "green","black");
+		    socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 		}
 	    	
 		// push out the pulse to metronome	
-
+		socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 		seq.metrobeat = (seq.metrobeat+1)%seq.beatsinbar ;
      		socket.broadcast.emit('metroPulse', tempoms, seq.voice,seq.metrobeat); 
 		socket.emit('metroPulse', tempoms, seq.voice,seq.metrobeat);	
@@ -185,7 +212,8 @@
 	    // flip the page
 
 	    if (ztime == 0){
-		socket.emit('counterText', seq.voice, seq.counter, " ");
+		socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
+		//socket.emit('counterText', seq.voice, seq.counter, " ");
 		seq.counter = (seq.counter + 1) % seq.durations.length	    		
 		socket.broadcast.emit("pageFlipfromserver", seq.voice, unit, time, seq.mm,seq.counter);
 // 		socket.emit("pageFlipfromserver", seq.voice, unit, time, seq.mm,seq.counter);		
@@ -193,12 +221,16 @@
 		step(seq);     
 	    }
 
-	    if (ztime < 0){}	    	    	    
+	    if (ztime < 0){
+		socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
+	    }
+	    	    	    
 	    // decrement the time 
 	    ztime -= 1000
+	    socket.broadcast.emit('counterText', seq.voice, seq.counter, counter);
 				
 	}, tempoms)
-		
+
 	  };
 
 //	    socket.on('stopSeq', function () {
@@ -261,7 +293,6 @@
       so maybe latency is irrelevant in this context - we just need to
       stagger signals according to encoding decoding times.. hmmm
     */
-    
 
 
 // periodically broadcast  a ping
@@ -300,10 +331,10 @@
     serverTime(1000);
 
     socket.on('disconnect', function(client) {
-	console.log(client + " is gone..." )
+	console.log(socket.nickname + " is gone..." )
 	clearInterval(st);
     });
-    
+
 });
 
 
--- a/www/m/css/chat.css	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/css/chat.css	Wed Aug 22 12:51:28 2012 +0000
@@ -1,58 +1,31 @@
-#nicknames {
-  position: relative;
-  background-color: #666;
-  padding: 6px 6px 6px;
-  font: 15px Helvetica; 
-}
-
-.nickname-set #nickname {
-  display: none;
-}
-
 #chat,
 #nickname,
-
 #messages {
-  width: 300px;
-  background-color: white;
-  z-index: 2;
+  width: 350px;
 }
-
 #chat {
-  left: 700px;
-  top: 500px;
-  border: 1px solid #ccc;
-  background-color: white;
-  font: 12px Helvetica; 
-  position: absolute;
-  z-index: 2;
-  opacity:0.5;
+  position: relative;
+  border: 0px solid #ccc;
+  background: black;
+  border-radius: 15px;
 }
-
-#chatclient {
-  right: 2px;
-  border: 1px solid #ccc;
-  background-color: black;
-#  width: 300px;
-  font: 12px Helvetica; 
-  position: absolute;
-  bottom:50px;
-}
-
 #nickname,
 #connecting {
-  position: relative;
-  height: 210px;
-  width: 300px;
-  color: #666;
+  position: absolute;
+  height: 185px;
+  z-index: 100;
+  left: 0;
+  top: 0;
+  background: black;
+  text-align: center;
+  width: 350px;
+  font: 15px Georgia;
+  color: white;
   display: block;
-  top:150px;
-  font: 12px Helvetica; 
 }
-
 #nickname .wrap,
 #connecting .wrap {
-  padding-top: 10px;
+  padding-top: 60px;
 }
 #nickname input {
   border: 1px solid #ccc;
@@ -74,71 +47,65 @@
   display: none;
 }
 #messages {
-  height: 100px;
+  height: 160px;
+  !background: #eee;
+  background: black;
 }
-
 #messages em {
-  text-shadow: 0 1px 0 #fff;
-  color: #999;
+  !text-shadow: 0 1px 0 #fff;
+  !color: #999;
+  color: white;
 }
-
 #messages p {
   padding: 0;
   margin: 0;
-  font: 12px Helvetica, Arial;
-  padding: 5px 10px;
-  color:light-gray;
-  background: white;
+  font: 11px Helvetica, Arial;
+  padding: 0px 10px;
+  color: white;
 }
 #messages p b {
   display: inline-block;
   padding-right: 10px;
-  color:black;
- background: white;
+  color: white;
 }
 #messages p:nth-child(even) {
-  background: white;
-  color: gray;
+  !background: #fafafa;
+  background: black;
+  color: white;
 }
-
+#messages #nicknames {
+  background: black;
+  padding: 2px 4px 4px;
+  font: 11px Helvetica;
+  color: white;
+}
 #messages #nicknames span {
   color: #000;
-  color: blue;
+  color: white;
 }
 #messages #nicknames b {
   display: inline-block;
-  color: blue;
-  background: #999;
-  padding: 3px 6px;
+  background: black;
   margin-right: 5px;
-  -webkit-border-radius: 10px;
-  -moz-border-radius: 10px;
-  border-radius: 10px;
-  text-shadow: 0 1px 0 #666;
+  color: yellow;
 }
 #messages #lines {
-  height: 80px;
+  height: 140px;
   overflow: auto;
-  overflow-x:hidden;
+  overflow-x: hidden;
   overflow-y: auto;
-  background-color: white;
-  font-size: 18px;
-  color: black;
 }
 #messages #lines::-webkit-scrollbar {
   width: 6px;
   height: 6px;
-  color: blue;
 }
 #messages #lines::-webkit-scrollbar-button:start:decrement,
 #messages #lines ::-webkit-scrollbar-button:end:increment {
   display: block;
   height: 10px;
-  color: blue;
 }
 #messages #lines::-webkit-scrollbar-button:vertical:increment {
   background-color: #fff;
- color: blue;
 }
 #messages #lines::-webkit-scrollbar-track-piece {
   background-color: #fff;
@@ -148,33 +115,83 @@
   height: 50px;
   background-color: #ccc;
   -webkit-border-radius: 3px;
-  color: blue;
 }
 #messages #lines::-webkit-scrollbar-thumb:horizontal {
   width: 50px;
   background-color: #fff;
   -webkit-border-radius: 3px;
- color: black;
 }
 #send-message {
-  background: #fff;
+  background: gray;
   position: relative;
+  border-radius:5px;
 }
 #send-message input {
-  height: 30px;
-  line-height: 30px;
+  border: none;
+  height: 20px;
+  padding: 0 0px;
+  line-height: 20px;
   vertical-align: middle;
-  width: 300px;
-  border: 1px solid #ccc;
-  background-color:white;
-  color: black;
-  font: 15px Helvetica, Arial;
+  width: 330px;
+  background:gray;
+  color: yellow;
+  border-radius:5px;
 }
 #send-message input:focus {
   outline: 0;
 }
-#send-message button { 
- position: absolute;
-  top: 5px;
+#send-message button {
+  position: absolute;
+  top: 3px;
   right: 5px;
+}
+button {
+  margin: 0;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
+  display: inline-block;
+  text-decoration: none;
+  background: #43a1f7;
+  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #377ad0));
+  background: -webkit-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  background: -moz-linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  background: linear-gradient(top, #43a1f7 0%, #377ad0 100%);
+  border: 1px solid #2e70c4;
+  -webkit-border-radius: 16px;
+  -moz-border-radius: 16px;
+  border-radius: 16px;
+  color: #fff;
+  font-family: "lucida grande", sans-serif;
+  font-size: 11px;
+  font-weight: normal;
+  line-height: 1;
+  !padding: 3px 10px 5px 10px;
+  text-align: center;
+  text-shadow: 0 -1px 1px #2d6dc0;
+}
+button:hover,
+button.hover {
+  background: darker;
+  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #43a1f7), color-stop(1, #2e70c4));
+  background: -webkit-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  background: -moz-linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  background: linear-gradient(top, #43a1f7 0%, #2e70c4 100%);
+  border: 1px solid #2e70c4;
+  cursor: pointer;
+  text-shadow: 0 -1px 1px #2c6bbb;
+}
+button:active,
+button.active {
+  background: #2e70c4;
+  border: 1px solid #2e70c4;
+  border-bottom: 1px solid #2861aa;
+  text-shadow: 0 -1px 1px #2b67b5;
+}
+button:focus,
+button.focus {
+  outline: none;
+  -webkit-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
+  -moz-box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
+  box-shadow: 0 1px 0 0 rgba(255,255,255,0.40), 0 0 4px 0 #377ad0;
 }
\ No newline at end of file
--- a/www/m/css/nodescore.css	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/css/nodescore.css	Wed Aug 22 12:51:28 2012 +0000
@@ -63,7 +63,7 @@
 #comms{
     border-radius: 15px;
     height: 180px;
-    width: 550px;
+    width: 350px;
     margin: 0px;
     border: 1px solid gray;
     position: absolute;
@@ -71,6 +71,37 @@
     left: 14px;
     padding: 5px 5px 5px 5px ;
     color: black;
+    
+}
+
+#midcomms{
+    font-size: 3em; 
+    font-weight:bolder;
+    !display:inline;
+    text-align:center;
+    border-radius: 15px;
+    height: 180px;
+    width: 180px;
+    margin: 0px;
+    border: 1px solid gray;
+    position: absolute;
+    bottom: 80px;
+    left: 380px;
+    padding: 5px 5px 5px 5px ;
+    color: black;
+}
+#totalcountdown  {
+    font-size: 0.6em;
+    color:white;
+    position:absolute;
+    bottom: 0px;
+    text-align:center;
+    width:100%;
+}
+#count  {
+    font-size: 3em;
+    background:transparent;
+    
 }
 
 #preview{
@@ -119,7 +150,7 @@
     border-radius: 15px;
     margin: 0px;
     width: 100%;
-!height: 768px;
+height: 440px;
 }
 
 .magicsquare {
@@ -239,8 +270,8 @@
     border-radius: 15px;
     position: absolute; 
     width: 100%; height: 90%;
-    background-color:gray;
-    font-size: 36em; 
+    background-color:black;
+    font-size: 16em; 
     font-weight:bolder;
     display:inline;
     text-align:center;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/www/m/ctrl.html	Wed Aug 22 12:51:28 2012 +0000
@@ -0,0 +1,139 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <link href="css/nodescore.css" rel="stylesheet">
+  <link href="css/chat.css" rel="stylesheet">
+  <link href="css/menu.css" rel="stylesheet">
+  
+  <script src="js/jquery-1.7.1.min.js"></script>  
+  <script src="/socket.io/socket.io.js"></script>
+  <script src="js/nodescore-client.js"></script>
+  <script src="js/controlseq.js"></script>
+
+</head>
+
+<body onload='document.getElementById("countinnumber").style.visibility="hidden";'>
+
+  <input type="hidden" id="group" value='1'> 
+
+
+  
+  <div class="outermaster"> 
+    <h1 style="position:absolute; background:transparent; left:24px; top:14px;">l i v e :</h1>
+    <div id="countinnumber"></div>    
+    <div id="livez"> 
+	<div class="outersquare">      
+	  <div>
+	    <p class="magicsquare" id="1magicsquare0"></p>
+	    <p class="magicsquare" id="1magicsquare1"></p>
+	    <p class="magicsquare" id="1magicsquare2"></p>
+	    <p class="magicsquare" id="1magicsquare3"></p>
+	    <p class="magicsquare" id="1magicsquare4"></p>
+	    <p class="magicsquare" id="1magicsquare5"></p>
+	  </div>
+	  <br><br><br><br>
+	  <div>
+	    <p class="magicsquare" id="2magicsquare0"></p>
+	    <p class="magicsquare" id="2magicsquare1"></p>
+	    <p class="magicsquare" id="2magicsquare2"></p>
+	    <p class="magicsquare" id="2magicsquare3"></p>
+	    <p class="magicsquare" id="2magicsquare4"></p>
+	    <p class="magicsquare" id="2magicsquare5"></p>
+	  </div>
+	  <br><br><br><br>
+	  <div>
+	    <p class="magicsquare" id="3magicsquare0"></p>
+	    <p class="magicsquare" id="3magicsquare1"></p>
+	    <p class="magicsquare" id="3magicsquare2"></p>
+	    <p class="magicsquare" id="3magicsquare3"></p>
+	    <p class="magicsquare" id="3magicsquare4"></p>
+	    <p class="magicsquare" id="3magicsquare5"></p>
+	  </div>
+	  <br><br><br><br>
+	  <div>
+	    <p class="magicsquare" id="4magicsquare0"></p>
+	    <p class="magicsquare" id="4magicsquare1"></p>
+	    <p class="magicsquare" id="4magicsquare2"></p>
+	    <p class="magicsquare" id="4magicsquare3"></p>
+	    <p class="magicsquare" id="4magicsquare4"></p>
+	    <p class="magicsquare" id="4magicsquare5"></p>
+	  </div>
+	</div>
+	  <br><br><br><br>      <br><br><br><br>
+	  
+	  <input type="button" value="START" onclick="startSeq();" />
+	  <input type="button" value="STOP" onclick="stopSeq();" />
+	  <input type="button" value="RESET" onclick="resetSeq();" />
+	  
+	  <br><br>
+
+
+    </div>        </div>    
+    
+    <div id="comms"> 
+      <div id="chat">
+	<div id="nickname">
+	  <form id="set-nickname" class="wrap">
+	    <p>Please type in your nickname and press enter.</p>
+	    <input id="nick">
+	    <p id="nickname-err">Nickname already in use</p>
+	  </form>
+	</div>
+	<div id="connecting">
+	  <div class="wrap">Connecting to socket.io server</div>
+	</div>
+	<div id="messages">
+	  <div id="nicknames"></div>
+	  <div id="lines"></div>
+	</div>
+	<form id="send-message">
+	  <input id="message">
+	  <button>Send</button>
+	</form>
+      </div>
+    </div>    
+      
+    <div id="midcomms"></div>
+    <div id="preview">
+    </div>    
+    
+    <div class="footdata">
+      
+      <div class="metrocase" id="metro">
+	<div id="metronome0"></div>
+	<div id="metronome1"></div>
+	<div id="metronome2"></div>
+	<div id="metronome3"></div>
+      </div>
+      
+      <div id="current">GROUP: 1</div>    
+      <div id="client_latency">Latency: 0ms</div>     
+      <div id="datetime"></div>
+      <div id="client_chronometer"  style="z-index: 2;">00:00:00.0</div>    
+      
+    </div>
+
+  </div>
+
+    <ul id="nav"> 
+      <li><a href="javascript:void(0)">Menu</a>
+	<ul>
+	  <li><a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='3'">SELECT PART:</a>
+	    <ul>
+	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='1'; $('div#current').text('GROUP 1').text='1'">GROUP 1</a>
+	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='2'; $('div#current').text('GROUP 2').text='2'">GROUP 2</a>
+	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='3'; $('div#current').text('GROUP 3').text='3'">GROUP 3</a>
+	      <a href="javascript:void(0)" onclick="javascript:document.getElementById('group').value='4'; $('div#current').text('GROUP 4').text='4'">GROUP 4</a>
+	    </ul>
+	  </li> 
+	  <li><a href="http://nodescore.kiben.net">help</a></li>
+	  <li><a href="http://nodescore.kiben.net:8889/m/controls.html" target="_blank">control panel</a></li>
+	</ul>
+      </li>
+    </ul>
+
+ 
+
+
+</body>
+</html>
--- a/www/m/js/nodescore-client.js	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/js/nodescore-client.js	Wed Aug 22 12:51:28 2012 +0000
@@ -19,7 +19,7 @@
     $(".metrocase > div").each(function(){$(this).stop()});
     $(".metrocase > div").each(function(){$(this).css('background-color', beatcolor)});
     $(".metrocase > div").each(function(){$(this).text(" ")});
-    $(".metrocase > div").each(function(){$(this).animate({opacity: 0.6},
+    $(".metrocase > div").each(function(){$(this).animate({opacity: 1},
 							  50,
 							  function() { $(this).animate({opacity:0.0}); }
 							 );
@@ -57,19 +57,35 @@
 function countinClient(groupID, currentseconds,mm,text,colour,background){
     var groupPage=document.getElementById('group').value
     if (groupID == groupPage) {
-	document.getElementById("countinnumber").style.visibility="visible";
-	document.getElementById("countinnumber").style.visibility="visible";
-	$("#countinnumber").text(currentseconds);
-	$("#countinnumber").css('background-color', background);
+	document.getElementById("count").style.visibility="visible";
+	document.getElementById("count").style.visibility="visible";
+
+	$("#counttitle").text(text);
+	$("#count").text(currentseconds);
+	//$("#cnt").text(currentseconds);
+
+	$("#count").css('background-color', background);
 	
-	document.getElementById("countinnumber").style.color=colour;
+	document.getElementById("count").style.color=colour;
 
-	if ( currentseconds == 0) {
-	    document.getElementById("countinnumber").style.visibility='hidden';
-	}
+//	if ( currentseconds == 0) {
+	    //document.getElementById("midcomms").style.visibility='hidden';
+//	}
+    }}
+/////////////////////////////////////////////////
+
+/////////////////////////////////////////////////
+// countdown to change
+
+socket.on("counterText", counterText);
+function counterText(groupID, currentseconds,text){
+    var groupPage=document.getElementById('group').value
+    if (groupID == groupPage) {
+	console.log()
+	$("#totalcountdown").text(text);	
     }}
 
-/////////////////////////////////////////////////
+///////////////////////////////////////
 
 function pageFlip(unit) {
     console.log("flipping page:"+ unit);
@@ -77,7 +93,6 @@
 }
 
 
-
 /////////////////////////////////////////////////
 
 // call the fancy jquery functions
@@ -112,7 +127,8 @@
 
 ////////////////////////////////////////////////
 
-/* 
+/* commented out for now as interferes with chat
+need to introduce metakey...manyana... not so usefull anyway really... 
 
 keyboard controls 
 +++++++++++++++++++++++++
@@ -122,7 +138,7 @@
 s to toggle visibilty of stopwatch
 h to hide all above
 
-*/
+
 
 function toggle_visibility(id) {
     var e = document.getElementById(id);
@@ -158,6 +174,8 @@
 }
     });
 
+*/
+
 ////////////////////////////////////////////////
 // this needs to have a variable to define the websocket
 // otherwise we will pings from all sockets connected
@@ -177,4 +195,64 @@
 
 function getLatencies(x) { socket.emit("getLatencies", x); }
 
-//////////////////////////////////////////////
\ No newline at end of file
+//////////////////////////////////////////////
+
+
+socket.on('connect', function () {
+    $('#chat').addClass('connected');
+});
+
+socket.on('announcement', function (msg) {
+    $('#lines').append($('<p>').append($('<em>').text(msg)));
+});
+
+socket.on('nicknames', function (nicknames) {
+    $('#nicknames').empty().append($('<span>Online: </span>'));
+    for (var i in nicknames) {
+	$('#nicknames').append($('<b>').text(nicknames[i]));
+    }
+});
+
+socket.on('user message', message);
+socket.on('reconnect', function () {
+    $('#lines').remove();
+    message('System', 'Reconnected to the server');
+});
+
+socket.on('reconnecting', function () {
+    message('System', 'Attempting to re-connect to the server');
+});
+
+socket.on('error', function (e) {
+    message('System', e ? e : 'A unknown error occurred');
+});
+
+function message (from, msg) {
+    $('#lines').append($('<p>').append($('<b>').text(from), msg));
+}
+
+// dom manipulation
+$(function () {
+    $('#set-nickname').submit(function (ev) {
+	socket.emit('nickname', $('#nick').val(), function (set) {
+	    if (!set) {
+		clear();
+		return $('#chat').addClass('nickname-set');
+	    }
+	    $('#nickname-err').css('visibility', 'visible');
+	});
+	return false;
+    });
+
+    $('#send-message').submit(function () {
+	message('me', $('#message').val());
+	socket.emit('user message', $('#message').val());
+	clear();
+	$('#lines').get(0).scrollTop = 10000000;
+	return false;
+    });
+
+    function clear () {
+	$('#message').val('').focus();
+    };
+});
\ No newline at end of file
--- a/www/m/score.html	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/score.html	Wed Aug 22 12:51:28 2012 +0000
@@ -8,6 +8,8 @@
   <script src="js/jquery-1.7.1.min.js"></script>  
   <script src="/socket.io/socket.io.js"></script>
   <script src="js/nodescore-client.js"></script>
+
+
 </head>
 
 <body onload='document.getElementById("countinnumber").style.visibility="hidden";'>
@@ -20,7 +22,36 @@
     <h1 style="position:absolute; background:transparent; left:24px; top:14px;">l i v e :</h1>
     <div id="countinnumber"></div>    
     <div id="live"> </div>    
-    <div id="comms"></div>    
+    
+    <div id="comms"> 
+      <div id="chat" title="type here to chat with others connected to network" >
+	<div id="nickname" title="type your login name and press enter" >
+	  <form id="set-nickname" class="wrap">
+	    <p>LOGIN:</p>
+	    <input id="nick">
+	    <p id="nickname-err">Nickname already in use</p>
+	  </form>
+	</div>
+	<div id="connecting">
+	  <div class="wrap">Connecting to socket.io server</div>
+	</div>
+	<div id="messages">
+	  <div id="nicknames"></div>
+	  <div id="lines"></div>
+	</div>
+	<form id="send-message">
+	  <input id="message">
+	  <button>Send</button>
+	</form>
+      </div>
+    </div>    
+      
+    <div id="midcomms">
+      <h2 id="counttitle" style="padding-top:19px;">...</h2>
+      <p id="count" style="color:white">...</p>
+      <div id="totalcountdown">...</div>
+    </div>    
+    
     <div id="preview">
     </div>    
     
--- a/www/m/svg/12_7_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/12_7_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,29 +1,61 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 14.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 13.9138) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 16.6808)" x="11.7110" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="18.3359" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="18.3359" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="25.4609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="25.4609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="25.5787" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="32.3132" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="32.4310" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="39.4381" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="39.5559" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="46.5631" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="46.6809" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.7528, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.3027, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(40.1778, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.6278, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.5256, 15.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9006, 16.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1648" y2="-0.0000" stroke-dasharray="0.406400191485423,0.59059515579403"/>
+<line transform="translate(56.7277, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(33.3528, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.5028, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.2006, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.6506, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 12</tspan>
 </text>
--- a/www/m/svg/13_6_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/13_6_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,30 +1,65 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.9138) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 16.6808)" x="11.7026" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="11.7026" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="18.8193" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="18.8193" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="18.9371" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="25.6632" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="25.7810" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="32.7798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="32.8976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="39.8965" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="40.0143" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.5798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="46.6976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.7528, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(48.7694, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.0861, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(33.5195, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.0089, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.8923, 15.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1731" y2="-0.0000" stroke-dasharray="0.406455747040979,0.590724785423659"/>
+<line transform="translate(56.7361, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.9695, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.7028, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(40.6361, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.8528, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.5589, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 13</tspan>
 </text>
--- a/www/m/svg/14_1_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/14_1_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,27 +1,48 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 15.2228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 12.5874)" x="11.9811" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.9811" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="12.0989" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="18.6261" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.0211" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.0211" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="31.9829" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="31.9829" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.1007" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="38.6279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="38.6279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.0230" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.0230" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.1407" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.2126, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.8175, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.0207, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.1707, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8157, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.7626, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(33.1558, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(34.1725, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.2108, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4571, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 14</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/15_0_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/15_0_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,45 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.3204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 12.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="11.8956" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="18.2053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.2053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.0149" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="31.5745" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="31.5745" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="38.8842" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="38.8842" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.0019" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.1938" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.3116" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3834, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.6238, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.0738, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.3949, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0853, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.7642, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.9334, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.2045, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 15</tspan>
 </text>
--- a/www/m/svg/16_2_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/16_2_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.6411)" x="18.1229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6411)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6411)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 12.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 8.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4658, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.9178, 12.6411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 9.6411) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.3125, 14.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.1309, 13.1411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0441, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0993, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.3678, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.3158, 13.6411) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.5809, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 16</tspan>
 </text>
--- a/www/m/svg/17_3_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/17_3_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3209, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 13.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(40.9800, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7074, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1165, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.3892, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.8709, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(32.9392, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.0483, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4950, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 17</tspan>
 </text>
--- a/www/m/svg/18_4_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/18_4_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +1,47 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 12.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="18.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="18.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="25.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="25.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="25.4287" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="32.5526" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="32.6704" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="39.5215" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="39.6393" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="46.4476" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.5028, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(48.5194, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.5611, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(41.7111, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.2589, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.0506, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0173, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.7422, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.2922, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.5006, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 18</tspan>
 </text>
--- a/www/m/svg/19_5_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/19_5_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +1,47 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 11.8204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="11.8672" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="18.3984" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="24.6797" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="24.6797" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="31.9609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="31.9609" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="32.0787" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="39.2421" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="39.3599" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="46.2506" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="46.3684" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4403, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.9818, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.5881, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0569, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(32.7005, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.1505, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.4318, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.2902, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(26.8693, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 19</tspan>
 </text>
--- a/www/m/svg/20_5_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/20_5_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,28 +1,53 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 11.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 12.0874)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="18.9020" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="19.0198" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="26.0600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="26.0600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="26.1778" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="33.0477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="33.1655" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="39.7724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="39.7724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="39.8902" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="46.6148" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.6700, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(48.6867, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.9620, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 14.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 17.0054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(34.0873, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(21.0917, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9337, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.7723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.0987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1318" y2="-0.0000" stroke-dasharray="0.406179946064783,0.590081249812537"/>
+<line transform="translate(56.6947, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.2373, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.7997, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(40.9453, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.2497, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.6417, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 20</tspan>
 </text>
--- a/www/m/svg/21_4_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/21_4_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,59 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 14.3204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 16.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0874)" x="18.6229" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0874)" x="25.1413" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="31.9097" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="39.1781" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="39.2959" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 21.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4658, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.9178, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.3678, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 20.0874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.8125, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0441, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0993, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.3158, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.3309, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 21</tspan>
 </text>
--- a/www/m/svg/22_3_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/22_3_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,34 +1,61 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.3162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.3162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.3162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.3162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.3162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.3162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 17.3162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 14.6808)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="11.7440" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="11.8618" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="18.4687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="18.4687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="18.5865" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="25.6267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="25.6267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="25.7445" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="32.7847" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="32.9025" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="39.5094" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="39.5094" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="39.6272" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="46.4970" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="46.6148" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.5367, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(48.6867, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.6990, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.6583, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.7837, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(13.9337, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 11.3162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 20.4253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1318" y2="-0.0000" stroke-dasharray="0.406179946064784,0.590081249812537"/>
+<line transform="translate(56.6947, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.9744, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.3663, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(33.5243, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.8163, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.6824, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(19.6417, 12.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 22</tspan>
 </text>
-<path transform="translate(24.3513, 11.3162) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/23_2_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/23_2_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,31 +1,50 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.2228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 11.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="12.0051" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="18.6886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.2399" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="25.2399" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="38.9091" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="39.0269" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="46.3282" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4001, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.0821, 10.5850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.0988, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 17.9078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.9270, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0770, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.5013, 20.0011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9885" y2="-0.0000" stroke-dasharray="0.405224672963399,0.587852279242641"/>
+<line transform="translate(56.5514, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.2308, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.9501, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.4295, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8782, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 23</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/24_0_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/24_0_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,33 +1,55 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.9162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 14.5808)" x="11.9070" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5808)" x="12.0248" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5808)" x="18.7279" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5808)" x="25.8786" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5808)" x="25.8786" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5808)" x="25.9964" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5808)" x="32.6995" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5808)" x="39.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5808)" x="39.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5808)" x="46.2889" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 19.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3608, 14.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.2101, 13.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.5808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.6466, 13.5808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0966, 13.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9688" y2="-0.0000" stroke-dasharray="0.405093535664484,0.587546292211839"/>
+<line transform="translate(56.5317, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.8892, 11.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.9182, 12.5808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(47.2108, 14.0808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.0682, 12.5808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9176, 12.0808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 24</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/25_1_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/25_1_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +1,58 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 14.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="11.9823" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="12.1001" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="18.6285" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="25.2748" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="32.5007" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="32.6185" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="39.6243" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="39.7420" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="46.0205" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.2102, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.6639, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.8182, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.7219, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.1719, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.5404, 11.9874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.6904, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8139, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.4644, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 25</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/26_6_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/26_6_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +1,26 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.2495, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.1729, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(14.1523, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.0288, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.6229, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.2463, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.4054, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 26</tspan>
 </text>
--- a/www/m/svg/27_7_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/27_7_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,21 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.3228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 10.9874)" x="26.4075" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="39.3724" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4200, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.5620, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 14.9874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.3583, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.3293, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0670, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.7707, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4033, 11.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.4793, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9083, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 27</tspan>
 </text>
--- a/www/m/svg/28_7_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/28_7_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 14.8284)" x="46.4139" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 13.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.8284)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4858, 14.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.3976, 13.3284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.8284) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(33.4392, 13.8284) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.1222, 12.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0341, 11.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.3358, 14.8284) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.8892, 13.8284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.6307, 12.3284) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9722, 12.8284) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 28</tspan>
 </text>
--- a/www/m/svg/29_6_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/29_6_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,30 +1,51 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 8.8228)" x="23.5975" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 13.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 10.8228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.9438" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.8630" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.9808" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="32.6030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.8430" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.9608" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.5227, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.0327, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 16.5078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.5657, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0157, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 15.7111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/>
-<line transform="translate(45.1610, 15.7111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 15.7111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.6693, 18.6011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0497" y2="-0.0000" stroke-dasharray="0.405633225529568,0.588805568563702"/>
+<line transform="translate(56.6127, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(28.0526, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.7926, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.9026, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(40.5826, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(19.9353, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(21.0853, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 29</tspan>
 </text>
-<path transform="translate(24.2193, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/30_1_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/30_1_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,28 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.4138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.4138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.4138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.4138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.4138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 13.4138) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.2158, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.6724, 13.1808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(40.8224, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.5625, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1691, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.5229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8963" y2="-0.0000" stroke-dasharray="0.404610496008667,0.586419199681598"/>
+<line transform="translate(56.4593, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(33.5993, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.7658, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.2059, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 30</tspan>
 </text>
--- a/www/m/svg/31_0_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/31_0_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.8228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.6443)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.2033, 12.1443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(48.6533, 12.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.4787, 12.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.6443) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.6693, 14.3783)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1250, 11.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.2503, 10.6443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.7003, 10.6443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.1540, 11.1443) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(35.3040, 11.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.8497, 10.1443) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.2997, 10.1443) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 31</tspan>
 </text>
-<path transform="translate(24.2193, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/32_2_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/32_2_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,25 +1,48 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 10.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 12.8228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 13.4874)" x="11.8489" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="11.8489" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="11.9667" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="19.1119" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="19.2297" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="26.1021" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="26.2199" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="32.9317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="33.0495" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="39.1946" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="46.2872" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="46.4050" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4768, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.3842, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.3015, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.5886, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0386, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.1213, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.1417, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.1047, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.2917, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.8515, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(47.3268, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 32</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/33_3_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/33_3_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.8204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3319, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.2526, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.2693, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 11.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 14.5054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.4464, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1110, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 17.6723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 13.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 13.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 13.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.5987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9544" y2="-0.0000" stroke-dasharray="0.404997402484301,0.587321981458078"/>
+<line transform="translate(56.5173, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 16.8757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.3672, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.1819, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.0318, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9964, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 33</tspan>
 </text>
--- a/www/m/svg/34_4_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/34_4_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,32 +1,44 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.8162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.8162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.8162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.8162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 13.1808)" x="12.0051" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.1808)" x="26.4899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.1808)" x="26.6077" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4001, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8488, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.5308, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.9270, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0770, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 11.3162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.9253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9885" y2="-0.0000" stroke-dasharray="0.405224678575072,0.587852292336543"/>
+<line transform="translate(56.5514, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.5475, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.2295, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.6796, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9282, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.3783, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 34</tspan>
 </text>
-<path transform="translate(24.3513, 11.3162) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/35_5_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/35_5_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,23 +1,38 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 13.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.8204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.0874)" x="11.7623" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="11.7623" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="25.3649" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="46.4605" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="46.5783" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(47.2001, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(48.6501, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.4571, 11.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.0874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 15.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1283, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9520, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.7308, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.4738, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.2808, 12.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.5545, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.6782, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 35</tspan>
 </text>
--- a/www/m/svg/36_5_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/36_5_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,49 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 14.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.9525" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="19.0703" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="32.4894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="32.4894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.6071" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="39.0078" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="39.0078" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="46.3940" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4658, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.1974, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(33.2290, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.1422, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0441, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.0158, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.6790, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.4106, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9922, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 36</tspan>
 </text>
--- a/www/m/svg/37_4_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/37_4_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5908, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.1053, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 10.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 13.4856)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(26.4434, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(13.9816, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6875, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.3493, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.5553, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4408, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.8934, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 37</tspan>
 </text>
--- a/www/m/svg/38_3_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/38_3_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.5908, 11.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(48.6075, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.6933, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1708, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9732, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.8160, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8433, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.3660, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.6184, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.7208, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 38</tspan>
 </text>
--- a/www/m/svg/39_2_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/39_2_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,21 +1,46 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.3228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 12.5874)" x="18.4187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.4187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.5850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.5850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.7028" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="32.5810" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.5810" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.6988" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.4318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.5982" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.2200, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(48.6700, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.4870, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(41.5037, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6083, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.3247, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(13.9420, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.7707, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.6207, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.7747, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 39</tspan>
 </text>
--- a/www/m/svg/40_0_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/40_0_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,28 +1,44 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 11.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.0788" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="25.0788" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.5275" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="38.9906" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3408, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.1803, 11.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 17.0054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.9375, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1066, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 16.2087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.0987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9588" y2="-0.0000" stroke-dasharray="0.405027162675333,0.58739142190382"/>
+<line transform="translate(56.5218, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(33.1493, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.5993, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.1908, 12.0850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.2684, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 40</tspan>
 </text>
--- a/www/m/svg/41_1_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/41_1_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,23 +1,48 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 12.8204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 12.5874)" x="11.7836" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.7836" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="18.9812" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.9812" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="19.0990" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="26.0084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="26.0084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="26.1262" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="32.7727" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.7727" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.8905" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="39.9703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="40.0881" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.4179" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.4179" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.6075, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.1599, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 15.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1708, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.0481, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(13.9732, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.7099, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.9623, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.9457, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.1981, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.7208, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 41</tspan>
 </text>
--- a/www/m/svg/42_6_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/42_6_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,23 +1,49 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 13.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="18.7479" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.9084" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="26.0262" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.2393" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="39.5703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="39.5703" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="39.6881" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3408, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.3099, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.7599, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(26.9481, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.1066, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9375, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.4290, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.0981, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 42</tspan>
 </text>
--- a/www/m/svg/43_7_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/43_7_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,34 +1,49 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 17.4162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 14.6808)" x="11.8857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="11.8857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="12.0035" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="19.1854" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="19.3032" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="25.4850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="32.7321" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4033, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.9533, 15.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.1037, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.6253, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0753, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.3750, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9901" y2="-0.0000" stroke-dasharray="0.405235501620339,0.587877546108833"/>
+<line transform="translate(56.5530, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.8040, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.6540, 14.1808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.6747, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9250, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 43</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/44_7_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/44_7_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +1,42 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 14.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 13.8228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.5850)" x="11.8248" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.9426" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="18.5636" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.3691" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="25.4869" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="39.0967" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(47.0751, 12.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(48.5251, 12.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.2863, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.7532, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.5644, 10.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0145, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.3475, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.7975, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.5420, 10.5850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(27.5587, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.3812, 27.1882)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 44</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/45_6_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/45_6_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 14.3204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 11.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="11.8873" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.1886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.1886" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.0412" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4001, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.0821, 12.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.3782, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.2295, 12.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0770, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.2308, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.5321, 12.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.3834, 12.0850) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(27.6795, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 45</tspan>
 </text>
--- a/www/m/svg/46_1_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/46_1_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,28 +1,65 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 13.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 18.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 15.8228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 21.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 16.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="11.9739" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="12.0917" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="19.0891" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="19.2069" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="26.0437" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="26.1615" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="32.4317" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="39.6493" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="39.7670" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="46.0372" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.2268, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8389, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 20.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.2788, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.7136, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.1636, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.6213, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.2167, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.2334, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.6889, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(20.1288, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 46</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/47_0_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/47_0_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +1,42 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.2228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 13.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="12.1285" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="24.8600" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="32.1143" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="32.2321" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="38.5390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="46.0815" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.1533, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.7287, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.0503, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.2003, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6250, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.7033, 13.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(33.1540, 12.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.3040, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.0497, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4571, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 47</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/48_2_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/48_2_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,33 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.9162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 13.1808)" x="12.1044" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.1808)" x="12.2222" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(47.9658, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.6178, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.8441, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.2941, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.7713" y2="-0.0000" stroke-dasharray="0.410515238194617,0.600196931448816"/>
+<line transform="translate(56.3343, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.0993, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.8158, 14.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.3309, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8125, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 48</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/49_3_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/49_3_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,31 +1,41 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 15.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.4162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 13.1808)" x="20.0011" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.1808)" x="20.1189" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3376, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.0051, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.6693, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.4082, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.8582, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/>
-<line transform="translate(45.1610, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.6693, 17.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9572" y2="-0.0000" stroke-dasharray="0.405016345241738,0.587366181225432"/>
+<line transform="translate(56.5201, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.4225, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.0733, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(29.0900, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7408, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(22.1908, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 49</tspan>
 </text>
-<path transform="translate(24.2193, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/50_4_6.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/50_4_6.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,31 +1,52 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.2228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.8790" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="11.9968" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="18.6719" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.9649" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="26.0827" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="32.5079" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.3675" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.4853" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.2271" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.3449" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4168, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4001, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(40.5405, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.5571, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 17.9078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.9186, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0686, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 17.1111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.5013, 20.0011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9968" y2="-0.0000" stroke-dasharray="0.405280228518955,0.58798190887227"/>
+<line transform="translate(56.5597, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.6975, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.7045, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.1545, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8616, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 50</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/51_5_5.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/51_5_5.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,29 +1,51 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 10.7228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.8591" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="18.9769" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="25.6319" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.9048" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="33.0226" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="39.4277" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.2673" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.3851" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4569, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4403, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.6174, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 16.4078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.8985, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0485, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 15.6111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5288" y2="-0.0000" stroke-dasharray="0.409381457556394,0.597551443292963"/>
-<line transform="translate(45.0917, 15.6111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 15.6111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5307, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5307, 18.5011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0169" y2="-0.0000" stroke-dasharray="0.405414069150967,0.5882942036803"/>
+<line transform="translate(56.5798, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.0945, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.6445, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.8216, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.8987, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(21.0487, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4761, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 51</tspan>
 </text>
-<path transform="translate(24.3807, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/52_5_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/52_5_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 9.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 14.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.0157)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3834, 11.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 11.0157) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 10.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(41.0738, 11.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.3949, 13.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0853, 12.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.5142, 10.5157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.9334, 11.0157) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(33.0642, 10.5157) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.2045, 12.0157) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 52</tspan>
 </text>
--- a/www/m/svg/53_4_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/53_4_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +1,46 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 12.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.2228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.2228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 17.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.2228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 14.2228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 18.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 13.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="11.9581" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="12.0759" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="18.3303" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="25.7024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="25.7024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="25.8202" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="32.3245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="32.3245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="39.6967" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="39.8145" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.4874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.2584, 13.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.4363, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.4874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.3319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.9978, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.1478, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.5199, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.4420, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.5142, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8863, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.8920, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 53</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/54_3_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/54_3_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +1,43 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 8.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 12.3228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 12.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.1163" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.1163" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="32.3764" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="32.3764" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="32.4942" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="39.4661" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.4661" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.5839" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.4107" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4825, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.5058, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.3228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.5458, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0357, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.1160, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.5660, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.6558, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4658, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(27.3059, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 54</tspan>
 </text>
--- a/www/m/svg/55_2_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/55_2_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 12.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 8.6411)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 13.6411)" x="33.1988" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6411)" x="39.9318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.6700, 12.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.0037, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 9.6411) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 11.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.6693, 13.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1083, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.2420, 12.6411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.6920, 12.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.2707, 13.6411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.8247, 13.1411) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.1207, 13.6411) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(40.9870, 13.6411) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.2747, 13.1411) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 55</tspan>
 </text>
-<path transform="translate(24.2193, 11.3765) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/56_0_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/56_0_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,27 +1,51 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.3228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 12.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="11.8461" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="11.9639" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="18.9358" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.9358" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="19.0536" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.7626" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.7626" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.8804" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="33.0227" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="33.1405" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="39.5328" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.5328" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4825, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.7224, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1255, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.5857, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0357, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(35.2123, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.9356, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(33.7623, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.9522, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9755, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 56</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/57_1_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/57_1_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,26 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.1959, 11.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.0925, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.5426, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.0850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 14.0614)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(14.1790, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8324, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 16.2700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 13.2648)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 13.2648)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 13.2648)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 7.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.1548)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8864" y2="-0.0000" stroke-dasharray="0.404544117407844,0.586264316279678"/>
+<line transform="translate(56.4493, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 15.4733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.1392, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.7358, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 57</tspan>
 </text>
--- a/www/m/svg/58_6_7.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/58_6_7.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,33 +1,44 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.9162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 15.9162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 13.1808)" x="12.0107" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.1808)" x="12.1285" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.1808)" x="18.4354" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.1808)" x="25.8075" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.1808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.1533, 15.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.2787, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.7287, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 17.1808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.7503, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.2003, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.5013, 19.0253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.8651" y2="-0.0000" stroke-dasharray="0.404402162675333,0.585933088570487"/>
+<line transform="translate(56.4280, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(34.3040, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.7293, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.8793, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6250, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 58</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/59_7_4.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/59_7_4.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,52 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 13.8204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="11.9169" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="18.4979" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5850)" x="25.3288" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="32.4893" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5850)" x="32.6071" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="38.8203" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5850)" x="46.1512" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5850)" x="46.2690" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.3408, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.0099, 11.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.5850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.6875, 10.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1066, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.6790, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.8908, 11.5850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(33.5290, 10.5850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(27.5184, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 59</tspan>
 </text>
--- a/www/m/svg/60_7_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/60_7_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,29 +1,50 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 9.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 11.5874)" x="19.5588" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="33.1030" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="33.2208" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="39.6555" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.7080" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.8258" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.8977, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.4477, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.8452, 9.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 13.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 15.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.1282, 13.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.5782, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/>
-<line transform="translate(45.1610, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.6693, 17.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.2372" y2="-0.0000" stroke-dasharray="0.406883236752913,0.591722261418172"/>
+<line transform="translate(56.8002, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.2926, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.3629, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.1426, 10.5874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.5129, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.1807, 11.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.6307, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 60</tspan>
 </text>
-<path transform="translate(24.2193, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/61_6_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/61_6_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,28 +1,65 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.8228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.8228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 20.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 15.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="12.0206" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="12.1384" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="18.7053" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.5874)" x="25.3899" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="31.8245" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="39.2592" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="39.3770" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="45.9438" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.1334, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 17.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 20.9319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(39.9988, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(41.4488, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.7603, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.2103, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.8949, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0142, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.5795, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 61</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/62_1_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/62_1_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4658, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.0474, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.3765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 14.7652)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.3125, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0441, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.6493, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(35.0994, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.1974, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.8309, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.8625, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 62</tspan>
 </text>
--- a/www/m/svg/63_0_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/63_0_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,27 +1,51 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 9.8204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 13.0850)" x="11.8544" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0850)" x="19.2407" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0850)" x="26.2209" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0850)" x="26.3387" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0850)" x="32.9894" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.0850)" x="39.7578" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0850)" x="46.2762" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 18.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.0850)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4658, 9.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.9474, 9.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 15.0850) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<text transform="translate(7.6969, 15.5054)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.3125, 13.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.0441, 13.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 20.7700)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 14.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 14.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 14.7087)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 17.5987)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0213" y2="-0.0000" stroke-dasharray="0.405443829342,0.588363644126043"/>
+<line transform="translate(56.5843, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 19.9733)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.1790, 10.5850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.2606, 12.0850) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.4106, 12.0850) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.8625, 13.0850) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 63</tspan>
 </text>
--- a/www/m/svg/64_2_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/64_2_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,23 +1,44 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 13.3204) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 12.4874)" x="12.0024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="12.0024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="19.2483" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="19.2483" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="19.3661" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="25.9147" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="32.3310" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="32.3310" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="39.3140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.4874)" x="39.4318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.4874)" x="45.9804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.4874)" x="45.9804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.4874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.1700, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.4870, 10.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.5037, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.4874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.4380, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.1920, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.5207, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.1043, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.2880, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.3812, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 64</tspan>
 </text>
--- a/www/m/svg/65_3_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/65_3_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,66 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 17.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 12.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.3204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 14.3204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 16.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="19.0693" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="19.1871" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="26.3109" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="26.4287" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="33.3976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="40.2059" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 21.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5194, 12.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.2778, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.4295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.2589, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.0506, 11.9874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0173, 12.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.2611, 11.9874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(35.4695, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.3195, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.5006, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.8089, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 65</tspan>
 </text>
--- a/www/m/svg/66_4_0.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/66_4_0.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,19 +1,26 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 11.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 7.3765)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 8.3765) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(2.6969, 10.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8765) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(48.1334, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(39.9988, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(20.8949, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(14.2103, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.4488, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0142, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.5795, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 66</tspan>
 </text>
--- a/www/m/svg/67_5_3.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/67_5_3.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,34 +1,67 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 17.4162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<rect transform="translate(1.8969, 16.6808)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="11.8276" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="11.9454" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="18.7966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="18.9144" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="26.0382" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="26.1560" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="33.2798" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="33.3976" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="40.0881" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="40.2059" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 16.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 15.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.3298" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 21.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 20.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5194, 14.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.2778, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0195, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 20.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.5673, 14.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0173, 14.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.9862, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0481" y2="-0.0000" stroke-dasharray="0.405622408095973,0.588780327885313"/>
+<line transform="translate(56.6111, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.4695, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.7778, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.2278, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.2611, 13.6808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(19.8362, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4192, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 67</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/68_5_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/68_5_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,25 +1,38 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 14.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.7228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 9.7228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 13.7228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 17.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 12.5874)" x="12.0759" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="25.2024" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="38.6966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="38.6966" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.5874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.5874)" x="46.0688" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.5874)" x="46.1866" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.2584, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.5874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.5013, 9.2228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 16.8319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(40.8863, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(12.9978, 12.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.1478, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.5199, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0142, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(46.8084, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(27.3920, 12.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 68</tspan>
 </text>
-<path transform="translate(24.3513, 9.2228) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
-c-14 0 -25 13 -25 27z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/69_4_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/69_4_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,31 +1,55 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 10.3228)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.3228)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 15.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 12.0874)" x="11.8065" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="11.9243" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="19.0270" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="19.0270" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="19.1448" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="26.0772" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="26.1950" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="32.8644" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="32.8644" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="32.9822" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="39.6515" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="39.7693" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.0874)" x="46.3720" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 17.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.0874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5617, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.8412, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.0373, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 14.0874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 18.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.5462, 10.5874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(13.9962, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.2167, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 19.7723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 17.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 17.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 17.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.5013, 20.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0693" y2="-0.0000" stroke-dasharray="0.405763273786445,0.589109014496413"/>
+<line transform="translate(56.6322, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 18.9757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.0540, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.1168, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(28.2668, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.8245, 10.5874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(19.7667, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 69</tspan>
 </text>
-<path transform="translate(24.0513, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/70_3_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/70_3_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,29 +1,38 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 9.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5617, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.5450, 11.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(41.7745, 9.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(7.6969, 15.0078)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.2962, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.7462, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 16.2723)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8vb</tspan>
 </text>
-<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5981" y2="-0.0000" stroke-dasharray="0.410011291246834,0.599021055237322"/>
-<line transform="translate(45.1610, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 14.2111)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<text transform="translate(25.6693, 17.1011)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.0693" y2="-0.0000" stroke-dasharray="0.405763273786445,0.589109014496413"/>
+<line transform="translate(56.6322, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 15.4757)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.0540, 10.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.5668, 10.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.5835, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.6463, 11.0874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(21.7963, 11.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4002, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 70</tspan>
 </text>
-<path transform="translate(24.2193, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/71_2_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/71_2_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,31 +1,58 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 16.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.9138)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 11.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.9138)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 15.9138) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 14.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="11.7523" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="18.9187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="18.9187" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="19.0365" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="26.0850" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="26.2028" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="32.8180" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="32.8180" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="32.9358" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="39.8140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="39.8140" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="39.9318" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.6808)" x="46.4804" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.6700, 11.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.0037, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.9910, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(21.1083, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(13.9420, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 9.9138) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 19.0229)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="45.1234" y2="-0.0000" stroke-dasharray="0.406124390509228,0.589951620182908"/>
+<line transform="translate(56.6863, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(40.8537, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(35.0077, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.8247, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(28.2747, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.6583, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 71</tspan>
 </text>
--- a/www/m/svg/72_0_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/72_0_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +1,59 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<rect transform="translate(1.8969, 11.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 10.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 9.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 8.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 7.8204)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<line transform="translate(1.8969, 16.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 13.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.8204)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 13.8204) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<rect transform="translate(1.8969, 14.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="11.8260" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="18.3160" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="25.3857" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="25.5035" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="32.3530" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="32.4708" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="39.5930" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="39.7108" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.9874)" x="46.3330" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<line transform="translate(1.8969, 19.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.5227, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.3326, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(2.6969, 16.9874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.5013, 7.8204) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 18.9295)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(20.5057, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.4253, 11.9874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(14.0157, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(33.3926, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(34.5426, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.7827, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.5753, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 72</tspan>
 </text>
--- a/www/m/svg/73_1_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/73_1_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,34 +1,58 @@
 <?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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 18.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 17.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 16.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 15.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 14.4162)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<rect transform="translate(1.8969, 13.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 12.4162)" x="23.3117" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
-<rect transform="translate(1.8969, 11.4162)" x="23.4295" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
-<path transform="translate(2.6969, 17.4162) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 19.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 18.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 17.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 16.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 15.6808)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 14.6808)" x="11.8773" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="11.8773" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="11.9951" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="19.1687" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="19.2865" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="26.0267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="26.0267" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="26.1445" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="33.1477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="33.1477" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="33.2655" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 12.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 11.6808)" x="39.9390" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 14.6808)" x="46.2304" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 13.6808)" x="46.2304" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4200, 13.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(42.1287, 11.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.1873, 12.6808) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<path transform="translate(2.6969, 18.6808) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<text transform="translate(7.6969, 8.8783)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(12.6170, 12.1808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.0670, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(7.6969, 10.1428)" font-family="Century Schoolbook L" font-style="italic" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 8va</tspan>
 </text>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="33.5141" y2="-0.0000" stroke-dasharray="0.409247770838131,0.597239507617014"/>
-<line transform="translate(45.0770, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
-<line transform="translate(11.5629, 8.1195)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
-<path transform="translate(25.5013, 10.9162) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.5013, 20.5253)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="44.9984" y2="-0.0000" stroke-dasharray="0.405291051564222,0.588007162644561"/>
+<line transform="translate(56.5613, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="1.2000" stroke-dasharray="0.377301587301587,0.522698412698413"/>
+<line transform="translate(11.5629, 9.3841)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0" y1="0" x2="0.0000" y2="-0.0000" stroke-dasharray="0.407301587301587,0.592698412698413"/>
+<path transform="translate(35.3373, 12.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(27.1997, 12.1808) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(28.2163, 12.1808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(19.9083, 13.6808) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(21.3583, 13.6808) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 73</tspan>
 </text>
-<path transform="translate(24.0513, 10.9162) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/74_6_1.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/74_6_1.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,24 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 13.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 12.3228) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
+<line transform="translate(1.8969, 15.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 14.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 13.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.9874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<rect transform="translate(1.8969, 10.9874)" x="19.8036" y="-0.1037" width="1.6390" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="32.7060" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 10.9874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<rect transform="translate(1.8969, 9.9874)" x="46.2929" y="-0.1037" width="1.7568" height="0.2073" ry="0.1037" fill="currentColor"/>
+<path transform="translate(48.4825, 9.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(40.7058, 11.4874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(2.6969, 14.9874) scale(0.0040, -0.0040)" d="M335 -263c-189 0 -333 173 -333 375c0 181 132 315 250 453c-22 70 -43 141 -52 214c-7 55 -8 110 -8 166c0 118 55 230 149 301c3 3 7 4 11 4s9 -2 12 -5c77 -89 146 -262 146 -383c0 -149 -89 -265 -186 -379c23 -73 44 -145 63 -219h2c156 0 257 -129 257 -262
 c0 -76 -34 -154 -108 -210c-25 -19 -53 -32 -82 -40v-27c0 -50 -1 -99 -4 -149c-7 -122 -96 -229 -218 -229c-112 0 -202 93 -202 206c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95c-11 0 -21 2 -31 6c26 -44 71 -73 124 -73c98 0 165 91 171 191
 c3 47 4 95 4 142v19c-26 -4 -50 -6 -77 -6zM455 -204c71 23 119 95 119 166c0 87 -61 173 -161 189c22 -108 38 -234 42 -355zM338 -219c25 0 50 2 74 5c-4 126 -20 255 -44 367c-86 -4 -135 -59 -135 -120c0 -44 25 -91 81 -123c5 -5 7 -11 7 -16c0 -12 -10 -23 -22 -23
 c-3 0 -6 1 -9 2c-81 43 -118 116 -118 186c0 92 62 180 171 200c-16 62 -34 124 -53 185c-109 -125 -216 -251 -216 -415c0 -135 129 -248 264 -248zM403 1100c-100 -52 -162 -156 -162 -268c0 -86 22 -156 44 -227c84 102 153 208 153 340c0 68 -7 96 -35 155z" fill="currentColor"/>
-<path transform="translate(25.6693, 8.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.6693, 15.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.3357, 11.4874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.7858, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.8755, 10.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(34.8957, 10.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.7224, 11.4874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(28.1356, 11.9874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(20.7255, 10.4874) scale(0.0040, -0.0040)" d="M29 39l-2 -64v-11c0 -22 2 -43 5 -65c44 38 91 80 91 138c0 33 -13 66 -42 66c-31 0 -51 -31 -52 -64zM-16 -139l-12 593c9 5 18 8 28 8s19 -3 28 -8l-7 -343c25 23 58 36 92 36c51 0 87 -49 87 -103c0 -79 -84 -117 -144 -169c-16 -14 -25 -41 -47 -41
+c-14 0 -25 13 -25 27z" fill="currentColor"/>
+<text transform="translate(30.4761, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 74</tspan>
 </text>
-<path transform="translate(24.2193, 8.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
--- a/www/m/svg/75_7_2.svg	Sun Aug 19 22:29:24 2012 +0000
+++ b/www/m/svg/75_7_2.svg	Wed Aug 22 12:51:28 2012 +0000
@@ -1,22 +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="100.00mm" height="45.00mm" viewBox="0 0 63.2283 28.4528">
 <!-- Page: 1/1 -->
-<text transform="translate(1.8969, 6.3228)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<text transform="translate(1.8969, 7.5874)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
  </tspan>
 </text>
-<line transform="translate(1.8969, 12.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 11.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 10.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 9.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<line transform="translate(1.8969, 8.3228)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
-<path transform="translate(2.6969, 9.3228) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
+<line transform="translate(1.8969, 13.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 12.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 11.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 10.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<line transform="translate(1.8969, 9.5874)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1073" stroke="currentColor" x1="0.0537" y1="-0.0000" x2="59.3810" y2="-0.0000"/>
+<path transform="translate(48.4626, 10.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(41.1925, 11.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(2.6969, 10.5874) scale(0.0040, -0.0040)" d="M558 -125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM558 125c0 28 22 51 50 51s51 -23 51 -51s-23 -51 -51 -51s-50 23 -50 51zM231 264c172 0 294 -88 294 -251c0 -263 -262 -416 -515 -523c-3 -3 -7 -4 -10 -4c-7 0 -14 7 -14 14c0 3 1 7 4 10
 c201 118 410 265 410 492c0 119 -61 234 -169 234c-72 0 -124 -53 -148 -123c10 4 19 6 29 6c55 0 100 -45 100 -100c0 -58 -44 -106 -100 -106c-60 0 -112 47 -112 106c0 133 101 245 231 245z" fill="currentColor"/>
-<path transform="translate(25.6693, 10.8228) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
-<text transform="translate(25.6693, 14.4319)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
+<path transform="translate(13.3457, 12.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(14.7957, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(21.0658, 13.5874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(47.0126, 10.0874) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
+c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
+<path transform="translate(34.4225, 13.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<path transform="translate(26.8858, 12.0874) scale(0.0040, -0.0040)" d="M-8 375c8 5 17 7 26 7s18 -2 26 -7l-3 -187l104 21h4c10 0 18 -8 18 -18l8 -566c-8 -5 -17 -7 -26 -7s-18 2 -26 7l2 187l-103 -21h-4c-10 0 -18 8 -18 18zM130 111l-90 -18l-3 -204l90 18z" fill="currentColor"/>
+<path transform="translate(27.9025, 12.0874) scale(0.0036, -0.0036)" d="M214 140c59 0 115 -32 115 -97c0 -72 -54 -121 -101 -149c-35 -21 -74 -34 -114 -34c-59 0 -114 32 -114 97c0 72 54 121 101 149c35 21 73 34 113 34z" fill="currentColor"/>
+<text transform="translate(30.4381, 27.1503)" font-family="Century Schoolbook L" font-size="2.1994" text-anchor="start" fill="currentColor">
 <tspan>
 75</tspan>
 </text>
-<path transform="translate(24.2193, 10.8228) scale(0.0040, -0.0040)" d="M217 -311c0 -11 -8 -19 -19 -19s-20 8 -20 19v142l-81 -30v-156c0 -11 -9 -20 -20 -20s-19 9 -19 20v142l-28 -11c-3 -1 -5 -1 -8 -1c-12 0 -22 10 -22 23v57c0 9 6 18 15 21l43 16v157l-28 -10c-3 -1 -5 -1 -8 -1c-12 0 -22 9 -22 22v57c0 9 6 18 15 21l43 16v157
-c0 11 8 19 19 19s20 -8 20 -19v-142l81 30v156c0 11 9 20 20 20s19 -9 19 -20v-142l28 11c3 1 5 1 8 1c12 0 22 -10 22 -23v-57c0 -9 -6 -18 -15 -21l-43 -16v-157l28 10c3 1 5 1 8 1c12 0 22 -9 22 -22v-57c0 -9 -6 -18 -15 -21l-43 -16v-157zM97 64v-158l81 30v158z" fill="currentColor"/>
 </svg>
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