<?xml version="1.0" standalone="no"?>
<!--!DOCTYPE svg SYSTEM "svg-20000303-stylable.dtd"-->
<svg width="600" height="660" viewBox="0 0 600 660" xmlns:xfm="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:gps="http://www.fobar.org/2000/gps">
	<!--<svg width="597" height="744" viewBox="0 0 800 1050" xmlns:xfm="http://www.w3.org/2001/11/xforms-editors-copy" xmlns:ev="http://www.w3.org/2001/xml-events">-->
	<defs>
		<!-- Initialize the listeners -->
		<ev:listener observer="gpsbutton" event="click" phase="default" handler="#gpshandler"/>
		<ev:script id="gpshandler" type="text/ecmascript">
  	browser.println("Read GPS data");
  	var gps = document.getElementsByTagNameNS("http://www.fobar.org/2000/gps","gpsdata").item(0);
  	lat=gps.getAttribute("lat");
  	longi=gps.getAttribute("long");
  	browser.println("Read GPS data: "+gps+" lat:"+lat+" longi:"+longi);
  	setInstance(lat,longi,-1);
  </ev:script>
		<gps:gpsdata id="gpsdata" lat="6011.368" long="2449.503" speed="3.00000" utcd="190801" utct="112233" course="43" emulation="true" refreshRate="10000"/>
		<ev:script language="Javascript" global="true"><![CDATA[
      
      
      	var instance= null;
	var instanceroot = null;
	var circle=null;
	var innercircle=null;
	//browser.println("instance: "+instance+" instanceroot: "+instanceroot);
	
	function init()
	{
	if (instanceroot!=null) return;
	browser.println("Document: "+document+"rootelement:"+document.getDocumentElement());
	var xform = document.getElementsByTagNameNS("http://www.w3.org/2002/xforms","model").item(0);
	browser.println("xform: "+xform);
	instanceroot = xform.getInstanceDocument().getDocumentElement();
	browser.println("xform: "+xform+" instanceroot: "+instanceroot);
	//var group = document.getElementsByTagName("g").item(1);
	var group = findNodeWithId("g","pallo");
	circle=group.getElementsByTagName("circle").item(0);
	innercircle=group.getElementsByTagName("circle").item(1);
	browser.println("circle: "+circle);
	}


			
	// these are the corners of the map
	var longmin = 2449.503, longmax = 2449.769;
	var latmin = 6011.128, latmax = 6011.368;
	var scrxmin = 140, scrxmax = 265;
	var scrymin = 288, scrymax = 480;

	var dotlong = 2449.503, dotlat = 6011.468;
var dotx = 0, doty = 0, dotr = 10;

	// This is the pan for the map
	var mapy = 130;


	var lat = 0;
	var longi = 0;
	var radius = 10;
	function convertToLat(x1, y1) {
			//dotx = ((dotlong - longmin)/(longmax - longmin)) * (scrxmax - scrxmin) + scrxmin;
			//doty = (1-((dotlat - latmin)/(latmax - latmin))) * (scrymax - scrymin) + scrymin;
			//browser.println("CONVERT: long: "+dotlong+" -> x: "+dotx+" lat: "+dotlat+" -> y: "+doty);
			
			longi = ((x1-scrxmin) / (scrxmax-scrxmin) * (longmax-longmin)  ) + longmin;			
			lat = (1 - (y1-scrymin) / (scrymax-scrymin)) * (latmax-latmin)  + latmin;			
			browser.println("CONVERT: x1: "+x1+" -> long: "+longi+" y1: "+y1+" -> lat: "+lat);
			
			
	}
	var circlex = 0;
	var cicley = 0;
      // this function is called when the map is clicked
      var clicked = false;
	function mousedown(evt) {
		init();
		browser.println("Hep!"+evt);
		var clientx = evt.getClientX();
		var clienty = evt.getClientY();
		browser.println("ClientX:"+clientx+ " clienty:"+clienty);
		convertToLat(clientx,clienty);
		// this is the first click, move the circle
		circlex=clientx;
		circley=clienty;
		innercircle.setAttribute("cx",circlex);
		innercircle.setAttribute("cy",circley);
		circle.setAttribute("r",0);
	}	
	
	function mouseup(evt) {
		browser.println("Hep!"+evt);
		var clientx = evt.getClientX();
		var clienty = evt.getClientY();
		browser.println("ClientX:"+clientx+ " clienty:"+clienty);
		//convertToLat(clientx,clienty);
		browser.println("This is the radius click");
		radius = getRadius(circlex,circley,clientx,clienty);
		circle.setAttribute("cx",circlex);
		circle.setAttribute("cy",circley);
		circle.setAttribute("r",radius);
		clicked=false;
		setInstance(lat,longi,radius);
	}	
	
		
	
	function getRadius(cx,cy,x,y)
	{
			var r = Math.sqrt( (cx-x)*(cx-x) + (cy-y)*(cy-y) );
			return r;
	}
	
	function setInstance(lat2,long2,radius2)
	{
		init();
		browser.println("setInstance lat: "+lat2+" long:"+long2+" radius:"+radius2);
		var position=instanceroot.getElementsByTagName("position").item(0);
		browser.println("d1");
		position.setAttribute("lat",new Number(lat2).toFixed(3));
		browser.println("d2");
		position.setAttribute("long",new Number(long2).toFixed(3));
		browser.println("d3");
		if (radius2>=0)
		{
		browser.println("d4");
			position.setAttribute("radius",new Number(radius2).toFixed(1));
		browser.println("d5");
		}
		
	}
	
		function findNodeWithId(nodename,id)
	{
		var nlist=document.getElementsByTagName(nodename);
		for (var i=0;i<nlist.getLength();i++)
		{
			var t2=nlist.item(i).getAttribute("id");
			if (t2==id) return nlist.item(i);
		}
		return "";
	}

      ]]></ev:script>
	</defs>
	<text style="stroke:#c00000; stroke-width:1; stroke-opacity:1; font-size:24; font-family:Times New Roman; fill:#ffffff; fill-opacity:1" x="620" y="40">New message</text>
	<!-- THE XFORM for this form -->
	<foreignObject>
		<xfm:model id="form1">
			<xfm:submission id="submit1" method="post" action="http://sinex.tml.hut.fi:8080/locationServlet/servlet/location"/>
			<xfm:submission id="submit2" method2="post" localfile="temp2.xml" action2="http://www.hut.fi/"/>
			<!--model href="purchase.xsd"-->
			<xfm:schema/>
			<xfm:instance id="instance1" xmlns="">
				<submission>
					<message id="">
						<author id="mikko"/>
						<title>puu</title>
						<anchor href="">Tassa on harvinainen puu. Etteko usko?</anchor>
						<position lat="6011.152" long="2449.495" radius="10"/>
						<direction beg="30" end="60"/>
						<speed beg="30" end="10"/>
						<content/>
					</message>
				</submission>
			</xfm:instance>
			<xfm:bind ref="/submission/message/speed/@end" calculate="2 * /submission/message/speed/@beg"/>
		</xfm:model>
	</foreignObject>
	<!-- Author id -->
	<foreignObject x="600" y="35" width="200" height="30">
		<xfm:input ref="submission/message/author/@id" style="font-size:10pt;font-weight:bold;color: red;width:200pt">
			<xfm:label>Author id:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- TITLE -->
	<foreignObject x="600" y="75" width="200" height="30">
		<xfm:input ref="submission/message/title" style="font-size:10pt;font-weight:bold;color: red;width:200pt">
			<xfm:label>Title:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- ANCHOR -->
	<foreignObject x="600" y="115" width="200" height="30">
		<xfm:input ref="submission/message/anchor" style="font-size:10pt;font-weight:bold;color: red;width:200pt">
			<xfm:label style="caption-side:top">Anchor:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- ANCHOR/@HREF -->
	<foreignObject x="600" y="160" width="200" height="30">
		<xfm:input ref="submission/message/anchor/@href" style="font-size:10pt;font-weight:bold;color: red;width:200pt">
			<xfm:label style="caption-side:top">URL</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- CONTENT -->
	<foreignObject x="600" y="200" width="200" height="30">
		<xfm:textarea ref="submission/message/content" rows="5" style="font-size:10pt;font-weight:bold;color: red;width:200pt;height:70pt;">
			<xfm:label>Content of message:</xfm:label>
		</xfm:textarea>
	</foreignObject>
	<!-- LATITUDE -->
	<foreignObject x="600" y="295" width="200" height="30">
		<xfm:input ref="submission/message/position/@lat" style="font-size:10pt;font-weight:bold;color: red;width:130pt">
			<xfm:label style="caption-side:left">Latitude:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- LONGITUDE -->
	<foreignObject x="600" y="325" width="200" height="30">
		<xfm:input ref="submission/message/position/@long" style="font-size:10pt;font-weight:bold;color: red;width:130pt">
			<xfm:label style="caption-side:left">Longitude:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- RADIUS -->
	<foreignObject x="600" y="355" width="200" height="30">
		<xfm:input ref="submission/message/position/@radius" style="font-size:10pt;font-weight:bold;color: red;width:130pt">
			<xfm:label style="caption-side:left">Radius:</xfm:label>
		</xfm:input>
	</foreignObject>
	<!-- Speed -->
	<foreignObject x="750" y="295" width="200" height="30">
		<xfm:select1 ref="submission/message/speed/@beg" style="list-ui:checkbox">
			<xfm:label style="font-weight:bold;">Viewer speed</xfm:label>
			<xfm:item>
				<xfm:label>Pedestrian</xfm:label>
				<xfm:value>10</xfm:value>
			</xfm:item>
			<xfm:item>
				<xfm:label>Cyclist</xfm:label>
				<xfm:value>30</xfm:value>
			</xfm:item>
		</xfm:select1>
	</foreignObject>
	<!-- GET GPS POSITION -->
	<foreignObject x="750" y="350" width="200" height="30">
		<xfm:trigger id="gpsbutton">
			<xfm:hint>Read the position from GPS</xfm:hint>
			<xfm:label>Get GPS Pos.</xfm:label>
		</xfm:trigger>
	</foreignObject>
	<!-- SUBMIT BUTTON -->
	<foreignObject x="600" y="400" width="200" height="30">
		<xfm:submit ref="test" submission="submit1" id="findbutton">
			<xfm:hint>Click to submit</xfm:hint>
			<xfm:label>Submit message</xfm:label>
		</xfm:submit>
	</foreignObject>
	<!-- SUBMIT BUTTON 2-->
	<foreignObject x="750" y="400" width="200" height="30">
		<xfm:submit ref="test" submission="submit2" id="findbutton">
			<xfm:hint>Click to submit</xfm:hint>
			<xfm:label>Show instance</xfm:label>
		</xfm:submit>
	</foreignObject>
	<!-- This rectangle gets all mouse clicks in the map area-->
	<g id="tausta" style="fill:transparent">
		<rect x="0" y="0" width="100%" height="100%" onmousedown="mousedown(evt)" onmouseup="mouseup(evt)"/>
	</g>
	<!--=========== KARTTA =============-->
	<g id="Background" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
		<image width="600" height="600" href="9CAFB470.jpg" transform="matrix(1 0 0 1 0.9756 59.7949)"/>
	</g>
	<g id="Guides" style="display:none;fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;"/>
	<g id="Sea_x002F_water" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
		<path style="fill:#80FFFF;stroke-miterlimit:3.8637;" d="M3.111,0.5h595.763v659.763H3.111V0.5z"/>
	</g>
	<g id="brown_x0020_ground" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#F9F980;stroke-width:1.0001;stroke-miterlimit:3.8637;" d="M0.976,659.11l472.029,0.978l21.75-22.25l14.75-18.25l2.25-36l4.5-3l-1.5-22.25l11.5-16.5l-3.5-59.75l-1.5-56.25l4.5-6.25l9-13l0.5-4.75l-6.5-10.75l5.5-14l10.5-18.25l9.75-1.25l2-6.75l1.5-4.75l9.75-8.5l11.5-10.25c0,0-1-21-0.75-22
			s-0.5-15.5-0.5-15.5l4-12.5l-3.5-6.75l-4.5-67.5l-6.25-4.25l-4.75-4.5l-2.75-3.5l-5.5,1.25l-0.75,3.25l-5.5,1.25l-9-2.5l-6.5-5.5l-6.5-30.75l-2.25-6l-12.25-20.25l-17.25-19l-1.25-8.75l4.25-10.75l0.5-13l1-8l-5.75-3.5l-6.75,0.25l-8.75,10l-7.5,12.25l-3.5,10
			l-3.5,6l-9,5.25l-7.5,5.25l-11.75,2.75l-8,7l-2.75,9.75l-6,1l-6.75,2.75l-9.5,3.25l-12.75,4l-17.25,10l-12.5-15.5l-12.75-12l-12,5.5l-11.5,6.25l-4.75,0.5l-5.5-4.25l-9,4.5l-7.25,4.75l-2.75,18l-2.75,16.5l-0.75,11.75l-11,11.25l-9.5-5.25l-10,8l-7.25,8l-1,7.75
			l-9.5,13l-11,14l-7.25,11l-9.25,10.75l-17.25-2l-6.75-2.25l-10.5-12.5l-13.75-4.75l-12.25-3l-11,0.75l-8.5,8.75l-11.75,13l-14.5,15.25l-8.25,10.75l-10,9.25l-1.75,16l-0.5,11.75l-9.5,3l-8.25,2.25l-7.75,3v-9l-1.25-6.5l-7-0.25l-8.75,1l-7.75,1.25l-7.75-3.75
			l-4.25-7l-3.5-4.25l-4.75-10.5c0,0-2-9.25-3-9.5s-8.25-6.5-8.25-6.5l-5.529-64.25"/>
	</g>
	<g id="Roads" style="fill-rule:nonzero;clip-rule:nonzero;fill:#FFFF80;stroke:#000000;stroke-miterlimit:4;">
		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke-miterlimit:3.8637;" d="M461.255,660.088l-43.25-0.5l-6.75-6l4.5-8.75l4,1.25l9.5,7.5l8.75,3.75l4.75-0.75l4.5-13.75l-1-42.25l5.25-0.25l4.75,0.25l0.5,13.75l-0.5,16.75l4.5-0.75l6.75-4.75c0,0,5.75-6.5,6.25-8s5.75-6.75,5.75-6.75l3.5-14l-0.25-12.25l-1.5-41.75
			l-2.5-1.75l-91.5,0.25l-11.75,1l-3.25,4c0,0-5,5-5.25,6.5s-3,7.25-3,8.25s-3.75,9-3.75,10.5s-5.25,12-5.25,12l-5.75,10.25c0,0,10.25,10.75,11.75,12.25s10.75,7.25,10.75,7.25l-5.75,11l-21.25-18.25l-3.25,0.25c0,0-1.25,4-1.25,5.25s-4.5,3.5-4,7.75s0,5,0.5,6
			s4.75,6,4.75,6l12.75,13.75l9.5,9.5l5.25,5.25l-25.25-0.5l-12.75-13.25l-7.5-7.75l-5,14.5l-3.75,6.75l-9.75,0.5l11.75-29.5l-2-4.5l-21.75-19.5l-7.25-5.75l-11.25-4l-10.5-5.25l-20-4.75l-8.5-0.75l-4.5,11.75l-4.25,11.75l4.25,7.75l8.75-8.75l8-8.5l3.75-3.25
			l4.5,2.75l-6.25,6.75l-6,5.75l-8,8l40.25,39.75l-13.5-0.25l-41.25-39.5l-10.5,9.5l-10.5,11.5l18.5,19.25h-12.5l-14-12.75l-16.5,12l-19,0.25l50.25-52.5l0.5-3l-8-4.5l-9-0.75l-6.5,3.75l-9,2.5l-14,11.5l-17.75,12.5l-6.75,4l-30.25,26.5l-9.75-0.5
			c1.25-1.25,18.25-19.5,18.25-19.5l11.75-9.75l18.25-12.5l16.25-11.5l11-8.5l14-5.5l8.5-0.75l11,2.25l6.25,4.75l5-15.75l-4.25-11l-29.25-19l-12.25-10l-13.75-14.5l-4-1.5l-7,3l-14.75,25.5l-12.25,4.5l-9.5-1.5l0.75-7.5l5.5-6l7-11.75c0,0,3.5-2.25,4-3.25
			s1.75-5.75,1.75-5.75l9.5-12l1.5-10.25l-20.75-15l-18-13.75l-28-13.75l-9.5,15.75l-7,12.25l-10.5,11.75l-11,10.5l-13.25,11l-20.75,19l-0.5-23l36.5-32.75l10-10.25l8-14.25l-1.5-7c0,0-19.5-2.5-20.75-2.75s-16.25-3.25-16.25-3.25l-12.75-0.75l-3-1.5l0.25-15.25
			l-0.25-2.25l14.25,1l33.75,6.25l13.25,2.25l6-1.75l10.5-33.25l12.75-36.25l7.5-22l4-12.25l25.75-42l7-12.5l67.25,39.75l38.75,21.75l4.25,0.75l7-7.75l4.25-11l4.25-11.5l4.25-28.75l1.25-11.5l8-12l7-13.25l9-10.25l14.75-9.75l13.75-2.5l10.75-1.5l7.75,2.75l11,5.25
			l17.75,16.25l13.25,12.25l9.75,10.5l8,10.5l5.25,11l2.25,3l4.25,1.25l3.25-1.5l4.5-7.5l1.5-10.25l1-12l-3.5-11.75l-46-57.75l-8.5-9.75l-6.75-6l-4.5-2.75l-2.75-6.25l0.75-4h3.75l4.25,1.75l4,3.5l2,3.75l1.5,3l4.25,3.25l7,7.25l16,18.25l5.5,7l8.5,11.75l12,14.5
			l2.5,4.5c0,0,2.25,4,3,5s4.75,3.75,4.75,3.75l3.75-2.25l13.25-11.25l17.5-13l10.25-7.25l6.75-3.25l6.25-0.5l4-3l3-1.5l3.5-2.25l2.75-2.75l2-7.25l-5.25-4.5l1.25-11l-0.25-9l2.75-1.5l4.5,0.5l5,0.5l0.5,6v5l-2,16.5l-2.75,7.25l-4.75,6l-9.25,7.25l-5,0.75
			l-2.25,0.75l-4.5,2.25l-7.75,5.5l-7,5.25l-9,7.25l-21,16.5l-3.25,7.25l-3.25,7l-2,6.5l-2.25,8.75l-4.75,8.5l-2.5,8.5l0.5,6.75l2.5,8.5l3,6l0.75,11l1.75,10l0.5,7.25l0.75,7.25l2,5.5l6.5,2.5l-3.25-31l9.5-4l6.25,0.75l4.75,30.25c0,0-3.5,0-3.5,2s0.25,3,0.25,3
			l6.25-1.25l18.5-5.75l12.25-14.5l13.75-19.75l6.75-20.5l5.75-21.5l9-22.5l9.5-22.25l5.75-21l4,0.25l5.5,3.25l7.5,3.75l-5.75,14.25l-5.5,11l-5,1.75l-4.5,7l-7,18l-4.5,10.75l-6.5,19.5l-6,22.25l-14.5,21.75l-11,16.5l-5.25,2l-24,6.25l-19.5,1.25l-14.75-4h-3.5
			l-20.25,20.5l-10.75,15.75l-5.5,18l-5.5,11.75l-20,25.75l-17.75,19l-16,19.75l-4,7.5l-2,15.5l4,14.25l3.25,7.75c0,0,3.75,9.5,5.75,11.75s4.75,7.75,6,10.25s5.5,9.25,5.5,9.25l1.75,4.75l8.75-14.75l5.25-16.25c0,0,5.5-8.75,5.5-9.75s2-5.25,2-5.25l5.5-6.25
			l6.25-2.75l12.5-1.25l13.75-0.25l35.25,0.25h31l2.75,0.25l-1-63.75l12.25-0.25l-0.75-15.75l15.5-0.5l1.25,4.25l1.25,152l-12.5,25.5l-2.25,5.25l-20.5,23.25z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M75.255,439.338l20.5-62.25l91.75,50.5l-27.5,53.25l-5.75,11l-8-6.25l-23.25-20.5l-25.25-14.25l-22.5-11.5z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M100.005,366.838l-0.5-3.5l8.5-21l4.75-10.5l11.75-21.25l10.25-17.25l5.25-7.25l22.25,14.75l1.25,8l3.5-1.75l2-0.25l2-2l23.25,14.5l21.25,12l25,16.5l-16.5,29.5l-11.75,16.75l-15.5,25.25l-2.25,1.5l-44-26l-50.5-28z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M173.505,499.088l5.25-14.75l3-6.5l8.5-16.25l7.75-13l5.25-8.75l3.25-6.5l7.75-14.75l10.25-18.25l9.5-13.5l6.25-10.25l5-7.75l4.75-5l3,1.5l7.25,13l18,29.5l17.5,29l4.75-3.25l-14.5-27.75c0,0-25.5-41.5-25.75-42.5s-5-7-5-7l1.5-3l2.25-6
			l5.5-11l5-9l2.5-20.5l5-16l2.75-8.25l3.75-17l6-9.25l5-9l5.75-6.25l3.75-4l4.5-3.25l12.25-2.5l14.75-0.25l7.25,5l12.75,9l13.25,15.5l14.25,16l8,10.5l6.25,8.75l4.75,15.25l2.5,8.5l5.25,15.75l2.25,14.25l-1.5,11.5l-7.25,10l-7.75,7.5l-7.75,8.5l-7,7.25l-5.5,8.75
			l-5.75,11.25l-1.5,8.75l-3.25,7.75l-5,7.75l-10.5,10.25l-6.25,8l-6,8l-7.25,7.75l-9.25,12.25l-7.5,8l-6.5,10.5l-4.5,7.75l-0.25,11v14l4.75,13.75l8,15.5l7.25,13.25l5.25,4l4,10.25l2,9.75l-4.75,8.5l-4.5,0.75l-13.5-13.5l-19-14.5l-20.5-8.75l-25.75-7.75
			l-24.5-8.75l-11.25-6.5l-16.75-14.75l-15.5-16l-5-5.75l-1.5-5.5l3-11z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke-miterlimit:3.8637;" d="M161.88,517.963l16.25,18l13,11.125l18.25,14.125l13.75,7.625"/>
	</g>
	<g id="Buildings" style="fill-rule:nonzero;clip-rule:nonzero;fill:#FFAC80;stroke:#000000;stroke-miterlimit:4;">
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M62.505,428.338l5.5-16l-31-7l-3.5,10.5l-2,8.25l9.5,2.5l5.5-1.5l16,3.25z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M149.505,435.588l4.25-5.75l9.5,4.5l12.75,0.5l2.75-4.25l-56.5-33l-4.25-2l-3.25,6.25l-5.25,5.25l4.75,6.75c0,0,13.5,6.75,14,8s7.25,9,7.25,9l12.5,4.5l1.5,0.25z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M211.63,517.963l19,22.25h2.625l12.75,13.625l-6.625,5l-11.875-11.625l-7,6.125l-17.375-18.375l7.878-16.379l0.622-0.621z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M292.88,386.588l7.25-3l-1-4.875l8.875,0.875l7.875-5.625l-7.375-9.625l-12.875,9.125l-11.25-19.875l7.375-3.5l2,2.125l-2,3.5l8.5,6.75l6.25-4.625l-12-17.75l7.25-3.75l-5.5-8.375l-26.75,15.875l23.375,42.75z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M296.755,322.712c0.25-0.625,0.625-17.25,0.625-17.25l-3.75-0.125l-4.375,5.75l-8.625-12.5l7.5-5.875l8.5,4.625l0.125-11.125h9.125c0,0-0.375,11.125,0.25,11.125s8-0.25,8-0.25l-0.5-10.5l9.375-0.25l-0.375,10.25l8.375,1l-0.625-11.75h9
			l0.375,8.125l7.375,0.125l0.375-35.25l9.75,0.375l0.125,57.125l-8.875-0.75l-1.25-14.5c0,0-7.75,0.5-7.625,1s0.375,13.25,0.375,13.25l-8.625,0.125l-0.625-11.25c0,0-6.625-0.75-6.5-0.25s0.875,18.5,0.875,18.5l-11.75-0.5l0.375-17l-7-0.125l0.25,18.25
			c0,0-10.5,0.25-10.25-0.375z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M364.255,276.462l11,0.625l0.625,22.25l6.5,0.25l1,26.875l-9.5,0.75l-0.5,6.5h-8.625l-0.125-16.25l6-0.125v-10.375h-6.75l0.375-30.5z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M339.755,271.212l-0.125-18l-4.625,0.375l-0.375-3l-13.125-0.125l0.125,4.5l-12.125-0.125l-1.375,16.625l31.625-0.25z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M483.755,286.712l3.75-9.125l-10.5-4.25l-4.125,4.75l2.875,1.875l-1.625,4.25l9.625,3.25"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M358.755,470.463c1.125-0.125,14-16.125,14-16.125l9.125,0.125l4.125,4.625l-1.375,4.25l-9.375,0.625l-12.75,9.625c0,0-4.875-3-3.75-3.125z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M335.505,531.963l1.5-4l7.125,0.75l3.125,10.875l6.375-0.625l4.875-1.875l2.25-5l2.75-6.125l7.75-0.125l1.75-4.875l3.125-5.625l-3.25-2.625l-5.375-1.125l0.75-2.75l4-0.625l3-3.75l-4.75-3.5l-4.375,4.75l-3.375,0.5l-5.625-2.75l3.375-4.375
			l0.5-2.25l-5.375-3l-6.125,2l-3.625-2.75l-2.25-2.375l-6.5,4.25c0,0-3.25,3-2.75,3.75s4.875,7.875,4.875,7.875l-11.125,10.125c0,0-2.625,8.375-2.5,8.875s3.5,5,4.125,5.375s5.75,1,5.75,1z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M427.88,578.588l-20.25,1l1.125-5l-3.5-1.625l-0.625-21.875l39.375,0.375l2.125,25.5l-3.875,0.875l0.75,10.875l-3.625,0.375l0.375,3.875l-11.25,0.375l-0.625-14.75z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M478.38,587.588l-9.688-0.123v-10.006l-9.188,0.004l-0.25,25.125l9.375,16l7.25-9.125l-6.25-5.75l0.25-6.625l8.507,0.001l-0.007-9.501z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M150.503,659.338l26.752-28.125l-5.75-5.375l-11.5,9.625c0,0-5.625-4.5-3.5-4.5s8.125-6.125,8.125-6.125l-4.125-4.25l-43.5,39l12.25-0.125l20.75-19.75l5.875,5.25l-15.75,14.375h10.373z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M117.505,635.088c0.125,0.375,7.5-5.25,7.5-5.25l-13.5-18l10.875-6.875l13,16.125l7.25-5.5l-11.125-12.75l12.875-8.5l10.75,13.5l6.5-5l-8.875-10.25l11.25-8.375l5.375,7.5l7.375-5.375l-9.375-15.375l-19.5,12.375l-1.875-2.875
			l-17.375,12.625l-4.875-5.5l-6.375,3.75l-3.125-5l-7,4l5,9.375l-12.125,7.625l2.625,6.5l-16.75,9.375l5.25,8.375l16.125-10.125c0,0,10.125,13.875,10.125,13.625z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M185.005,409.338c0,0-22.5-13.25-21.125-13.5s9.125-12.25,9.625-12.375s10.125-0.25,10.125-0.25l-1.5,6.625l9.75,5.625l12.375-19.5l7.375,5.375l-16.25,27.5l-7.25-5.875l-3.125,6.375z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M145.005,386.213c2.625-2.5,22.25-34.875,22.25-34.875l-8-5.75l-17.125,27l-2.5-1.75l-6.625,7.75c0,0,9.375,10.125,12,7.625z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M199.63,299.587c0.5-0.5,6.375-10.25,6.375-10.25l-21.625-13.875l-3.25,3.5l-10.5-6.75l-7.875,9.25l13.625,9.125l3.25-3.125c0,0,19.5,12.625,20,12.125z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M242.38,334.087l9-15.875l-30.875-21.5l-7.625,10.125l7.875,6l4.25-5.5l17.125,12.125c0,0-6.125,10.5-5.625,10.625s5.875,4,5.875,4z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M220.255,366.463l11.125-16.75l-12.125-8.125l-12.125,14.875l13.125,10z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-width:1.0001;stroke-miterlimit:3.8637;" d="M120.63,373.338c0,0-13.75-5.25-13.125-6.125s3.25-5.875,3.25-5.875s4.5,3.5,5.625,2.875s15-22.75,15-22.75l-5.875-3.125l-9.75,11.875l-7.375-5l17.75-28.125l21.5,11l-27.5,45.125"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;" d="M40.63,461.588l-3,21l-23.5-3.125l1.25-6.5l-13.75-2.125l-0.654-17.125l39.654,7.875z"/>
		<path style="fill-rule:evenodd;clip-rule:evenodd;stroke-width:1.0001;stroke-miterlimit:3.8637;" d="M199.505,521.588l-12.5-8.25l10.5-28.25l-4.5-2.5l8.5-20.5l8.75-1.5l2.25-16l7-0.25l4.5-20l-3.75-2.75l13.75-32l3-1.5l5.75,1.25l-0.5,7.25h7l1.25-3.75l7.75,1.5l1.5,6l-6,5.5l-8.5,45.25l7,1.25l2.25-11.25l8.75,0.25l-3,13.5l8,1.75
			l3.25-16.25l10.75,2.5l1.75,3.5l9,2.75l-3.25,21l-8.5-1.25l1.75-10.75l-6.5-0.75l-5.5,18.25l-7.5-2.25l0.25-10l-5.25-1.25l-1.75,17.5l-15.75-0.5l-2,9l-14-1.25l-0.25,14.25l-13.5-5.25l-11.75,25.75z M219.255,467.338l10.5,3.25l6-14.5l-11.75-3.25l-4.75,14.5z
			 M239.755,434.338l-8.75-2.5l-1.25,14l9,1.75l1-13.25z M247.005,405.588l-6.25-1.25l-2.5,12.25h7.5l1.25-11z"/>
	</g>
	<g id="Texts" style="fill-rule:nonzero;clip-rule:nonzero;fill:#3F42FF;stroke:#000000;stroke-miterlimit:4; font-family:'Gen_Arial_BoldItalic'; font-size:14;">
		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:none;" d="M47.658,446.125c35.447,4.753,83.525,37.042,106.694,62.924"/>
		<text transform="matrix(0.9828 0.1849 -0.1849 0.9828 47.1147 445.9121)" style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:3.8637;">
			<tspan x="0" y="0">O</tspan>
			<tspan x="9.694" y="0.105" rotate="4.249">t</tspan>
			<tspan x="14.203" y="0.415" rotate="6.981">a</tspan>
			<tspan x="20.779" y="1.209" rotate="9.955">n</tspan>
			<tspan x="28.343" y="2.576" rotate="11.925">i</tspan>
			<tspan x="31.487" y="3.213" rotate="13.585">e</tspan>
			<tspan x="38.21" y="4.783" rotate="16.267">m</tspan>
			<tspan x="49.308" y="8.073" rotate="18.64">e</tspan>
			<tspan x="55.978" y="10.318" rotate="20.392">n</tspan>
			<tspan x="63.205" y="13.025" rotate="21.778">t</tspan>
			<tspan x="67.502" y="14.748" rotate="22.647">i</tspan>
			<tspan x="70.522" y="15.988" rotate="23.765">e</tspan>
		</text>
		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:none;" d="M175.755,477.338c28.189-48.201,55.25-96,88.25-144.25"/>
		<g/>
		<g style="stroke:none;">
			<path d="M21.639,376.932l3.245-7.838h4.843v0.313h-0.389c-0.354,0-0.636,0.063-0.848,0.188c-0.147,0.082-0.266,0.223-0.354,0.418c-0.065,0.143-0.097,0.514-0.097,1.113v7.844c0,0.611,0.032,0.993,0.097,1.146c0.064,0.152,0.197,0.286,0.397,0.4
				c0.2,0.115,0.468,0.172,0.804,0.172h0.389V381h-6.25v-0.313h0.389c0.354,0,0.636-0.062,0.848-0.186c0.147-0.082,0.265-0.223,0.354-0.423c0.064-0.141,0.097-0.511,0.097-1.11v-8.833L20.616,381h-0.212l-4.662-10.769v8.394c0,0.583,0.015,0.941,0.044,1.074
				c0.076,0.292,0.243,0.529,0.499,0.713s0.659,0.275,1.207,0.275V381h-4.094v-0.313h0.125c0.266,0.006,0.515-0.037,0.746-0.129c0.231-0.093,0.406-0.217,0.524-0.371c0.118-0.154,0.21-0.371,0.275-0.652c0.012-0.064,0.018-0.368,0.018-0.91v-7.5
				c0-0.611-0.033-0.993-0.098-1.145c-0.065-0.151-0.199-0.285-0.4-0.4s-0.471-0.174-0.808-0.174h-0.382v-0.313h4.855l3.385,7.838z"/>
			<path d="M35.231,379.781c-1.005,0.896-1.906,1.344-2.705,1.344c-0.47,0-0.86-0.154-1.172-0.462s-0.467-0.694-0.467-1.158c0-0.628,0.27-1.192,0.811-1.694c0.54-0.502,1.718-1.17,3.533-2.004v-0.832c0-0.625-0.034-1.019-0.103-1.181s-0.197-0.304-0.387-0.425
				s-0.403-0.182-0.641-0.182c-0.386,0-0.702,0.086-0.948,0.258c-0.152,0.105-0.229,0.23-0.229,0.372c0,0.124,0.082,0.278,0.246,0.462c0.223,0.254,0.334,0.5,0.334,0.736c0,0.29-0.107,0.537-0.321,0.74c-0.214,0.205-0.494,0.307-0.839,0.307
				c-0.369,0-0.678-0.111-0.927-0.336c-0.249-0.223-0.374-0.484-0.374-0.785c0-0.424,0.167-0.828,0.501-1.214c0.334-0.386,0.8-0.681,1.399-0.888c0.598-0.205,1.22-0.309,1.865-0.309c0.78,0,1.397,0.166,1.852,0.498s0.75,0.691,0.885,1.078
				c0.082,0.247,0.123,0.813,0.123,1.7v3.197c0,0.376,0.014,0.612,0.043,0.709c0.029,0.097,0.072,0.169,0.13,0.216s0.125,0.07,0.202,0.07c0.148,0,0.3-0.105,0.455-0.318l0.264,0.207c-0.291,0.432-0.592,0.746-0.903,0.942s-0.664,0.294-1.059,0.294
				c-0.465,0-0.828-0.111-1.09-0.334s-0.421-0.559-0.479-1.01z M35.231,379.125v-2.719c-0.714,0.417-1.245,0.863-1.592,1.339c-0.23,0.317-0.345,0.638-0.345,0.96c0,0.271,0.097,0.508,0.292,0.713c0.147,0.159,0.354,0.238,0.619,0.238
				c0.295,0,0.637-0.177,1.026-0.531z"/>
			<path d="M44.231,379.781c-1.005,0.896-1.906,1.344-2.705,1.344c-0.47,0-0.86-0.154-1.172-0.462s-0.467-0.694-0.467-1.158c0-0.628,0.27-1.192,0.811-1.694c0.54-0.502,1.718-1.17,3.533-2.004v-0.832c0-0.625-0.034-1.019-0.103-1.181s-0.197-0.304-0.387-0.425
				s-0.403-0.182-0.641-0.182c-0.386,0-0.702,0.086-0.948,0.258c-0.152,0.105-0.229,0.23-0.229,0.372c0,0.124,0.082,0.278,0.246,0.462c0.223,0.254,0.334,0.5,0.334,0.736c0,0.29-0.107,0.537-0.321,0.74c-0.214,0.205-0.494,0.307-0.839,0.307
				c-0.369,0-0.678-0.111-0.927-0.336c-0.249-0.223-0.374-0.484-0.374-0.785c0-0.424,0.167-0.828,0.501-1.214c0.334-0.386,0.8-0.681,1.399-0.888c0.598-0.205,1.22-0.309,1.865-0.309c0.78,0,1.397,0.166,1.852,0.498s0.75,0.691,0.885,1.078
				c0.082,0.247,0.123,0.813,0.123,1.7v3.197c0,0.376,0.014,0.612,0.043,0.709c0.029,0.097,0.072,0.169,0.13,0.216s0.125,0.07,0.202,0.07c0.148,0,0.3-0.105,0.455-0.318l0.264,0.207c-0.291,0.432-0.592,0.746-0.903,0.942s-0.664,0.294-1.059,0.294
				c-0.465,0-0.828-0.111-1.09-0.334s-0.421-0.559-0.479-1.01z M44.231,379.125v-2.719c-0.714,0.417-1.245,0.863-1.592,1.339c-0.23,0.317-0.345,0.638-0.345,0.96c0,0.271,0.097,0.508,0.292,0.713c0.147,0.159,0.354,0.238,0.619,0.238
				c0.295,0,0.637-0.177,1.026-0.531z"/>
			<path d="M52.075,372.781l0.008,1.864c0.544-0.852,1.021-1.417,1.431-1.696c0.41-0.278,0.805-0.418,1.186-0.418c0.322,0,0.58,0.102,0.773,0.305s0.29,0.488,0.29,0.859c0,0.393-0.095,0.699-0.284,0.916c-0.189,0.218-0.417,0.326-0.685,0.326
				c-0.309,0-0.577-0.1-0.804-0.299c-0.227-0.2-0.361-0.313-0.402-0.336c-0.058-0.035-0.125-0.053-0.201-0.053c-0.168,0-0.327,0.064-0.477,0.193c-0.237,0.199-0.417,0.483-0.538,0.853c-0.185,0.568-0.277,1.195-0.277,1.881l0.009,1.89l0.002,0.496
				c0,0.334,0.02,0.548,0.061,0.642c0.069,0.158,0.172,0.274,0.309,0.347c0.136,0.074,0.367,0.119,0.692,0.137V381h-4.438v-0.313c0.354-0.029,0.594-0.127,0.719-0.295s0.188-0.611,0.188-1.33v-4.531c0-0.477-0.023-0.779-0.07-0.91
				c-0.058-0.167-0.142-0.289-0.252-0.367c-0.11-0.076-0.305-0.131-0.584-0.16v-0.313h3.344z"/>
			<path d="M59.877,372.781v6.5c0,0.588,0.068,0.963,0.204,1.126s0.401,0.257,0.796,0.28V381h-4.469v-0.313c0.369-0.012,0.643-0.118,0.821-0.32c0.119-0.137,0.179-0.498,0.179-1.086V374.5c0-0.588-0.069-0.963-0.206-1.126s-0.402-0.257-0.794-0.28v-0.313h3.469z
				 M58.638,368.813c0.381,0,0.704,0.134,0.968,0.4c0.264,0.268,0.396,0.588,0.396,0.963c0,0.376-0.134,0.695-0.4,0.959c-0.267,0.265-0.588,0.396-0.963,0.396c-0.375,0-0.695-0.132-0.959-0.396c-0.264-0.264-0.396-0.583-0.396-0.959c0-0.375,0.132-0.695,0.396-0.963
				c0.264-0.267,0.583-0.4,0.959-0.4z"/>
		</g>
		<g style="stroke:none;">
			<path d="M337.417,87.073c3.797-0.141,6.882,0.966,9.255,3.318c2.373,2.354,3.56,5.297,3.56,8.832c0,3.021-0.885,5.678-2.654,7.972c-2.344,3.044-5.654,4.565-9.932,4.565c-4.289,0-7.605-1.451-9.949-4.354c-1.852-2.294-2.777-5.016-2.777-8.165
				c0-3.535,1.204-6.481,3.612-8.841c2.408-2.358,5.37-3.468,8.886-3.327z M337.628,88.198c-2.17,0-3.821,1.112-4.952,3.337c-0.922,1.826-1.382,4.449-1.382,7.867c0,4.063,0.711,7.065,2.135,9.009c0.991,1.358,2.379,2.037,4.164,2.037
				c1.201,0,2.204-0.292,3.01-0.878c1.025-0.749,1.824-1.946,2.396-3.591c0.571-1.645,0.857-3.79,0.857-6.437c0-3.149-0.292-5.506-0.875-7.068c-0.584-1.563-1.327-2.666-2.231-3.311c-0.904-0.644-1.944-0.966-3.122-0.966z"/>
			<path d="M359.358,88.737V94.8h3.875v1.75h-3.875v10.17c0,0.952,0.042,1.566,0.128,1.843s0.237,0.5,0.454,0.67s0.416,0.255,0.599,0.255c0.741,0,1.442-0.583,2.104-1.75l0.527,0.386c-0.941,2.243-2.47,3.364-4.584,3.364c-1.035,0-1.909-0.29-2.624-0.871
				c-0.715-0.58-1.171-1.229-1.368-1.944c-0.116-0.398-0.174-1.478-0.174-3.237V96.55h-2.188v-0.62c1.488-1.051,2.756-2.154,3.802-3.313c1.045-1.157,1.958-2.45,2.738-3.88h0.585z"/>
			<path d="M373.847,108.8c-2.01,1.792-3.813,2.688-5.41,2.688c-0.939,0-1.721-0.308-2.344-0.924s-0.934-1.389-0.934-2.316c0-1.256,0.54-2.386,1.621-3.39c1.08-1.004,3.436-2.339,7.066-4.006v-1.664c0-1.25-0.068-2.038-0.205-2.362s-0.395-0.607-0.774-0.85
				s-0.807-0.363-1.281-0.363c-0.771,0-1.403,0.172-1.896,0.515c-0.305,0.213-0.457,0.462-0.457,0.745c0,0.249,0.164,0.557,0.492,0.923c0.445,0.51,0.668,1.001,0.668,1.474c0,0.58-0.214,1.073-0.642,1.481s-0.987,0.612-1.679,0.612c-0.738,0-1.356-0.224-1.854-0.671
				s-0.747-0.971-0.747-1.571c0-0.848,0.334-1.656,1.003-2.428c0.668-0.771,1.601-1.362,2.798-1.774c1.196-0.412,2.439-0.618,3.73-0.618c1.56,0,2.794,0.332,3.703,0.995c0.909,0.664,1.499,1.383,1.77,2.158c0.164,0.493,0.246,1.626,0.246,3.399v6.395
				c0,0.752,0.028,1.225,0.087,1.418c0.058,0.193,0.145,0.338,0.26,0.432s0.25,0.141,0.403,0.141c0.297,0,0.601-0.212,0.91-0.636l0.527,0.412c-0.582,0.865-1.184,1.494-1.806,1.886s-1.328,0.588-2.118,0.588c-0.93,0-1.656-0.223-2.18-0.667
				c-0.523-0.445-0.843-1.118-0.959-2.021z M373.847,107.487v-5.438c-1.428,0.834-2.489,1.727-3.185,2.678c-0.461,0.635-0.69,1.274-0.69,1.92c0,0.541,0.194,1.017,0.584,1.427c0.295,0.317,0.707,0.476,1.238,0.476c0.59,0,1.273-0.354,2.053-1.063z"/>
			<path d="M389.472,94.8v2.125c0.842-0.916,1.649-1.582,2.422-1.999s1.604-0.626,2.493-0.626c1.064,0,1.947,0.297,2.649,0.891s1.17,1.33,1.404,2.211c0.188,0.67,0.281,1.956,0.281,3.859v6.414c0,1.26,0.112,2.044,0.338,2.353c0.225,0.309,0.695,0.504,1.412,0.585
				v0.625h-8.313v-0.625c0.624-0.081,1.071-0.338,1.343-0.77c0.188-0.291,0.282-1.014,0.282-2.168v-7.333c0-1.352-0.053-2.203-0.157-2.556c-0.105-0.353-0.283-0.626-0.533-0.82c-0.25-0.193-0.526-0.291-0.828-0.291c-1.002,0-1.933,0.729-2.794,2.188v8.813
				c0,1.225,0.114,2,0.344,2.326s0.656,0.53,1.281,0.611v0.625h-8.313v-0.625c0.682-0.069,1.166-0.291,1.455-0.664c0.196-0.256,0.295-1.014,0.295-2.273v-9.313c0-1.25-0.113-2.029-0.338-2.336c-0.226-0.307-0.696-0.507-1.412-0.602V94.8h6.688z"/>
			<path d="M409.181,94.8v13c0,1.176,0.136,1.926,0.407,2.252s0.802,0.514,1.593,0.561v0.625h-8.938v-0.625c0.738-0.023,1.285-0.236,1.643-0.641c0.238-0.272,0.357-0.996,0.357-2.172v-9.563c0-1.175-0.138-1.926-0.411-2.252s-0.804-0.513-1.589-0.561V94.8h6.938z
				 M406.703,86.862c0.762,0,1.407,0.268,1.936,0.801c0.527,0.534,0.792,1.177,0.792,1.927c0,0.751-0.268,1.391-0.801,1.918c-0.534,0.528-1.177,0.792-1.927,0.792c-0.751,0-1.391-0.264-1.918-0.792c-0.528-0.527-0.792-1.167-0.792-1.918
				c0-0.75,0.264-1.393,0.792-1.927c0.527-0.533,1.167-0.801,1.918-0.801z"/>
			<path d="M426.683,102.362h-9.125c0.106,2.2,0.694,3.938,1.763,5.215c0.818,0.982,1.804,1.473,2.955,1.473c0.712,0,1.358-0.194,1.94-0.584c0.581-0.39,1.204-1.091,1.869-2.104l0.598,0.438c-0.896,1.797-1.885,3.068-2.968,3.816
				c-1.084,0.747-2.338,1.121-3.762,1.121c-2.449,0-4.305-0.938-5.564-2.815c-1.013-1.513-1.519-3.39-1.519-5.631c0-2.744,0.744-4.929,2.234-6.554c1.489-1.625,3.235-2.438,5.237-2.438c1.672,0,3.123,0.678,4.354,2.033s1.893,3.365,1.987,6.029z M422.37,101.237
				c0-1.87-0.104-3.153-0.313-3.851s-0.535-1.226-0.977-1.586c-0.252-0.209-0.586-0.313-1.004-0.313c-0.622,0-1.13,0.297-1.523,0.889c-0.705,1.034-1.058,2.451-1.058,4.252v0.609h4.875z"/>
			<path d="M435.599,94.8v2.225c0.902-1.01,1.738-1.717,2.507-2.12c0.769-0.402,1.61-0.604,2.525-0.604c1.055,0,1.94,0.252,2.656,0.756c0.715,0.504,1.267,1.271,1.654,2.302c0.937-1.079,1.835-1.858,2.696-2.338c0.86-0.479,1.759-0.72,2.696-0.72
				c1.136,0,2.04,0.262,2.714,0.784c0.674,0.523,1.142,1.187,1.405,1.991s0.396,2.089,0.396,3.851v6.749c0,1.26,0.112,2.041,0.338,2.344c0.225,0.303,0.695,0.501,1.412,0.594v0.625h-8.5v-0.625c0.675-0.059,1.172-0.314,1.492-0.77c0.213-0.314,0.32-1.037,0.32-2.168
				v-7.041c0-1.459-0.059-2.388-0.175-2.785c-0.117-0.396-0.301-0.691-0.551-0.885c-0.251-0.192-0.546-0.289-0.884-0.289c-0.502,0-1.009,0.185-1.521,0.552c-0.514,0.367-1.032,0.919-1.557,1.653v8.795c0,1.178,0.101,1.918,0.304,2.221
				c0.273,0.432,0.797,0.67,1.571,0.717v0.625h-8.563v-0.625c0.459-0.023,0.821-0.137,1.087-0.341c0.265-0.203,0.441-0.448,0.53-0.734c0.088-0.285,0.133-0.906,0.133-1.862v-7.07c0-1.488-0.059-2.421-0.176-2.796s-0.313-0.669-0.588-0.88
				c-0.275-0.211-0.57-0.316-0.887-0.316c-0.469,0-0.896,0.125-1.281,0.375c-0.551,0.369-1.136,1-1.756,1.893v8.795c0,1.154,0.112,1.915,0.338,2.282c0.225,0.367,0.695,0.586,1.412,0.655v0.625h-8.438v-0.625c0.682-0.069,1.166-0.291,1.455-0.664
				c0.196-0.256,0.295-1.014,0.295-2.273v-9.313c0-1.25-0.113-2.029-0.338-2.336c-0.226-0.307-0.696-0.507-1.412-0.602V94.8h6.688z"/>
			<path d="M465.149,94.8v13c0,1.176,0.136,1.926,0.407,2.252s0.802,0.514,1.593,0.561v0.625h-8.938v-0.625c0.738-0.023,1.285-0.236,1.643-0.641c0.238-0.272,0.357-0.996,0.357-2.172v-9.563c0-1.175-0.138-1.926-0.411-2.252s-0.804-0.513-1.589-0.561V94.8h6.938z
				 M462.672,86.862c0.762,0,1.407,0.268,1.936,0.801c0.527,0.534,0.792,1.177,0.792,1.927c0,0.751-0.268,1.391-0.801,1.918c-0.534,0.528-1.177,0.792-1.927,0.792c-0.751,0-1.391-0.264-1.918-0.792c-0.528-0.527-0.792-1.167-0.792-1.918
				c0-0.75,0.264-1.393,0.792-1.927c0.527-0.533,1.167-0.801,1.918-0.801z"/>
		</g>
		<text transform="matrix(1 0 0 1 289.0518 229.2544)">
			<tspan x="0" y="0" style="fill:#002DCD;stroke:none; font-family:'TimesNewRomanPS-BoldMT';">Otakaari</tspan>
		</text>
	</g>
	<!--=========== END OF KARTTA =============-->
	<g id="pallo" fill-opacity="0.6">
		<circle cx="100" cy="200" r="40" style="fill:red"/>
		<circle cx="100" cy="200" r="4" style="fill:blue"/>
	</g>
</svg>
<!-- GO - MM 20.Nov.2000 Farooq -->
