major changes in interface

This commit is contained in:
Rick Companje 2014-01-09 17:05:03 +01:00
parent d0806a0ea1
commit 2cdeaacd14
58 changed files with 2012 additions and 815 deletions

View File

@ -16,6 +16,12 @@ module.exports = function(grunt) {
},
js: {
src: [
'js_src/Events.js',
'js_src/Class.js',
'js_src/Button.js',
'js_src/Popup.js',
'js_src/btnMove.js',
'js_src/WordArt.js',
'js_src/Shape.js',
'js_src/Svg.js',
'js_src/Keyboard.js',

118
js_src/Button.js Normal file
View File

@ -0,0 +1,118 @@
(function($) {
$.fn.Button = function() {
return $(this).each(function(){
$.Button($(this)[0]);
});
};
$.Button = function(element) {
var downTimerFPS = 20;
var _timer = undefined;
var _x,_y;
var isDown = false;
var hoi = "fijn";
var updateCursor = function(e) {
// console.log(e.offsetX);
if (e.offsetX!=undefined) _x = e.offsetX;
if (e.offsetY!=undefined) _y = e.offsetY;
}
var startDownTimer = function() {
if (_timer==undefined) {
_timer = setInterval(onDownTimerInterval, 1000/downTimerFPS);
isDown = true;
}
}
var stopDownTimer = function() {
clearInterval(_timer);
_timer = undefined;
isDown = false;
// _x = undefined;
// _y = undefined;
}
var onDownTimerInterval = function() {
if (_x!=undefined && _y!=undefined) {
$(element).trigger("onButtonHold",{x:_x,y:_y});
} else {
console.log("_x")
//warning... _x or _y not set...
}
}
var onTouchStart = function(e) {
updateCursor(e);
startDownTimer();
}
var onTouchEnd = function(e) {
updateCursor(e);
stopDownTimer();
}
var onTouchMove = function(e) {
updateCursor(e);
startDownTimer();
}
var onMouseDown = function(e) {
updateCursor(e);
startDownTimer();
}
var onMouseUp = function(e) {
updateCursor(e);
stopDownTimer();
}
var onMouseMove = function(e) {
updateCursor(e);
if (isDown) onMouseDrag(e);
}
var onMouseDrag = function(e) {
updateCursor(e);
}
var onDocumentMouseUp = function(e) {
stopDownTimer();
}
var onClick = function(e) {
updateCursor(e);
stopDownTimer();
$(element).trigger("onButtonClick",{x:_x,y:_y});
}
var onStartDrag = function(e) {
console.log("onStartDrag");
}
var onContextMenu = function(e) {
e.preventDefault();
}
//this needs to be done after the function declarations
$(element).bind({
touchstart: onTouchStart,
touchend: onTouchEnd,
touchmove: onTouchMove,
mousedown: onMouseDown,
mouseup: onMouseUp,
mousemove: onMouseMove,
contextmenu: onContextMenu,
click: onClick
});
$(document).on("mouseup", onDocumentMouseUp);
$(element).css("-webkit-user-select","none");
$(element).css("-webkit-touch-callout","none");
}
}(jQuery));

64
js_src/Class.js Normal file
View File

@ -0,0 +1,64 @@
/* Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
// Inspired by base2 and Prototype
(function(){
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
// The base Class implementation (does nothing)
this.Class = function(){};
// Create a new Class that inherits from this class
Class.extend = function(prop) {
var _super = this.prototype;
// Instantiate a base class (but only create the instance,
// don't run the init constructor)
initializing = true;
var prototype = new this();
initializing = false;
// Copy the properties over onto the new prototype
for (var name in prop) {
// Check if we're overwriting an existing function
prototype[name] = typeof prop[name] == "function" &&
typeof _super[name] == "function" && fnTest.test(prop[name]) ?
(function(name, fn){
return function() {
var tmp = this._super;
// Add a new ._super() method that is the same method
// but on the super-class
this._super = _super[name];
// The method only need to be bound temporarily, so we
// remove it when we're done executing
var ret = fn.apply(this, arguments);
this._super = tmp;
return ret;
};
})(name, prop[name]) :
prop[name];
}
// The dummy class constructor
function Class() {
// All construction is actually done in the init method
if ( !initializing && this.init )
this.init.apply(this, arguments);
}
// Populate our constructed prototype object
Class.prototype = prototype;
// Enforce the constructor to be what we expect
Class.prototype.constructor = Class;
// And make this class extendable
Class.extend = arguments.callee;
return Class;
};
})();

View File

@ -13,12 +13,9 @@ function initKeyboard() {
case 'n': clearDoodle(); break;
case 'p': print(); break;
case 'u': oopsUndo(); break;
case 'e': settingsWindow.downloadGcode(); break;
case 'g': settingsWindow.downloadGcode(); break;
case 'q': stopPrint(); break;
case ',': openSettingsWindow(); break;
case 'C': drawCircle(250,180,80,64); break; //x,y,r,res
case 'T': drawCircle(250,180,80,3); break; //triangle
case 'X': drawCircle(250,180,80,6); break; //hexagon
case 'h': previewUp(true); break;
case 'H': previewDown(true); break;
case 's': saveSketch(); break;
@ -26,9 +23,20 @@ function initKeyboard() {
case 'l': prevDoodle(); break;
case '[': previewTwistLeft(); break;
case ']': previewTwistRight(); break;
case '\'': resetTwist(); break;
case '|': resetTwist(); break;
case 't': showWordArtDialog(); break;
case 'i': showShapeDialog(); break;
case ';': moveShape(-5,0); break;
case '\'': moveShape(5,0); break;
case '-': zoomShape(.95); break;
case '+': zoomShape(1.05); break;
case 'r': rotateShape(.1); break;
case 'R': rotateShape(-.1); break;
default: console.log("Key: '" + ch + "' (" + event.which + ")");
}
event.preventDefault(); //prevents the character to end up in a focussed textfield
})
}

11
js_src/Popup.js Normal file
View File

@ -0,0 +1,11 @@
function showPopup(popup) {
$(".popupMask").show();
popup.show();
keyboardShortcutsEnabled=false;
}
function hidePopup(popup) {
$(".popupMask").hide();
popup.hide();
keyboardShortcutsEnabled=true;
}

View File

@ -146,6 +146,8 @@ function Printer() {
var firstOne = (sendIndex == 0)? true : false;
var start = firstOne; // start printing right away
message.set("Sending doodle to printer..."+sendIndex,Message.NOTICE);
var completed = false;
if (this.gcode.length < (sendIndex + sendLength)) {
console.log(" sending less than max sendLength (and last)");

View File

@ -1,13 +1,96 @@
var shapeResolution=3;
function initShapeDialog() {
$(".btnShapeOk").on("onButtonClick",onShapeOk);
$(".btnShapeCancel").on("onButtonClick",onShapeCancel);
$(".btnShapePlus").on("onButtonHold",onShapePlus);
$(".btnShapeMin").on("onButtonHold",onShapeMin);
updateShapePreview();
}
function showShapeDialog() {
showPopup(popupShape);
}
function onShapeCancel() {
hidePopup(popupShape);
}
function onShapeOk() {
hidePopup(popupShape);
var res = shapeResolution;
if (res!=undefined) {
if (isNaN(res)) res=3;
if (res<2) res=2;
if (res>100) res=100;
drawCircle(canvasWidth/2,canvasHeight/2,80,res);
}
}
function onShapePlus() {
shapeResolution++;
if (shapeResolution>50) shapeResolution=50;
updateShapePreview();
}
function onShapeMin() {
shapeResolution--;
if (shapeResolution<2) shapeResolution=2;
updateShapePreview();
}
function updateShapePreview() {
$(".lblShapeResolution").text(shapeResolution + " sides");
var canvas = $(".shapePreview")[0];
var c = canvas.getContext('2d');
var w = canvas.width;
var h = canvas.height;
console.log(w,h);
var r = w/2 - 20;
var x0 = w/2;
var y0 = h/2;
var res = shapeResolution;
var step = Math.PI * 2.0 / res;
c.save();
c.clearRect(0,0,canvas.width, canvas.height);
c.restore();
c.beginPath();
for (var a=0; a<Math.PI*2; a+=step) {
var x = Math.sin(a+Math.PI) * r + x0;
var y = Math.cos(a+Math.PI) * r + y0;
if (a==0) c.moveTo(x,y);
else c.lineTo(x,y);
}
//close shape
var x = Math.sin(0+Math.PI) * r + x0;
var y = Math.cos(0+Math.PI) * r + y0;
c.lineTo(x,y);
//draw shape
c.lineWidth = 2;
c.stroke();
}
function drawCircle(x0,y0,r,res) {
if (res==undefined) res = 50; //circle resolution
beginShape();
var step=Math.PI * 2.0 / res;
for (var a=0; a<=Math.PI*2; a+=step) {
var x = Math.sin(a) * r + x0;
var y = Math.cos(a) * r + y0;
var step = Math.PI * 2.0 / res;
for (var a=0; a<Math.PI*2; a+=step) {
var x = Math.sin(a+Math.PI) * r + x0;
var y = Math.cos(a+Math.PI) * r + y0;
if (a==0) shapeMoveTo(x,y);
else shapeLineTo(x,y);
}
//close shape
var x = Math.sin(0+Math.PI) * r + x0;
var y = Math.cos(0+Math.PI) * r + y0;
shapeLineTo(x,y);
endShape();
}
@ -27,8 +110,83 @@ function shapeLineTo(x,y) {
adjustBounds(x, y)
adjustPreviewTransformation();
draw(x, y);
// console.log(x,y);
}
function endShape() {
renderToImageDataPreview();
}
function getBounds(points) {
var xMin=9999,xMax=-9999,yMin=9999,yMax=-9999;
for (var i=0; i<points.length; i++) {
var p = points[i];
xMin = Math.min(xMin,p[0]);
xMax = Math.max(xMax,p[0]);
yMin = Math.min(yMin,p[1]);
yMax = Math.max(yMax,p[1]);
}
return {x:xMin,y:yMin,width:xMax-xMin,height:yMax-yMin};
}
function translatePoints(points,x,y) {
for (var i=0; i<points.length; i++) {
points[i][0] += x;
points[i][1] += y;
}
}
function scalePoints(points,x,y) {
if (y==undefined) y = x;
for (var i=0; i<points.length; i++) {
points[i][0] *= x;
points[i][1] *= y;
}
}
function rotatePoints(points, radians, cx, cy) {
if (cx==undefined) cx = 0;
if (cy==undefined) cy = 0;
var cos = Math.cos(radians);
var sin = Math.sin(radians);
for (var i=0; i<points.length; i++) {
var x = points[i][0];
var y = points[i][1];
var nx = (cos * (x - cx)) - (sin * (y - cy)) + cx;
var ny = (sin * (x - cx)) + (cos * (y - cy)) + cy;
points[i][0] = nx;
points[i][1] = ny;
}
}
function moveShape(x,y) {
translatePoints(_points,x,y);
updateView();
}
function zoomShape(zoomValue) {
var bounds = getBounds(_points);
translatePoints(_points,-bounds.x,-bounds.y);
translatePoints(_points,-bounds.width/2,-bounds.height/2);
scalePoints(_points,zoomValue,zoomValue);
translatePoints(_points,bounds.width/2,bounds.height/2);
translatePoints(_points,bounds.x,bounds.y);
updateView();
}
function rotateShape(radians) {
var bounds = getBounds(_points);
var cx = bounds.x + bounds.width/2;
var cy = bounds.y + bounds.height/2;
rotatePoints(_points, radians, cx, cy);
updateView();
}
function updateView() {
setSketchModified(true);
redrawDoodle();
adjustPreviewTransformation();
renderToImageDataPreview();
}

139
js_src/WordArt.js Normal file
View File

@ -0,0 +1,139 @@
function initWordArt() {
$("body").append('<div id="svgfont" style="display:none"></div>');
$("#svgfont").load("img/font.svg?");
$(".btnWordArtOk").on("onButtonClick",onWordArtOk);
$(".btnWordArtCancel").on("onButtonClick",onWordArtCancel);
}
function showWordArtDialog() {
buttonGroupAdd.hide();
showPopup(popupWordArt);
$(".txtWordArt").focus();
$(".txtWordArt").val(""); //clear textbox
}
function onWordArtCancel() {
hidePopup(popupWordArt);
}
function onWordArtOk() {
hidePopup(popupWordArt);
var s = $(".txtWordArt").val();
if (s!=undefined) {
var points = getStringAsPoints(s);
var bounds = getBounds(points);
var scaleX = (canvasWidth-50) / bounds.width;
var scaleY = (canvasHeight-50) / bounds.height;
var scale = Math.min(scaleX,scaleY);
scalePoints(points,scale);
var bounds = getBounds(points);
translatePoints(points,-bounds.x,-bounds.y); //left top of text is (0,0)
translatePoints(points,-bounds.width/2,-bounds.height/2); //anchor point center
translatePoints(points,canvasWidth/2,canvasHeight/2); //center in canvas
canvasDrawPoints(canvas,points);
}
}
function getStringAsPoints(text) {
var allPoints = [];
var xPos = 0;
for (var i=0; i<text.length; i++) {
if (text[i]==" ") { //space
xPos += 8;
} else { //other characters
var path = getPathFromChar(text[i]);
var points = getPointsFromPath(path);
if (points.length==0) continue;
translatePoints(points,-points[0][0],0);
var bounds = getBounds(points);
translatePoints(points,-bounds.x,0);
translatePoints(points,xPos,0);
xPos+=bounds.width;
xPos+=2;
for (var j=0; j<points.length; j++) {
allPoints.push(points[j]);
}
}
}
return allPoints;
}
function getPathFromChar(ch) {
var index = ch.charCodeAt(0)-33;
var element = $("#svgfont path")[index];
if (element==undefined) return "";
return $("#svgfont path")[index].attributes["d"].nodeValue;
}
// function translatePoints(points,x,y) {
// for (var i=0; i<points.length; i++) {
// points[i].x += x;
// points[i].y += y;
// }
// }
// function scalePoints(points,x,y) {
// if (y==undefined) y = x;
// for (var i=0; i<points.length; i++) {
// points[i].x *= x;
// points[i].y *= y;
// }
// }
function getPointsFromPath(path) {
var points = [];
var cmds = path.split(' ');
var cursor = { x:0.0, y:0.0 };
var move = false;
for (var i=0; i<cmds.length; i++) {
var cmd = cmds[i];
var xy = cmds[i].split(",");
if (cmd=='m') move = true;
if (xy.length==2) {
cursor.x += parseFloat(xy[0]);
cursor.y += parseFloat(xy[1]);
points.push([cursor.x,cursor.y,move]); //{x:cursor.x,y:cursor.y,move:move})
move = false;
}
}
return points;
}
// function getBounds(points) {
// var xMin=9999,xMax=-9999,yMin=9999,yMax=-9999;
// for (var i=0; i<points.length; i++) {
// var p = points[i];
// xMin = Math.min(xMin,p.x);
// xMax = Math.max(xMax,p.x);
// yMin = Math.min(yMin,p.y);
// yMax = Math.max(yMax,p.y);
// }
// return {x:xMin,y:yMin,width:xMax-xMin,height:yMax-yMin};
// }
function canvasDrawPoints(canvas,points) {
beginShape();
for (var i=0; i<points.length; i++) {
var p = points[i];
if (points[i][2]) shapeMoveTo(p[0],p[1]);
else shapeLineTo(p[0],p[1]);
}
endShape();
}

View File

@ -1,17 +1,8 @@
var btnMoveUpInterval;
var btnMoveDownInterval;
var btnTwistLeftInterval;
var btnTwistRightInterval;
var twistIncrement = Math.PI/1800;
var btnOopsInterval;
var btnNew, btnPrevious, btnNext;
var btnOops, btnStop, btnClear;
var btnMoveUp, btnMoveDown, btnTwistLeft, btnTwistRight;
var btnInfo, btnSettings;
//var btnDebug; // debug
var btnNew, btnPrevious, btnNext, btnOops, btnStop, btnInfo, btnRotate;
var btnSettings, btnWordArt, btnZoom, btnMove, btnUpDown, btnTwist, btnShape, btnEditClosed, btnEditOpen;
var btnDiv,btnConv,btnStraight,btnSine, buttonGroupAdd, popupWordArt;
var state;
var prevState;
@ -23,159 +14,179 @@ var gcodeGenerateDelay = 50;
function initButtonBehavior() {
console.log("f:initButtonBehavior");
// btnClear= $(".btnClear");
$(".btn").Button(); //initalizes all buttons
btnOops = $(".btnOops");
btnMoveUp = $("#btnMoveUp");
btnMoveDown = $("#btnMoveDown");
btnTwistLeft = $("#btnTwistLeft");
btnTwistRight = $("#btnTwistRight");
btnInfo = $(".btnInfo");
btnSettings = $(".btnSettings");
btnNew = $(".btnNew");
btnPrint= $(".btnPrint");
btnStop = $(".btnStop");
btnPrevious = $(".btnPrevious");
btnNext = $(".btnNext");
btnSave = $(".btnSave");
btnWordArt = $(".btnWordArt");
btnZoom = $(".btnZoom");
btnUpDown = $(".btnUpDown");
btnMove = $(".btnMove");
btnTwist = $(".btnTwist");
btnShape = $(".btnShape");
btnRotate = $(".btnRotate");
btnEditClosed = $(".btnEditClosed");
btnEditOpen = $(".btnEditOpen");
btnStraight = $(".btnStraight");
btnDiv = $(".btnDiv");
btnConv = $(".btnConv");
btnSine = $(".btnSine");
btnAdd = $(".btnAdd");
buttonGroupAdd = $(".buttonGroupAdd");
popupWordArt = $(".popupWordArt");
popupShape = $(".popupShape");
//debug
//btnDebug = $(".debugBtn");
btnNew.on('touchstart mousedown', clearDoodle);
btnPrint.on('touchstart mousedown', print);
btnNew.on("onButtonClick", onBtnNew);
btnWordArt.on("onButtonClick", onBtnWordArt);
btnPrint.on("onButtonClick", onBtnPrint);
btnZoom.on("onButtonHold", onBtnZoom);
btnOops.on("onButtonHold", onBtnOops);
btnUpDown.on("onButtonHold", onBtnUpDown);
btnMove.on("onButtonHold", onBtnMove);
btnTwist.on("onButtonHold", onBtnTwist);
btnShape.on("onButtonClick", onBtnShape);
btnRotate.on("onButtonHold", onBtnRotate);
btnEditClosed.on("onButtonClick", onBtnEditClosed);
btnEditOpen.on("onButtonHold", onBtnEditOpen);
btnEditOpen.on("onButtonClick", onBtnEditOpen);
btnStraight.on("onButtonClick", onBtnStraight);
btnDiv.on("onButtonClick", onBtnDiv);
btnConv.on("onButtonClick", onBtnConv);
btnSine.on("onButtonClick", onBtnSine);
btnAdd.on("onButtonClick", onBtnAdd);
getSavedSketchStatus();
setSketchModified(false);
//updatePrevNextButtonStateOnClear();
// btnClear.click(function(e) {
// e.preventDefault();
// // console.log("clear");
//
// clearDoodle();
// });
function startOops(e) {
console.log("f:startOops()");
e.preventDefault();
btnOopsInterval = setInterval( function() {
oopsUndo();
}, 1000/40);
function onBtnAdd() {
buttonGroupAdd.toggle();
}
function stopOops(e) {
console.log("f:stopOops()");
e.preventDefault();
clearInterval(btnOopsInterval);
redrawDoodle(true);
renderToImageDataPreview();
// redrawPreview();
}
btnOops.on('touchstart', function(e) { startOops(e); });
btnOops.on('touchend', function(e) { stopOops(e); });
btnOops.mousedown(function(e) { startOops(e); });
btnOops.mouseup(function(e) { stopOops(e); });
function startMoveUp(e) {
e.preventDefault();
// console.log("btnMoveUp mouse down");
if (_points.length > 1) {
previewUp(true);
clearInterval(btnMoveUpInterval);
btnMoveUpInterval = setInterval( function() {
previewUp(true);
}, 1000/30);
function onBtnStraight() {
setVerticalShape(verticalShapes.NONE);
}
function onBtnDiv() {
setVerticalShape(verticalShapes.DIVERGING);
}
function onBtnConv() {
setVerticalShape(verticalShapes.CONVERGING);
}
function onBtnSine() {
setVerticalShape(verticalShapes.SINUS);
}
function onBtnEditClosed(e,cursor) {
btnEditClosed.hide();
btnEditOpen.show();
}
function hitTest(cursor,button,radius) {
return distance(cursor.x,cursor.y,button.x,button.y)<radius;
}
function onBtnEditOpen(e,cursor) {
// image is shown as 75% of its size (for retina screens)
cursor.x /= .75;
cursor.y /= .75;
if (cursor.x < 27 && cursor.y < 27) {
btnEditOpen.hide();
btnEditClosed.show();
} else {
var btnUp = { x:59, y:38 };
var btnDown = { x:59, y:89 };
var btnLeft = { x:35, y:63 };
var btnRight = { x:86, y:64 };
var btnZoomIn = { x:33, y:133 };
var btnZoomOut = { x:33, y:165 };
var btnRotateCCW = { x:85, y:136 };
var btnRotateCW = { x:86, y:167 };
var step = 5;
var radius = 20;
if (hitTest(cursor,btnLeft,radius)) moveShape(-step,0);
else if (hitTest(cursor,btnRight,radius)) moveShape(step,0);
else if (hitTest(cursor,btnUp,radius)) moveShape(0,-step);
else if (hitTest(cursor,btnDown,radius)) moveShape(0,step);
else if (hitTest(cursor,btnZoomIn,radius)) zoomShape(1.05);
else if (hitTest(cursor,btnZoomOut,radius)) zoomShape(.95);
else if (hitTest(cursor,btnRotateCCW,radius)) rotateShape(-.1);
else if (hitTest(cursor,btnRotateCW,radius)) rotateShape(.1);
// console.log(cursor);
}
}
function stopMoveUp(e) {
e.preventDefault();
// console.log("btnMoveUp mouse up");
clearInterval(btnMoveUpInterval);
if (_points.length > 1) previewUp();
}
btnMoveUp.mousedown(function(e) { startMoveUp(e) });
btnMoveUp.mouseup(function(e) { stopMoveUp(e) });
btnMoveUp.on('touchstart', function(e) { startMoveUp(e) });
btnMoveUp.on('touchend', function(e) { stopMoveUp(e) });
function startMoveDown(e) {
e.preventDefault();
// console.log("btnMoveDown mouse down");
if (_points.length > 1) {
previewDown(true);
clearInterval(btnMoveDownInterval);
btnMoveDownInterval = setInterval( function() {
previewDown(true);
}, 1000/30);
}
}
function stopMoveDown(e) {
e.preventDefault();
// console.log("btnMoveDown mouse up");
clearInterval(btnMoveDownInterval);
if (_points.length > 1) previewDown();
}
btnMoveDown.mousedown(function(e) { startMoveDown(e) });
btnMoveDown.mouseup(function(e) { stopMoveDown(e) });
btnMoveDown.on('touchstart', function(e) { startMoveDown(e) });
btnMoveDown.on('touchend', function(e) { stopMoveDown(e) });
function onBtnMove(e,cursor) {
var btnUp = { x:40, y:19 };
var btnDown = { x:40, y:54 };
var btnLeft = { x:20, y:41 };
var btnRight = { x:62, y:41 };
var step = 5;
var radius = 20;
function startTwistLeft(e) {
e.preventDefault();
// console.log("btnTwistLeft mouse down");
if (_points.length > 1) {
previewTwistLeft(true);
clearInterval(btnTwistLeftInterval);
btnTwistLeftInterval = setInterval( function() {
previewTwistLeft(true);
}, 1000/30);
}
if (distance(cursor.x,cursor.y,btnLeft.x,btnLeft.y)<radius) moveShape(-step,0);
else if (distance(cursor.x,cursor.y,btnRight.x,btnRight.y)<radius) moveShape(step,0);
else if (distance(cursor.x,cursor.y,btnUp.x,btnUp.y)<radius) moveShape(0,-step);
else if (distance(cursor.x,cursor.y,btnDown.x,btnDown.y)<radius) moveShape(0,step);
}
function stopTwistLeft(e) {
e.preventDefault();
// console.log("btnTwistLeft mouse up");
clearInterval(btnTwistLeftInterval);
if (_points.length > 1) previewTwistLeft();
}
btnTwistLeft.mousedown(function(e) { startTwistLeft(e) });
btnTwistLeft.mouseup(function(e) { stopTwistLeft(e) });
btnTwistLeft.on('touchstart', function(e) { startTwistLeft(e) });
btnTwistLeft.on('touchend', function(e) { stopTwistLeft(e) });
function startTwistRight(e) {
e.preventDefault();
// console.log("btnTwistRight mouse down");
if (_points.length > 1) {
previewTwistRight(true);
clearInterval(btnTwistRightInterval);
btnTwistRightInterval = setInterval( function() {
previewTwistRight(true);
}, 1000/30);
}
function onBtnUpDown(e,cursor) {
if (cursor.y<25) previewUp(true);
else if (cursor.y>55) previewDown(true);
}
function onBtnTwist(e,cursor) {
if (cursor.y<25) previewTwistRight(true);
else if (cursor.y>55) previewTwistLeft(true);
}
function onBtnOops(e) {
oopsUndo();
}
function onBtnNew(e) {
clearDoodle();
}
function onBtnZoom(e,cursor) {
if (cursor.y<25) zoomShape(1.05);
else if (cursor.y>55) zoomShape(.95);
}
function onBtnRotate(e,cursor) {
if (cursor.y<25) rotateShape(.1);
else if (cursor.y>55) rotateShape(-.1);
}
function onBtnPrint(e) {
print();
}
function onBtnWordArt(e) {
showWordArtDialog();
}
function onBtnShape(e) {
showShapeDialog();
buttonGroupAdd.hide();
}
function stopTwistRight(e) {
e.preventDefault();
// console.log("btnTwistRight mouse up");
clearInterval(btnTwistRightInterval);
if (_points.length > 1) previewTwistRight();
}
btnTwistRight.mousedown(function(e) { startTwistRight(e) });
btnTwistRight.mouseup(function(e) { stopTwistRight(e) });
btnTwistRight.on('touchstart', function(e) { startTwistRight(e) });
btnTwistRight.on('touchend', function(e) { stopTwistRight(e) });
/*function openSettings() {
console.log("f:openSettings()");
$("#contentOverlay").fadeIn(1000, function() {
loadSettings();
});
}*/
enableButton(btnSettings, openSettingsWindow);
// btnSettings.on('touchend', function(e) {
// e.preventDefault();
// console.log("btnSettings touchend");
// });
// 29-okt-2013 - we're not doing help for smartphones at the moment
if (clientInfo.isSmartphone) {
@ -188,18 +199,8 @@ function initButtonBehavior() {
});
}
// DEBUG
/*
// $(".agentInfo").css("display", "none");
btnDebug.click(function(e) {
console.log("debugClick");
$(".agentInfo").toggleClass("agentInfoToggle");
e.preventDefault();
})
//*/
//btnStop.on('touchstart mousedown',stopPrint);
}
function stopPrint() {
console.log("f:stopPrint() >> sendPrintCommands = " + sendPrintCommands);
//if (!confirm("Weet je zeker dat je huidige print wilt stoppen?")) return;
@ -209,14 +210,6 @@ function stopPrint() {
}
// function prevDoodle(e) {
// console.log("f:prevDoodle()");
// console.log("f:prevDoodle()");
// }
// function nextDoodle(e) {
// console.log("f:nextDoodle()");
// }
function print(e) {
console.log("f:print() >> sendPrintCommands = " + sendPrintCommands);
@ -301,6 +294,7 @@ function oopsUndo() {
}
redrawPreview();
}
function previewUp(redrawLess) {
// console.log("f:previewUp()");
if (numLayers < maxNumLayers) {

101
js_src/libs/jquery-fastclick.js vendored Normal file
View File

@ -0,0 +1,101 @@
/**
* jQuery.fastClick.js
*
* Work around the 300ms delay for the click event in some mobile browsers.
*
* Code based on <http://code.google.com/mobile/articles/fast_buttons.html>
*
* @usage
* $('button').fastClick(function() {alert('clicked!');});
*
* @license MIT
* @author Dave Hulbert (dave1010)
* @version 1.0.0 2013-01-17
*/
/*global document, window, jQuery, Math */
(function($) {
$.fn.fastClick = function(handler) {
return $(this).each(function(){
$.FastButton($(this)[0], handler);
});
};
$.FastButton = function(element, handler) {
var startX, startY;
var reset = function() {
$(element).unbind('touchend');
$("body").unbind('touchmove.fastClick');
};
var onClick = function(event) {
event.stopPropagation();
reset();
handler.call(this, event);
if (event.type === 'touchend') {
$.clickbuster.preventGhostClick(startX, startY);
}
};
var onTouchMove = function(event) {
if (Math.abs(event.originalEvent.touches[0].clientX - startX) > 10 ||
Math.abs(event.originalEvent.touches[0].clientY - startY) > 10) {
reset();
}
};
var onTouchStart = function(event) {
event.stopPropagation();
$(element).bind('touchend', onClick);
$("body").bind('touchmove.fastClick', onTouchMove);
startX = event.originalEvent.touches[0].clientX;
startY = event.originalEvent.touches[0].clientY;
};
$(element).bind({
touchstart: onTouchStart,
click: onClick
});
};
$.clickbuster = {
coordinates: [],
preventGhostClick: function(x, y) {
$.clickbuster.coordinates.push(x, y);
window.setTimeout($.clickbuster.pop, 2500);
},
pop: function() {
$.clickbuster.coordinates.splice(0, 2);
},
onClick: function(event) {
var x, y, i;
for (i = 0; i < $.clickbuster.coordinates.length; i += 2) {
x = $.clickbuster.coordinates[i];
y = $.clickbuster.coordinates[i + 1];
if (Math.abs(event.clientX - x) < 25 && Math.abs(event.clientY - y) < 25) {
event.stopPropagation();
event.preventDefault();
}
}
}
};
$(function(){
if (document.addEventListener){
document.addEventListener('click', $.clickbuster.onClick, true);
} else if (document.attachEvent){
// for IE 7/8
document.attachEvent('onclick', $.clickbuster.onClick);
}
});
}(jQuery));

View File

@ -57,10 +57,15 @@ $(function() {
initDoodleDrawing();
initPreviewRendering();
initLayouting();
initSidebars();
// initSidebars();
initButtonBehavior();
initKeyboard();
initVerticalShapes();
// initVerticalShapes();
initWordArt();
initShapeDialog();
disableDragging();
if (!clientInfo.isSmartphone) initHelp();
thermometer.init($("#thermometerCanvas"), $("#thermometerContainer"));
@ -113,6 +118,13 @@ $(function() {
}
});
function disableDragging() {
$(document).bind("dragstart", function(event) {
console.log("dragstart");
event.preventDefault();
});
}
function enableButton(elem, handler) {
//var elem = $('#'+domId);
elem.removeClass("disabled");

View File

@ -26,3 +26,7 @@ function isSmartphone() {
return returnBool;
}
function distance(x1, y1, x2, y2) {
return Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
}

View File

@ -1,4 +1,5 @@
var VERTICALSHAPE;
var verticalShapes = {
"NONE": 'none',
"DIVERGING": 'diverging',
@ -6,36 +7,15 @@ var verticalShapes = {
"SINUS": 'sinus'
};
function initVerticalShapes() {
// TODO give these vertical shapes a better spot
VERTICALSHAPE = verticalShapes.NONE;
$(".verticalShapes, .straight").on('mouseup touchend', function(e) {
e.preventDefault();
console.log("diverging");
VERTICALSHAPE = verticalShapes.NONE;
redrawRenderedPreview();
})
$(".verticalShapes, .diverging").on('mouseup touchend', function(e) {
e.preventDefault();
console.log("diverging");
VERTICALSHAPE = verticalShapes.DIVERGING;
redrawRenderedPreview();
})
$(".verticalShapes, .converging").on('mouseup touchend', function(e) {
e.preventDefault();
console.log("converging");
VERTICALSHAPE = verticalShapes.CONVERGING;
redrawRenderedPreview();
})
$(".verticalShapes, .sinus").on('mouseup touchend', function(e) {
e.preventDefault();
console.log("sinus");
VERTICALSHAPE = verticalShapes.SINUS;
redrawRenderedPreview();
})
function setVerticalShape(s) {
VERTICALSHAPE = s;
redrawRenderedPreview();
}
function initVerticalShapes() {
resetVerticalShapes();
}
function resetVerticalShapes() {
VERTICALSHAPE = verticalShapes.NONE;
setVerticalShape(verticalShapes.NONE);
}

View File

@ -1,8 +1,7 @@
/*
GLOBAL CONTAINER
*/
@import "config.less";
body {
@ -10,20 +9,12 @@ body {
user-select: none; /* disable cut copy paste */
overflow:hidden; /* This chops off any overhanging divs */
}
img {
z-index: 5;
/*pointer-events:none;*/
/*-webkit-touch-callout: none; *//*disable callout, image save panel */
/*-webkit-tap-highlight-color: transparent; *//* "turn off" link highlight */
}
/* http://stackoverflow.com/questions/5348092/prevent-default-press-but-not-default-drag-in-ios-mobilesafari */
.btn {
background-repeat: no-repeat;
cursor: pointer;
}
@import "buttons.less";
@import "popup.less";
#landscape {
position:absolute;
// background-color: #fff;
width: 100%;
max-width: 1024px;
max-height: 768px;
@ -31,24 +22,18 @@ img {
bottom: 0;
left: 0;
right: 0;
// z-index: 5;
overflow: hidden;
margin: 0 auto;
// box-sizing: border-box;
// border: 2px solid #5e8c71;
// -moz-box-sizing:border-box;
// -webkit-box-sizing:border-box;// border-width: 0 2px 2px 2px;
// solution from: http://stackoverflow.com/questions/14085822/css-firefox-box-shadow-and-outline
box-shadow: 0 0 0 2px #5e8c71,
0 0 8px 4px rgba(8, 8, 8, 0.25);
// outline: 2px solid #5e8c71;
}
#portrait {
display: none;
}
.bgContainer {
position: absolute;
width: 100%;
@ -62,68 +47,29 @@ img {
left: 0px;
z-index: -5;
}
.bgTop {
top: 0px;
}
.bgMiddle {
top: 30%;
}
.bgBottom {
bottom: 0px;
}
//.rightpanel, .leftpanel {
// img {
// cursor: pointer;
// }
//}
/*
CENTER PANEL
*/
@import "base_centerpanel.less";
/*
LEFT PANEL
*/
@import "base_leftpanel.less";
/*
RIGHT PANEL
*/
@import "base_rightpanel.less";
/*
under all the above styles w.r.t. the cascading effect
*/
.disabled {
opacity: 0.3;
cursor: default;
}
#btnStop.disabled {
display: none;
}
// http://blogs.msdn.com/b/askie/archive/2013/01/06/how-to-implement-the-ms-touch-action-none-property-to-disable-double-tap-zoom-on-touch-devices.aspx
//a, input, button {
// -ms-touch-action: none !important;
//}
// import vertical shapes additions
@import "verticalshapes.less";
/*
REST
*/
/* CLEARFIX */
/* http://nicolasgallagher.com/micro-clearfix-hack/ */

View File

@ -2,57 +2,129 @@
.centerpanel {
position: absolute;
left: 50%;
margin-left: -33%;
width: 66%;
margin-left: -@center-panel-width/2;
width: @center-panel-width;
height: 100%;
// z-index: 5;
padding-top: 1%;
}
.logopanel {
height: 15%;
text-align: center;
width: 40%;
margin-left: 30%;
cursor: pointer;
// top panel
@import "base_centerpanel_logo.less";
img.pencil {
margin-top: 2%;
max-width: 50%;
max-height: 50%;
}
// draw area stuff (plus up/down/left/right buttons)
@import "base_centerpanel_drawarea.less";
img.logo {
max-width: 90%;
margin-bottom: 2%;
max-height: 45%;
}
}
// DRAW AREA
.drawareacontainer {
position: relative;
width: 100%;
height: 79%;
background-color: #fff;
border: 3px solid black;
border-radius: 15px;
box-sizing: border-box;
margin-top: 1%;
}
#canvasContainers {
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
#mycanvasContainer {
position: absolute;
top: 0;
left: 0;
width: 78%;
height: 100%;
}
#mycanvas {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border-right: 2px solid #333;
}
#previewContainer {
position: absolute;
top: 0;
right: 0;
width: 22%;
height: 100%;
}
#preview {
min-width: 50px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#preview_tmp {
display: none;
}
/*
HEIGHT-related RESPONSIVE STUFF
*/
@media screen and (max-height: 700px) {
.logopanel {
height: 22%;
}
.doodlecontainer {
height: 68%;
}
.d3dlogo {
top: 25%;
max-width: 399px;
height: 74px;
background-image: url('../img/logo/logo_small.png');
}
}
@media screen and (max-height: 655px) {
.bgMiddle { opacity: 0; }
.logopanel {
height: 10%;
img.logo {
margin-top: 1%;
max-height: 90%;
}
img.pencil {
display: none;
}
}
.drawareacontainer {
height: 83%;
}
}
@media screen and (max-height: 525px) {
.d3dlogo {
top: 20%;
height: 57px;
max-width: 307px;
background-image: url('../img/logo/logo_smaller.png');
// max-width: 399px;
// background-image: url('../img/logo/logo_smaller_wide.png');
}
}
@media screen and (max-height: 375px) {
.d3dlogo {
height: 40px;
max-width: 216px;
background-image: url('../img/logo/logo_smallest.png');
// max-width: 399px;
// background-image: url('../img/logo/logo_smallest_wide.png');
}
}
}

View File

@ -1,128 +0,0 @@
// import vertical shapes additions
@import "verticalshapes.less";
// DRAW AREA
.drawareacontainer {
position: relative;
width: 100%;
height: 65%;
background-color: #fff;
border: 4px solid #000;
border-radius: 15px;
box-sizing: border-box;
// z-index: 15;
}
#canvasContainers {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
#mycanvasContainer {
position: absolute;
top: 0;
left: 0;
width: 78%;
height: 100%;
}
#mycanvas {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border-right: 2px solid #333;
}
#previewContainer {
position: absolute;
top: 0;
right: 0;
width: 22%;
// max-width: 150px;
height: 100%;
}
#preview {
min-width: 50px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
/* DEBUG THING */
#preview_tmp {
position: absolute;
top: 0px;
left: 0px;
z-index: 500;
border: 1px solid #f80;
display: none;
}
.bottompanel {
position: relative;
bottom: 0px;
width: 100%;
height: 10%;
}
/*
DOODLE UP/DOWN/LEFT/RIGHT buttons
*/
.manipulationBtns {
margin: 2px 5px;
position: absolute;
right: 0;
top: 0;
max-width: 340px;
max-height: 70px;
width: 45%;
}
.manipulationBtn {
width: 45%;
height: auto;
cursor: pointer;
}
#btnsUpDown {
float: left;
width: 45%;
}
#btnsUpDown > div {
float: left;
padding-right: 8px;
background-repeat: no-repeat;
}
#btnsTurnLeftRight {
float: right;
width: 45%;
}
#btnsTurnLeftRight >div {
float: left;
padding-right: 8px;
background-repeat: no-repeat;
}
#btnMoveUp {
max-width: 65px;
}
#btnMoveDown {
max-width: 64px;
}
#btnTwistLeft {
max-width: 59px;
}
#btnTwistRight {
max-width: 64px;
}

View File

@ -1,15 +0,0 @@
.logopanel {
height: 25%;
}
.d3dlogo {
position: relative;
top: 15%;
width: 100%;
height: 100%;
margin: 0px auto;
max-width: 399px;
height: 139px;
background: url('../img/logo/logo_full.png') no-repeat center center;
cursor: pointer;
}

View File

@ -1,42 +1,8 @@
// LEFT PANEL
.leftpanel {
position: absolute;
width: 17%;
// background-color: rgba(67, 204, 67, 0.4);
width: @left-panel-width;
top: 0px;
left: 0px;
bottom: 0px;
}
.btnNew {
margin: 5% 0% 1% 5%;
width: 100%;
max-width: 180px;
height: auto;
}
.btnsPrevNext {
margin: 1% 7%;
max-width: 160px;
}
.btnPrevious {
width: 40%;
max-width: 56px;
height: auto;
}
.btnNext {
width: 40%;
max-width: 56px;
height: auto;
float: right;
}
.btnSave {
margin: 5% 5% 1% 5%;
width: 90%;
max-width: 144px;
height: auto;
}
.btnOops {
margin: 5% 5% 1% 5%;
width: 90%;
max-width: 144px;
height: auto;
}

View File

@ -1,50 +1,16 @@
// RIGHT PANEL
.rightpanel {
position: absolute;
width: 17%;
// background-color: rgba(255, 0, 254, 0.4);
width: @right-panel-width;
top: 0;
right: 0;
bottom: 0;
padding-top: 2%; /* reserve space for status message */
}
.btnPrint {
margin: 1% 5% 5% 0%;
width: 100%;
max-width: 163px;
height: auto;
float: right;
}
.btnStop {
margin: 5% 10% 1% 5%;
float: right;
width: 90%;
max-width: 98px;
height: auto;
}
.btnsSettingsInfo {
position: absolute;
bottom: 25px;
right: 5px;
width: 80%;
margin: 1% 5%;
max-width: 160px;
}
.btnInfo {
width: 40%;
max-width: 53px;
height: auto;
}
.btnSettings {
width: 40%;
max-width: 53px;
height: auto;
float: right;
}
/*
PROGRESSGUAGE AND THERMOMETER SHARED STYLES
*/
.progressbarAppear {
/*margin-right: 1.5% !important;*/
@ -55,104 +21,6 @@
right: -6.5% !important;
}
@import "thermometer.less";
@import "progressbar.less";
/*
PROGRESS GUAGE
*/
.progressbarCanvasContainerParent {
position:relative;
width:100%;
}
#progressbarCanvasContainer {
position: relative;
width: 50%;
float:right;
border: solid #000;
border-width: 2px 0 2px 2px;
border-radius: 15px 0 0 15px;
/*padding: 5px 0px 5px 5px;*/
padding: 5px;
background-color: #fff;
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
transition: right .40s cubic-bezier(0.68, -0.55, 0.265, 1.55);
right: -70%;
margin: 5% 0%;
}
#progressbarCanvas {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: auto;
background-color: #fff;
// border: solid #000;
// border-width: 2px 0 2px 2px;
// border-radius: 15px 0 0 15px;
// padding: 5px 0px 5px 5px;
//
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
}
/*
THERMOMETER
*/
.thermometerContainerParent {
position:relative;
width:100%;
padding-top: 10px;
}
#thermometerContainer {
position: relative;
width: 45%;
float: right;
background-color: #fff;
border: solid #000;
border-width: 2px 0 2px 2px;
border-radius: 15px 0 0 15px;
padding: 5px;
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
transition: right .50s cubic-bezier(0.68, -0.55, 0.265, 1.55);
right: -65%;
}
#thermometerCanvas {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: auto;
background-color: #fff;
// border: solid #000;
// border-width: 2px 0 2px 2px;
// border-radius: 15px 0 0 15px;
// padding: 5px 0px 5px 5px;
//
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
}
//#thermometerContainer {
// position: absolute;
// right: 25px;
// top: 370px;
//}
//#thermometerCanvas {
///*background: #59b2b8;*/
///*zoom: 2;*/
//}

165
less/buttons.less Normal file
View File

@ -0,0 +1,165 @@
/* http://stackoverflow.com/questions/5348092/prevent-default-press-but-not-default-drag-in-ios-mobilesafari */
.btn {
background-repeat: no-repeat;
cursor: pointer;
}
.btn.disabled {
opacity: 0.3;
cursor: default;
}
.btnPrint {
margin: 1% 5% 5% 0%;
width: 90%;
max-width: 163px;
height: auto;
float: right;
}
.btnStop {
margin: 5% 5% 1% 5%;
float: right;
width: 80%;
max-width: 98px;
height: auto;
}
.btnsSettingsInfo {
position: absolute;
bottom: 4%; //25px;
right: 5px;
width: 80%;
margin: 1% 5%;
max-width: 160px;
}
.btnInfo {
width: 40%;
max-width: 53px;
height: auto;
}
.btnSettings {
width: 40%;
max-width: 53px;
height: auto;
float: right;
}
.btnNew {
margin: 5% 0% 1% 5%;
width: 90%;
max-width: 130px;
height: auto;
}
.btnsPrevNext {
margin: 1% 7%;
max-width: 100px;
}
.btnPrevious {
width: 40%;
max-width: 56px;
height: auto;
}
.btnNext {
width: 40%;
max-width: 56px;
height: auto;
float: right;
}
.btnSave {
margin: 4% 5% 1% 5%;
width: 90%;
max-width: 100px;
height: auto;
}
.btnOops {
margin: 5% 5% 1% 5%;
width: 90%;
max-width: 100px;
height: auto;
}
.btnAdd {
width: 90%;
max-width: 100px;
margin: 5% 5% 1% 5%;
}
/*
DOODLE UP/DOWN/LEFT/RIGHT buttons
*/
.manipulationBtns {
margin: 2px 5px;
position: absolute;
right: 0;
top: 0;
max-width: 340px;
max-height: 70px;
width: 45%;
}
.manipulationBtn {
width: 45%;
height: auto;
cursor: pointer;
}
.btnVertical {
width: 35%;
display: none;
}
.btnEditClosed {
top: 5px;
left: 5px;
width: .75*31px;
position: absolute;
}
.btnEditOpen {
position: absolute;
top: 5px;
left: 5px;
width: .75*119px;
display: none;
}
.btnAddOpen {
position: absolute;
top: 370px;
left: 60px;
z-index: 1000;
width: 200%;
display: none;
}
.buttonGroup {
background-color: white;
z-index: 1000;
position: absolute;
left: 60px;
border: 4px solid black;
border-radius: 40px;
box-sizing: border-box;
width: 200px;
padding: 5% 5% 5% 5%;
}
.buttonGroupAdd {
display: none;
margin-top: -60%;
}
.btnWordArt, .btnShape {
width: 48%;
float: left;
}

3
less/config.less Normal file
View File

@ -0,0 +1,3 @@
@left-panel-width: 10%;
@center-panel-width: 80%;
@right-panel-width: 10%;

View File

@ -1 +0,0 @@
// FULL styles (not sure if going to use...)

View File

@ -1,138 +1,45 @@
/*
TOP LOGO
*/
.centerpanel {
left: 0;
margin-left: 0;
width: 100%;
/* background-color: rgba(0, 135, 255, 0.4);*/
}
.logopanel {
height: 40px;
}
.d3dlogo {
top: 0;
height: 40px;
max-width: 216px;
background-image: url('../img/logo/logo_smallest.png');
// max-width: 399px;
// background-image: url('../img/logo/logo_smallest_wide.png');
}
.drawareacontainer {
/* position: absolute;*/
height: 70%;
}
.bottompanel {
height: 10%;
.manipulationBtns {
margin: 2px -27;
right: 22%;
width: 38%;
}
}
// sets width for both right and left panel
@mobilePanelsWidth: 92px;
/*
LEFT
*/
.leftpanel {
width: @mobilePanelsWidth;
background-color: #fff;
z-index: 50;
transition: left .3s ease-out;
}
.hideleft {
left: -(@mobilePanelsWidth+1);
}
.shadowright {
box-shadow: 2px 0 4px rgba(42, 42, 41, 0.6);
}
.btnNew {
margin: 5% 5% 1% 5%;
width: 90%;
}
.btnSave {
margin-left: 9%;
width: 75%;
}
.btnOops {
margin-left: 6%;
width: 71%;
// width: @mobilePanelsWidth;
.btnNew {
margin: 5% 5% 1% 5%;
width: 90%;
}
.btnSave {
margin-left: 5%;
width: 90%;
}
.btnOops {
margin-left: 5%;
width: 90%;
}
.btnAdd {
margin-left: 5%;
width: 90%;
}
}
/*
RIGHT
*/
.rightpanel {
width: @mobilePanelsWidth;
background-color: #fff;
z-index: 50;
transition: right .3s ease-out;
}
.hideright {
right: -(@mobilePanelsWidth+1);
}
.shadowleft {
box-shadow: -2px 0 4px rgba(42, 42, 41, 0.6);
}
.btnPrint {
margin: 1% 5% 5% 5%;
width: 90%;
}
.btnStop {
margin: 5% 6% 1% 5%;
width: 70%;
}
// width: @mobilePanelsWidth;
// margin-top: 5%; /* reserve space for 'status message' in right top */
/*
REST
*/
.sidebutton {
display: block;
position:absolute;
/* top: 50%;*/
/* margin-top: -20px;*/
top: 40px;
/*float:right;*/
width: 25px;
height: 38px;
border: 1px solid #808;
background: url('../img/arrows.png') no-repeat;
background-color: #eee;
cursor: pointer;
&:active {
background-color: #aaa;
.btnPrint {
margin: 1% 5% 5% 5%;
width: 90%;
}
.leftpanel & {
right: -27px;
background-position: 0px 0px;
}
.rightpanel & {
left: -27px;
background-position: -25px 0px;
.btnStop {
margin: 5% 6% 1% 5%;
width: 70%;
}
}
.sidebuttonin {
&:active {
background-color: #888;
}
.leftpanel & {
background-color: #ccc;
background-position: -25px 0px;
}
.rightpanel & {
background-color: #ccc;
background-position: -0px 0px;
}
}

74
less/popup.less Normal file
View File

@ -0,0 +1,74 @@
// @popup-width: 60%;
.popupMask {
background-color: rgba(255, 255, 255, 0.65);
// z-index: 20;
// border: 10px solid red;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
display:none;
user-select: text;
}
.popup {
background-color: white;
border: 2px solid black;
border-radius: 15px;
top: 30%;
position: absolute;
left: 50%;
// margin-left: -@popup-width/2;
// width: @popup-width;
}
.popup .content {
margin: 5%;
}
.popup {
display: none;
}
.popup.popupWordArt {
width: 50%;
margin-left: -50%/2;
}
.popup.popupShape {
width: 30%;
margin-left: -30%/2;
}
.popupWordArt input[type="text"] {
width: 100%;
}
.popupShape {
// border: 2px solid black;
}
.shapePreview {
// width: 150px;
// height: 150px;
border: 1px solid black;
border-radius: 5px;
}
.lblShapeResolution {
display: inline-block;
}
.btnShapeOk {
float: right;
position: absolute;
bottom: 5%;
}
.columnRight {
float: right;
}

44
less/progressbar.less Normal file
View File

@ -0,0 +1,44 @@
/*
PROGRESS GUAGE
*/
.progressbarCanvasContainerParent {
position:relative;
width:100%;
}
#progressbarCanvasContainer {
position: relative;
width: 50%;
float:right;
border: solid #000;
border-width: 2px 0 2px 2px;
border-radius: 15px 0 0 15px;
/*padding: 5px 0px 5px 5px;*/
padding: 5px;
background-color: #fff;
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
transition: right .40s cubic-bezier(0.68, -0.55, 0.265, 1.55);
right: -70%;
margin: 5% 0%;
}
#progressbarCanvas {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: auto;
background-color: #fff;
// border: solid #000;
// border-width: 2px 0 2px 2px;
// border-radius: 15px 0 0 15px;
// padding: 5px 0px 5px 5px;
//
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
}

View File

@ -20,7 +20,7 @@
// FULL
@media only screen and (min-width: 1000px) and (max-device-pixel-ratio : 1.5),
only screen and (min-width: 1000px) and (-webkit-max-device-pixel-ratio : 1.5) {
@import "full.less";
// @import "full.less";
}
// PORTRAIT

56
less/thermometer.less Normal file
View File

@ -0,0 +1,56 @@
/*
THERMOMETER
*/
.thermometerContainerParent {
position:relative;
width:100%;
padding-top: 10px;
}
#thermometerContainer {
position: relative;
width: 45%;
float: right;
background-color: #fff;
border: solid #000;
border-width: 2px 0 2px 2px;
border-radius: 15px 0 0 15px;
padding: 5px;
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
transition: right .50s cubic-bezier(0.68, -0.55, 0.265, 1.55);
right: -65%;
}
#thermometerCanvas {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: auto;
background-color: #fff;
// border: solid #000;
// border-width: 2px 0 2px 2px;
// border-radius: 15px 0 0 15px;
// padding: 5px 0px 5px 5px;
//
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
}
//#thermometerContainer {
// position: absolute;
// right: 25px;
// top: 370px;
//}
//#thermometerCanvas {
///*background: #59b2b8;*/
///*zoom: 2;*/
//}

View File

@ -1,22 +1,22 @@
#verticalShapes {
position:absolute;
right: 0;
bottom: 15px;
margin-right: -8.5%;
width: 8%;
// #verticalShapes {
// position:absolute;
// right: 0;
// bottom: 15px;
// margin-right: -8.5%;
// width: 8%;
>div {
border: 2px solid #333;
border-radius: 0px 5px 5px 0px;
margin-top: 4px;
background-color: #fff;
cursor: pointer;
// >div {
// border: 2px solid #333;
// border-radius: 0px 5px 5px 0px;
// margin-top: 4px;
// background-color: #fff;
// cursor: pointer;
img.verticalshape {
width: 100%;
max-width: 50px;
height: auto;
vertical-align: bottom;
}
}
}
// img.verticalshape {
// width: 100%;
// max-width: 50px;
// height: auto;
// vertical-align: bottom;
// }
// }
// }

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
www/img/buttons/btnAdd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
www/img/buttons/btnConv.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
www/img/buttons/btnDiv.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
www/img/buttons/btnMin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
www/img/buttons/btnMove.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
www/img/buttons/btnPlus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
www/img/buttons/btnSine.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

635
www/img/font.svg Normal file
View File

@ -0,0 +1,635 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1924.8242"
height="37.34375"
id="svg3008"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="New document 1">
<defs
id="defs3010" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="927.19863"
inkscape:cy="11.084203"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1440"
inkscape:window-height="852"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3013">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(1058.4039,-35.079815)">
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
x="17.142857"
y="38.076469"
id="text3016"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3018"
x="17.142857"
y="38.076469" /></text>
<path
inkscape:connector-curvature="0"
id="path3041"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -1055.8258,56.779034 -0.1856,0 -0.1855,0 -0.1856,0 -0.1855,0 -0.4297,-3.955078 -0.4297,-3.955078 -0.4296,-3.955079 -0.4297,-3.955078 -0.051,-0.484606 -0.037,-0.418696 -0.022,-0.352788 -0.01,-0.286879 0.04,-0.584702 0.1208,-0.523677 0.2014,-0.462651 0.282,-0.401626 0.3479,-0.324692 0.3796,-0.231928 0.4114,-0.139165 0.4431,-0.0464 0.4407,0.0464 0.404,0.139165 0.3675,0.231928 0.3308,0.324692 0.282,0.416274 0.2014,0.506597 0.1208,0.596919 0.04,0.687241 -0,0.257582 -0.015,0.30396 -0.024,0.350337 -0.034,0.396715 -0.4394,3.955078 -0.4395,3.955079 -0.4394,3.955078 -0.4395,3.955078 m -0.3906,3.242187 0.4321,0.04029 0.3979,0.120851 0.3638,0.201415 0.3296,0.28198 0.282,0.328371 0.2014,0.360108 0.1208,0.391845 0.04,0.423583 -0.04,0.43335 -0.1208,0.401611 -0.2014,0.369873 -0.282,0.338134 -0.3296,0.273438 -0.3638,0.195312 -0.3979,0.117188 -0.4321,0.03906 -0.4334,-0.03906 -0.4016,-0.117188 -0.3699,-0.195312 -0.3381,-0.273438 -0.2735,-0.338134 -0.1953,-0.369873 -0.1171,-0.401611 -0.039,-0.43335 0.039,-0.423583 0.1171,-0.391845 0.1953,-0.360108 0.2735,-0.328371 0.3381,-0.28198 0.3699,-0.201416 0.4016,-0.12085 0.4334,-0.04029"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3043"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -1038.2477,48.107159 -0.2637,-1.425781 -0.2636,-1.425781 -0.2637,-1.425782 -0.2637,-1.425781 -0.1074,-0.59082 -0.1074,-0.590821 -0.1075,-0.59082 -0.1074,-0.590821 -0.017,-0.244127 -0.012,-0.244136 -0.01,-0.244145 -0,-0.244154 0.034,-0.573716 0.1025,-0.490718 0.1709,-0.407719 0.2393,-0.324722 0.2954,-0.247787 0.3393,-0.176997 0.3833,-0.106206 0.4273,-0.03542 0.4016,0.03542 0.365,0.106206 0.3283,0.176997 0.2918,0.247787 0.2478,0.307632 0.177,0.35645 0.1062,0.405268 0.035,0.454087 -0.023,0.847181 -0.07,0.881353 -0.1159,0.915522 -0.1624,0.949694 -0.2783,1.430664 -0.2783,1.430665 -0.2784,1.430664 -0.2783,1.430664 -0.2344,0 -0.2343,0 -0.2344,0 -0.2344,0 m -7.1484,0 -0.2685,-1.445312 -0.2686,-1.445313 -0.2685,-1.445312 -0.2686,-1.445313 -0.188,-1.096178 -0.1343,-0.905758 -0.081,-0.715336 -0.027,-0.524916 0.032,-0.582261 0.095,-0.496821 0.1587,-0.411382 0.2222,-0.325942 0.2856,-0.247787 0.3296,-0.176997 0.3735,-0.106206 0.4175,-0.03542 0.4114,0.03664 0.3747,0.109868 0.3382,0.183101 0.3015,0.256332 0.2478,0.307632 0.177,0.35645 0.1062,0.405268 0.035,0.454088 -0.032,0.506605 -0.095,0.758061 -0.1587,1.009517 -0.2221,1.260973 -0.2637,1.44043 -0.2636,1.44043 -0.2637,1.440429 -0.2637,1.44043 -0.2099,0 -0.21,0 -0.2099,0 -0.21,0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3045"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -1030.9235,64.337627 0.4541,-2.22168 0.4541,-2.221679 0.4541,-2.22168 0.4541,-2.221679 -0.835,0 -0.8349,0 -0.835,0 -0.8349,0 0,-0.400391 0,-0.400391 0,-0.40039 0,-0.400391 0.9131,0 0.913,0 0.9131,0 0.9131,0 0.3369,-1.674805 0.3369,-1.674805 0.337,-1.674804 0.3369,-1.674805 -1.25,0 -1.25,0 -1.25,0 -1.25,0 0,-0.390625 0,-0.390625 0,-0.390625 0,-0.390625 1.3428,0 1.3427,0 1.3428,0 1.3428,0 0.4443,-2.22168 0.4443,-2.221679 0.4444,-2.22168 0.4443,-2.221679 0.4053,0 0.4052,0 0.4053,0 0.4053,0 -0.4443,2.221679 -0.4444,2.22168 -0.4443,2.221679 -0.4443,2.22168 1.6455,0 1.6455,0 1.6455,0 1.6455,0 0.4736,-2.22168 0.4737,-2.221679 0.4736,-2.22168 0.4737,-2.221679 0.4052,0 0.4053,0 0.4052,0 0.4053,0 -0.4639,2.221679 -0.4638,2.22168 -0.4639,2.221679 -0.4638,2.22168 0.8301,0 0.83,0 0.8301,0 0.8301,0 0,0.390625 0,0.390625 0,0.390625 0,0.390625 -0.9033,0 -0.9034,0 -0.9033,0 -0.9033,0 -0.3418,1.674805 -0.3418,1.674804 -0.3418,1.674805 -0.3418,1.674805 1.2451,0 1.2451,0 1.2452,0 1.2451,0 0,0.400391 0,0.40039 0,0.400391 0,0.400391 -1.3281,0 -1.3282,0 -1.3281,0 -1.3281,0 -0.4541,2.221679 -0.4541,2.22168 -0.4541,2.221679 -0.4541,2.22168 -0.3955,0 -0.3955,0 -0.3955,0 -0.3955,0 0.4443,-2.22168 0.4443,-2.221679 0.4444,-2.22168 0.4443,-2.221679 -1.6553,0 -1.6553,0 -1.6552,0 -1.6553,0 -0.4639,2.221679 -0.4639,2.22168 -0.4638,2.221679 -0.4639,2.22168 -0.4053,0 -0.4053,0 -0.4052,0 -0.4053,0 m 3.7696,-10.488281 1.6553,0 1.6552,0 1.6553,0 1.6553,0 0.3515,-1.674805 0.3516,-1.674805 0.3515,-1.674804 0.3516,-1.674805 -1.665,0 -1.6651,0 -1.665,0 -1.665,0 -0.3418,1.674805 -0.3418,1.674804 -0.3418,1.674805 -0.3418,1.674805"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3047"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -1011.0602,57.267315 0.2148,0 0.2149,0 0.2149,0 0.2148,0 0.1855,1.259768 0.3418,1.103516 0.4981,0.947265 0.6543,0.791013 0.8227,0.64087 1.0035,0.496827 1.184,0.352782 1.3648,0.20874 0,-2.851562 0,-2.851563 0,-2.851562 0,-2.851563 -2.0142,-1.318351 -1.6479,-1.240232 -1.2818,-1.162111 -0.9155,-1.083993 -0.4529,-0.782461 -0.3235,-0.863034 -0.1941,-0.943606 -0.065,-1.024181 0.111,-1.163317 0.3333,-1.087642 0.5554,-1.011967 0.7776,-0.936292 0.9936,-0.809312 1.1841,-0.631098 1.3745,-0.452886 1.565,-0.274673 0,-0.449219 0,-0.449218 0,-0.449219 0,-0.449219 0.3125,0 0.3125,0 0.3125,0 0.3125,0 0,0.449219 0,0.449219 0,0.449218 0,0.449219 0.769,0.05983 0.7056,0.08179 0.6421,0.103755 0.5786,0.125718 0.44677,0.135512 0.77392,0.26978 1.10107,0.404048 1.42823,0.538316 0,1.459961 0,1.459961 0,1.459961 0,1.459961 -0.19043,0 -0.19043,0 -0.19042,0 -0.19043,0 -0.19654,-1.447742 -0.3357,-1.237788 -0.47486,-1.027837 -0.614,-0.817883 -0.75928,-0.6494 -0.9302,-0.502925 -1.101,-0.35645 -1.272,-0.209975 0,2.480469 0,2.480469 0,2.480468 0,2.480469 2.24,1.606452 1.79806,1.381838 1.3562,1.157224 0.91432,0.932611 0.61522,0.8606 0.43945,0.960695 0.26368,1.060789 0.0879,1.160884 -0.12819,1.307376 -0.38452,1.226807 -0.64087,1.146239 -0.89721,1.065672 -1.11574,0.916748 -1.31592,0.699463 -1.51608,0.482178 -1.7163,0.264892 0,0.625 0,0.625 0,0.625 0,0.625 -0.3125,0 -0.3125,0 -0.3125,0 -0.3125,0 0,-0.625 0,-0.625 0,-0.625 0,-0.625 -0.9021,-0.05615 -0.8704,-0.09033 -0.8386,-0.124512 -0.8069,-0.158692 -0.8118,-0.194092 -0.8532,-0.250244 -0.8948,-0.306396 -0.9363,-0.362549 0,-1.381836 0,-1.381836 0,-1.381836 0,-1.381836 m 6.9141,-9.980469 0,-2.270508 0,-2.270508 0,-2.270507 0,-2.270508 -0.9143,0.16603 -0.7898,0.263676 -0.6653,0.361324 -0.5408,0.45897 -0.4102,0.531019 -0.2929,0.596928 -0.1758,0.662837 -0.059,0.728747 0.054,0.701916 0.1612,0.679935 0.2685,0.657955 0.376,0.635975 0.509,0.626231 0.6677,0.648197 0.8265,0.670162 0.9851,0.692129 m 1.25,15.78125 0.6897,-0.14038 0.6042,-0.167236 0.5188,-0.194092 0.4334,-0.220948 0.5176,-0.36743 0.45893,-0.418701 0.4004,-0.469971 0.3418,-0.521242 0.28197,-0.565183 0.20141,-0.582274 0.12086,-0.599366 0.0403,-0.616458 -0.0488,-0.635983 -0.14649,-0.618895 -0.24413,-0.601808 -0.34179,-0.58472 -0.52492,-0.635982 -0.81299,-0.755613 -1.1011,-0.875246 -1.3891,-0.994878 0,2.641601 0,2.641602 0,2.641601 0,2.641602"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3049"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -965.98206,36.700909 -4.82422,7.045898 -4.82422,7.045898 -4.82421,7.045899 -4.82422,7.045898 -0.43457,0 -0.43457,0 -0.43457,0 -0.43457,0 4.82422,-7.045898 4.82421,-7.045899 4.82422,-7.045898 4.82422,-7.045898 0.43457,0 0.43457,0 0.43457,0 0.43457,0 m -20.07812,0 1.24389,0.136734 1.09497,0.410161 0.94605,0.683589 0.79712,0.957016 0.64086,1.134046 0.45776,1.214603 0.27466,1.295162 0.0916,1.37572 -0.10253,1.602793 -0.30762,1.409915 -0.5127,1.217037 -0.71777,1.024161 -0.86182,0.811774 -0.94483,0.579837 -1.02783,0.347898 -1.11083,0.11596 -0.75562,-0.05248 -0.72388,-0.157468 -0.69213,-0.262454 -0.6604,-0.367439 -0.6128,-0.480949 -0.54932,-0.583493 -0.48584,-0.686038 -0.42236,-0.788582 -0.33325,-0.863028 -0.23804,-0.90942 -0.14282,-0.955814 -0.0476,-1.002207 0.0488,-1.004626 0.14648,-0.963131 0.24414,-0.921635 0.3418,-0.880139 0.42602,-0.812975 0.49683,-0.700678 0.56763,-0.588384 0.63843,-0.476088 0.68725,-0.375962 0.69458,-0.268549 0.70191,-0.161138 0.70923,-0.05373 m -0.0586,1.09375 -0.48462,0.07326 -0.45777,0.219731 -0.43091,0.366206 -0.40405,0.512681 -0.33326,0.747084 -0.23803,1.069339 -0.14282,1.391597 -0.0476,1.713855 0.0269,1.276865 0.0806,1.115726 0.13428,0.954587 0.18799,0.793447 0.18921,0.5066 0.23559,0.445559 0.28199,0.384519 0.32837,0.323478 0.21728,0.153816 0.2417,0.109866 0.26611,0.06592 0.29053,0.02196 0.45166,-0.06347 0.41748,-0.190427 0.3833,-0.317385 0.34912,-0.444344 0.42725,-0.877676 0.30517,-1.129147 0.18311,-1.380618 0.061,-1.63209 -0.0598,-1.717516 -0.17945,-1.441646 -0.29907,-1.165776 -0.4187,-0.889906 -0.33204,-0.435776 -0.37109,-0.311274 -0.41016,-0.186773 -0.44921,-0.06227 m 19.23828,12.851562 0.69212,0.05494 0.68969,0.164797 0.68726,0.274656 0.68483,0.384514 0.65306,0.489509 0.57251,0.589601 0.49195,0.689695 0.41139,0.789789 0.33323,0.8606 0.23804,0.902101 0.14283,0.943602 0.0476,0.985103 -0.10378,1.6272 -0.31128,1.42456 -0.5188,1.221923 -0.7263,1.019286 -0.86794,0.794677 -0.9436,0.567627 -1.01928,0.340576 -1.09496,0.113526 -0.70802,-0.05493 -0.69825,-0.164795 -0.68847,-0.274659 -0.6787,-0.384521 -0.6299,-0.485839 -0.56152,-0.578613 -0.49316,-0.671387 -0.42479,-0.764161 -0.33327,-0.848386 -0.23804,-0.904541 -0.14281,-0.960694 -0.0476,-1.016848 0.0476,-1.003413 0.14281,-0.959471 0.23804,-0.915529 0.33327,-0.871587 0.42479,-0.795892 0.49316,-0.688474 0.56152,-0.581057 0.6299,-0.473639 0.67504,-0.367424 0.67748,-0.262449 0.67994,-0.157473 0.68239,-0.0525 m 0.0195,1.035156 -0.4529,0.06593 -0.42115,0.197756 -0.3894,0.329588 -0.35765,0.461419 -0.38453,0.836187 -0.27467,1.141359 -0.16479,1.446531 -0.0549,1.751704 0.0561,1.616213 0.16845,1.352539 0.28077,1.088867 0.39308,0.825194 0.3491,0.435791 0.3833,0.311279 0.41748,0.186767 0.45168,0.06226 0.437,-0.06714 0.41259,-0.201415 0.38818,-0.335693 0.36379,-0.469971 0.41014,-0.841063 0.29296,-1.097412 0.17579,-1.35376 0.0586,-1.610109 -0.0586,-1.697993 -0.17579,-1.422117 -0.29296,-1.146242 -0.41014,-0.870367 -0.34181,-0.435784 -0.38087,-0.311277 -0.41991,-0.18677 -0.45897,-0.06226"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3051"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -939.40002,46.739971 2.05078,0 2.05078,0 2.05078,0 2.05078,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -0.79469,0.09889 -0.68482,0.159915 -0.57495,0.220945 -0.46507,0.281974 -0.45778,0.458993 -0.57251,0.771487 -0.68725,1.083981 -0.80199,1.396477 -0.88625,1.527105 -0.93994,1.475831 -0.99365,1.424559 -1.04735,1.373286 0.84593,0.939944 0.79956,0.788574 0.75318,0.637207 0.7068,0.485837 0.6848,0.350343 0.68725,0.250245 0.6897,0.150146 0.69216,0.05005 0.64818,-0.04517 0.59691,-0.135497 0.54566,-0.22583 0.4944,-0.316163 0.43455,-0.413816 0.36621,-0.499267 0.29786,-0.584717 0.22951,-0.670168 0.18066,0.131836 0.18066,0.131835 0.18067,0.131836 0.18066,0.131836 -0.41628,1.286623 -0.52613,1.105957 -0.63598,0.925292 -0.74583,0.744628 -0.83375,0.57251 -0.89966,0.408936 -0.96557,0.245361 -1.03148,0.08179 -0.80446,-0.05371 -0.81177,-0.161133 -0.81909,-0.268554 -0.8264,-0.375977 -0.83986,-0.513915 -0.87891,-0.662841 -0.91796,-0.811768 -0.95702,-0.960695 -1.18165,0.992433 -1.12305,0.828858 -1.06445,0.665283 -1.00585,0.501708 -0.9839,0.358886 -1.01806,0.256348 -1.05225,0.153808 -1.08642,0.05127 -1.52832,-0.107422 -1.36231,-0.322266 -1.19629,-0.537109 -1.03027,-0.751953 -0.82886,-0.900878 -0.59204,-0.983886 -0.35522,-1.066894 -0.11841,-1.149904 0.1062,-1.180416 0.31861,-1.177977 0.531,-1.175538 0.74341,-1.173101 1.03637,-1.191399 1.40991,-1.210935 1.78345,-1.230471 2.15699,-1.250007 -0.42237,-0.969229 -0.34912,-0.876462 -0.27588,-0.783694 -0.20263,-0.690928 -0.14527,-0.646961 -0.10376,-0.632321 -0.0623,-0.617679 -0.0207,-0.603039 0.1538,-1.571031 0.46143,-1.373287 0.76904,-1.175541 1.07667,-0.977797 0.98998,-0.59813 1.05591,-0.42724 1.12183,-0.256353 1.18775,-0.08546 1.10839,0.08668 1.00097,0.260015 0.89356,0.433344 0.78614,0.606674 0.64086,0.723891 0.45775,0.804448 0.27467,0.885005 0.0916,0.965563 -0.0891,1.003429 -0.26734,0.939945 -0.44555,0.876461 -0.62377,0.812977 -0.83985,0.79957 -1.11329,0.836185 -1.38671,0.872799 -1.66015,0.909415 1.25365,2.160651 1.28052,2.067873 1.30737,1.975095 1.33424,1.882318 1.5039,-1.970209 1.07421,-1.809079 0.64454,-1.647951 0.21485,-1.486823 -0.0366,-0.437004 -0.10987,-0.412594 -0.1831,-0.388187 -0.25634,-0.363778 -0.23805,-0.236807 -0.28442,-0.183102 -0.33081,-0.129398 -0.37718,-0.07569 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 m -7.46094,0.507813 1.13402,-0.595693 0.98022,-0.634763 0.82642,-0.673831 0.67262,-0.712901 0.52977,-0.753162 0.37842,-0.794674 0.22705,-0.836186 0.0757,-0.877697 -0.0549,-0.672594 -0.1648,-0.611567 -0.27466,-0.550542 -0.38451,-0.489515 -0.45655,-0.401597 -0.51026,-0.286861 -0.56396,-0.172123 -0.61767,-0.05739 -0.79834,0.07448 -0.69581,0.223394 -0.59326,0.372309 -0.49071,0.521226 -0.37598,0.583509 -0.26856,0.578618 -0.16113,0.573726 -0.0537,0.568835 0.0208,0.493176 0.0622,0.522464 0.10376,0.551754 0.14527,0.581043 0.2063,0.656749 0.28686,0.798343 0.36743,0.939938 0.44801,1.081533 m 3.02734,12.207031 -1.19019,-1.6394 -0.99244,-1.402586 -0.79467,-1.165773 -0.59692,-0.92896 -0.51026,-0.859369 -0.53467,-0.957029 -0.55908,-1.054689 -0.58349,-1.15235 -1.09986,0.690925 -0.95581,0.725099 -0.81176,0.759275 -0.66772,0.793451 -0.5127,0.827642 -0.36621,0.861817 -0.21973,0.895995 -0.0732,0.930171 0.0842,1.013186 0.25268,0.949708 0.42114,0.88623 0.58961,0.822751 0.73242,0.69214 0.8496,0.494385 0.9668,0.29663 1.08399,0.09888 0.60912,-0.03052 0.59693,-0.09155 0.58471,-0.152588 0.57252,-0.213623 0.62744,-0.313719 0.72997,-0.452881 0.83252,-0.592041 0.93507,-0.731203"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3053"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -925.63049,48.107159 -0.26367,-1.445312 -0.26367,-1.445313 -0.26368,-1.445312 -0.26367,-1.445313 -0.19653,-1.103503 -0.14039,-0.908198 -0.0842,-0.712895 -0.0281,-0.517592 0.0317,-0.582261 0.0952,-0.496821 0.15869,-0.411382 0.22217,-0.325942 0.2771,-0.247787 0.32348,-0.176997 0.36988,-0.106206 0.41626,-0.03542 0.41992,0.03664 0.38086,0.109868 0.3418,0.183101 0.30273,0.256332 0.25635,0.306411 0.1831,0.352788 0.10987,0.399165 0.0366,0.445542 -0.0317,0.493178 -0.0952,0.75684 -0.15869,1.020503 -0.22217,1.284167 -0.26367,1.44043 -0.26368,1.44043 -0.26367,1.440429 -0.26367,1.44043 -0.21484,0 -0.21485,0 -0.21484,0 -0.21484,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3055"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -909.10706,71.622784 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -1.41358,-0.77393 -1.2915,-0.837404 -1.16943,-0.900877 -1.04736,-0.964352 -1.32569,-1.479494 -1.16455,-1.606445 -1.00342,-1.733397 -0.84228,-1.860351 -0.6665,-1.942138 -0.47608,-1.978758 -0.28564,-2.01538 -0.0952,-2.052005 0.18677,-2.960197 0.5603,-2.825925 0.93384,-2.691653 1.30738,-2.557382 1.60766,-2.321763 1.83471,-1.965327 2.06177,-1.608891 2.28882,-1.252456 0,0.205078 0,0.205078 0,0.205078 0,0.205078 -1.14746,0.725112 -1.04004,0.847173 -0.93262,0.969233 -0.82519,1.091295 -0.72266,1.229256 -0.62501,1.383061 -0.52734,1.536863 -0.42968,1.690664 -0.33325,1.787117 -0.23804,1.826174 -0.14282,1.865232 -0.0476,1.904289 0.0403,2.04224 0.12084,1.947022 0.20141,1.851805 0.28199,1.756589 0.26733,1.280518 0.29419,1.14624 0.32104,1.011963 0.34791,0.877686 0.39184,0.811766 0.45288,0.794677 0.51391,0.777588 0.57496,0.7605 0.66161,0.743405 0.7544,0.726317 0.84717,0.709229 0.93994,0.692143"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3057"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -907.27112,36.837627 0,-0.205078 0,-0.205078 0,-0.205078 0,-0.205078 1.42212,0.765396 1.29761,0.831303 1.17309,0.897212 1.04859,0.96312 1.31713,1.488049 1.15845,1.612553 0.99975,1.737056 0.84107,1.861561 0.6665,1.934822 0.47607,1.976321 0.28565,2.017819 0.0952,2.059319 -0.18676,2.960208 -0.56031,2.825928 -0.93384,2.691649 -1.30737,2.557371 -1.60034,2.321775 -1.83228,1.96533 -2.06421,1.608888 -2.29614,1.252445 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 1.14746,-0.733647 1.04004,-0.853272 0.93261,-0.972899 0.8252,-1.092526 0.72998,-1.220704 0.62744,-1.376953 0.5249,-1.533203 0.42237,-1.689453 0.33325,-1.795651 0.23804,-1.832274 0.14282,-1.868897 0.0476,-1.905521 -0.0403,-2.034905 -0.12085,-1.944578 -0.20142,-1.85425 -0.28198,-1.763924 -0.26001,-1.280507 -0.29175,-1.146236 -0.32349,-1.011966 -0.35522,-0.877697 -0.39185,-0.80321 -0.45288,-0.78857 -0.51392,-0.77393 -0.57494,-0.75929 -0.6543,-0.743394 -0.75196,-0.726313 -0.84961,-0.709234 -0.94726,-0.692153"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3059"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -885.16174,43.400127 -0.0635,-0.672595 -0.1123,-0.670162 -0.16113,-0.667728 -0.20996,-0.665296 -0.29053,-0.882554 -0.20752,-0.733638 -0.12451,-0.584722 -0.0415,-0.435805 0.0293,-0.47728 0.0879,-0.416255 0.14649,-0.355229 0.20508,-0.294204 0.25756,-0.230697 0.28443,-0.16479 0.31128,-0.09888 0.33814,-0.03297 0.29296,0.03297 0.27343,0.09888 0.25391,0.16479 0.23438,0.230697 0.19653,0.291763 0.14038,0.347905 0.0842,0.404048 0.0281,0.46019 -0.033,0.483413 -0.0989,0.571293 -0.16479,0.659175 -0.23071,0.747056 -0.2295,0.766614 -0.18066,0.737309 -0.13184,0.708003 -0.083,0.678699 0.52367,-0.360095 0.49683,-0.396725 0.46997,-0.433353 0.44312,-0.469983 0.62133,-0.698229 0.53589,-0.551754 0.45044,-0.405277 0.365,-0.258802 0.32348,-0.16234 0.32592,-0.115963 0.32837,-0.06958 0.33082,-0.02321 0.30883,0.02809 0.28198,0.08423 0.25513,0.140376 0.22828,0.19652 0.19652,0.225843 0.14038,0.247807 0.0842,0.269771 0.0281,0.291735 -0.0403,0.351575 -0.12086,0.332035 -0.20141,0.312496 -0.28197,0.292956 -0.44313,0.283213 -0.68482,0.283208 -0.9265,0.2832 -1.16821,0.283192 -0.72022,0.17213 -0.65674,0.18433 -0.59326,0.19653 -0.52978,0.208729 0.53588,0.247813 0.59204,0.216068 0.6482,0.184323 0.70435,0.152577 1.07909,0.228282 0.87402,0.25513 0.66895,0.281979 0.46388,0.308828 0.3247,0.3296 0.23193,0.344241 0.13916,0.358883 0.0464,0.373526 -0.0281,0.283212 -0.0842,0.263675 -0.14038,0.244137 -0.19652,0.224601 -0.22462,0.187996 -0.24415,0.13428 -0.26367,0.08056 -0.28319,0.02685 -0.30152,-0.02563 -0.31861,-0.0769 -0.33569,-0.128176 -0.35277,-0.179452 -0.38331,-0.268546 -0.44678,-0.395505 -0.51025,-0.522464 -0.57372,-0.649423 -0.42481,-0.471181 -0.47364,-0.45654 -0.52246,-0.441897 -0.57128,-0.427257 0.0427,0.568858 0.0891,0.593265 0.1355,0.617672 0.1819,0.64208 0.30761,1.0608 0.21972,0.877688 0.13184,0.694577 0.0439,0.511467 -0.0293,0.375984 -0.0879,0.346682 -0.14649,0.31738 -0.20507,0.288079 -0.23804,0.230719 -0.24537,0.164797 -0.25268,0.09887 -0.26,0.03295 -0.35279,-0.03539 -0.33569,-0.106199 -0.31861,-0.177004 -0.30151,-0.247809 -0.17944,-0.235589 -0.12818,-0.296628 -0.0769,-0.357668 -0.0256,-0.418709 0.0281,-0.491935 0.0842,-0.538328 0.14038,-0.584719 0.19654,-0.631111 0.20385,-0.611563 0.16235,-0.506589 0.12085,-0.401614 0.0794,-0.296641 0.0574,-0.283193 0.0549,-0.341793 0.0525,-0.400394 0.0501,-0.458995 -0.55787,0.391856 -0.52124,0.413822 -0.48462,0.435787 -0.44799,0.457754 -0.66895,0.727548 -0.58105,0.581058 -0.49317,0.434567 -0.40527,0.288077 -0.25635,0.136727 -0.26123,0.09766 -0.26612,0.05859 -0.27099,0.01952 -0.31982,-0.02807 -0.29541,-0.08422 -0.271,-0.140384 -0.24658,-0.196542 -0.20508,-0.230704 -0.14648,-0.242917 -0.0879,-0.255129 -0.0293,-0.267343 0.0244,-0.246573 0.0733,-0.251461 0.12207,-0.256351 0.1709,-0.26124 0.22949,-0.261221 0.27832,-0.236813 0.32715,-0.212406 0.37597,-0.187998 0.3479,-0.126943 0.51636,-0.146481 0.68481,-0.166019 0.85328,-0.185557 0.6018,-0.141591 0.59448,-0.170895 0.58716,-0.200198 0.57984,-0.229503 -0.55299,-0.249012 -0.60425,-0.219723 -0.65551,-0.190434 -0.70678,-0.161144 -1.08643,-0.247791 -0.85693,-0.235592 -0.62744,-0.223392 -0.39795,-0.211194 -0.38452,-0.339343 -0.27466,-0.373531 -0.1648,-0.407719 -0.0549,-0.441907 0.0269,-0.257555 0.0806,-0.245357 0.13428,-0.233158 0.18799,-0.220961 0.23315,-0.19652 0.25024,-0.140376 0.26734,-0.08423 0.28442,-0.02809 0.32715,0.02565 0.33691,0.07691 0.34669,0.128169 0.35644,0.17943 0.3833,0.257582 0.42724,0.362553 0.4712,0.467524 0.51514,0.572497 0.53954,0.581067 0.54443,0.512699 0.54932,0.444331 0.55421,0.375965"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3061"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -864.36096,61.036846 0,-2.436524 0,-2.436523 0,-2.436524 0,-2.436523 -2.43164,0 -2.43164,0 -2.43164,0 -2.43164,0 0,-0.400391 0,-0.40039 0,-0.400391 0,-0.40039 2.43164,0 2.43164,0 2.43164,0 2.43164,0 0,-2.426758 0,-2.426758 0,-2.426757 0,-2.426758 0.39063,0 0.39062,0 0.39063,0 0.39062,0 0,2.426758 0,2.426757 0,2.426758 0,2.426758 2.44141,0 2.4414,0 2.44141,0 2.4414,0 0,0.40039 0,0.400391 0,0.40039 0,0.400391 -2.4414,0 -2.44141,0 -2.4414,0 -2.44141,0 0,2.436523 0,2.436524 0,2.436523 0,2.436524 -0.39062,0 -0.39063,0 -0.39062,0 -0.39063,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3063"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -850.08362,70.450909 0,-0.214844 0,-0.214844 0,-0.214843 0,-0.214844 0.94848,-0.378421 0.83374,-0.471193 0.719,-0.563964 0.60425,-0.656735 0.48706,-0.704347 0.3479,-0.726319 0.20874,-0.74829 0.0696,-0.770263 -0.011,-0.178223 -0.033,-0.163574 -0.0549,-0.148926 -0.0769,-0.134277 -0.0683,-0.0769 -0.0684,-0.05493 -0.0684,-0.03296 -0.0684,-0.01099 -0.13916,0.02441 -0.20264,0.07324 -0.26611,0.12207 -0.32959,0.170899 -0.17822,0.0769 -0.18311,0.05493 -0.18798,0.03296 -0.19287,0.01099 -0.45411,-0.0354 -0.40527,-0.106201 -0.35645,-0.177002 -0.30761,-0.247803 -0.2478,-0.31006 -0.17701,-0.363769 -0.1062,-0.41748 -0.0354,-0.471191 0.0452,-0.461424 0.13549,-0.427246 0.22583,-0.393067 0.31617,-0.358888 0.39062,-0.29907 0.42969,-0.213622 0.46875,-0.128175 0.50781,-0.04273 0.62622,0.0708 0.5896,0.212403 0.55298,0.354003 0.51636,0.495604 0.44433,0.603028 0.31738,0.695801 0.19043,0.788574 0.0635,0.881347 -0.0879,0.987548 -0.26367,0.950927 -0.43946,0.914307 -0.61523,0.877687 -0.7959,0.822751 -1.00097,0.729979 -1.20606,0.637208 -1.41113,0.544437"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3065"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -840.61096,53.341534 2.52441,0 2.52442,0 2.52441,0 2.52441,0 0,0.737305 0,0.737304 0,0.737305 0,0.737304 -2.52441,0 -2.52441,0 -2.52442,0 -2.52441,0 0,-0.737304 0,-0.737305 0,-0.737304 0,-0.737305"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3067"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -823.87268,60.00169 0.44067,0.04028 0.40405,0.120851 0.36744,0.201415 0.33081,0.28198 0.27343,0.329592 0.19531,0.36377 0.11719,0.397948 0.0391,0.432128 -0.0403,0.43335 -0.12085,0.401611 -0.20141,0.369873 -0.28198,0.338134 -0.3296,0.273438 -0.36377,0.195312 -0.39795,0.117188 -0.43212,0.03906 -0.43335,-0.03906 -0.40162,-0.117188 -0.36987,-0.195312 -0.33813,-0.273438 -0.27344,-0.338134 -0.19531,-0.369873 -0.11719,-0.401611 -0.0391,-0.43335 0.0391,-0.440673 0.11719,-0.404052 0.19531,-0.367432 0.27344,-0.330812 0.33813,-0.273435 0.36988,-0.195312 0.40161,-0.117188 0.43335,-0.03906"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3069"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -807.66174,36.017315 -2.39746,7.080078 -2.39746,7.080078 -2.39747,7.080078 -2.39746,7.080078 -0.39062,0 -0.39063,0 -0.39062,0 -0.39063,0 2.39746,-7.080078 2.39747,-7.080078 2.39746,-7.080078 2.39746,-7.080078 0.39063,0 0.39062,0 0.39063,0 0.39062,0"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3071"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -806.33362,50.704815 0.0855,-2.18627 0.25635,-2.027584 0.42724,-1.8689 0.59815,-1.710215 0.73974,-1.535631 0.85205,-1.325679 0.96436,-1.115727 1.07666,-0.905775 0.88623,-0.555405 0.90088,-0.396724 0.91552,-0.238042 0.93018,-0.07936 1.48437,0.194107 1.40625,0.58228 1.32813,0.970454 1.25,1.358628 1.32446,2.094738 0.94604,2.436527 0.56763,2.778316 0.18922,3.120107 -0.083,2.218023 -0.24903,2.044679 -0.41503,1.871336 -0.58105,1.697993 -0.71045,1.50147 -0.80322,1.281738 -0.896,1.062009 -0.98876,0.842283 -1.01685,0.632324 -0.99976,0.45166 -0.98267,0.270996 -0.96557,0.09033 -1.81519,-0.279541 -1.65649,-0.838623 -1.4978,-1.397704 -1.33911,-1.956788 -0.9314,-1.981197 -0.66528,-2.17407 -0.39917,-2.366945 -0.13306,-2.559819 m 3.82813,0.488281 0.0842,2.608647 0.25269,2.357179 0.42114,2.105711 0.5896,1.854244 0.625,1.273194 0.76171,0.909424 0.89844,0.545654 1.03517,0.181885 0.53222,-0.05859 0.54199,-0.175781 0.55176,-0.292968 0.56153,-0.410157 0.53222,-0.55786 0.46386,-0.716552 0.39551,-0.875245 0.32716,-1.033937 0.39306,-1.851802 0.28075,-2.196043 0.16846,-2.540284 0.0562,-2.884527 -0.0586,-2.171621 -0.17579,-1.983639 -0.29297,-1.795657 -0.41015,-1.607677 -0.3772,-1.041247 -0.42847,-0.877681 -0.47973,-0.714115 -0.531,-0.550551 -0.42115,-0.281968 -0.46265,-0.201411 -0.50415,-0.120854 -0.54565,-0.0403 -0.64575,0.07448 -0.60913,0.223394 -0.57251,0.372309 -0.53589,0.521226 -0.64697,0.926527 -0.53467,1.158451 -0.42237,1.390376 -0.31005,1.622302 -0.22217,1.732188 -0.15869,1.719974 -0.0952,1.707759 -0.0317,1.695548"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3073"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -783.09143,39.904034 1.61133,-0.786133 1.61133,-0.786133 1.61132,-0.786133 1.61133,-0.786133 0.16113,0 0.16114,0 0.16113,0 0.16113,0 0,5.590821 0,5.59082 0,5.590821 0,5.59082 0.011,1.008302 0.033,0.79834 0.0549,0.588379 0.0769,0.378416 0.12207,0.257569 0.17089,0.225831 0.21973,0.194091 0.26856,0.162353 0.36865,0.130616 0.52002,0.09888 0.67139,0.06714 0.82276,0.0354 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.49023,0 -2.49024,0 -2.49023,0 -2.49024,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.85449,-0.03418 0.68847,-0.06348 0.52246,-0.09277 0.35645,-0.122071 0.25268,-0.15747 0.21119,-0.179443 0.16968,-0.201416 0.12817,-0.22339 0.094,-0.362547 0.0671,-0.599365 0.0403,-0.836182 0.0134,-1.072999 0,-3.574219 0,-3.574218 0,-3.574219 0,-3.574219 -0.0122,-1.315906 -0.0366,-1.057125 -0.061,-0.798344 -0.0855,-0.539563 -0.083,-0.291735 -0.11231,-0.25024 -0.14161,-0.208744 -0.1709,-0.16725 -0.18555,-0.12816 -0.20508,-0.09155 -0.22461,-0.05494 -0.24413,-0.01832 -0.39673,0.03786 -0.46753,0.11353 -0.53833,0.189204 -0.60913,0.264879 -0.0732,-0.151367 -0.0732,-0.151367 -0.0733,-0.151367 -0.0732,-0.151367"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3075"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -749.43909,58.693096 -0.46387,1.274414 -0.46386,1.274414 -0.46387,1.274414 -0.46387,1.274414 -3.90625,0 -3.90625,0 -3.90625,0 -3.90625,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 3.19214,-3.000485 2.68188,-2.7124 2.17164,-2.424317 1.66138,-2.136235 1.23046,-1.949452 0.8789,-1.864011 0.52735,-1.778569 0.17579,-1.693125 -0.0965,-1.203602 -0.28931,-1.091304 -0.48217,-0.979008 -0.67504,-0.866711 -0.80933,-0.709215 -0.88502,-0.506587 -0.96069,-0.303959 -1.03637,-0.101332 -0.95215,0.07203 -0.90332,0.216069 -0.85449,0.360102 -0.80566,0.504137 -0.72144,0.633557 -0.62134,0.767827 -0.52124,0.902095 -0.42114,1.036365 -0.18066,0 -0.18067,0 -0.18066,0 -0.18067,0 0.33935,-1.701648 0.52979,-1.491694 0.72021,-1.281743 0.91065,-1.07179 1.07788,-0.845932 1.20239,-0.604243 1.32691,-0.362554 1.45142,-0.120865 1.54418,0.12941 1.40991,0.388188 1.27564,0.646968 1.14136,0.905747 0.94848,1.081556 0.67748,1.17432 0.4065,1.267085 0.13551,1.359851 -0.0586,1.00587 -0.17578,1.005862 -0.29297,1.005856 -0.41014,1.00585 -0.83497,1.605232 -1.05958,1.651614 -1.28417,1.697995 -1.50878,1.744378 -2.20337,2.392581 -1.74683,1.865235 -1.29028,1.337889 -0.83374,0.810545 1.72852,0 1.72851,0 1.72851,0 1.72852,0 0.97534,-0.0098 0.81664,-0.0293 0.65796,-0.04883 0.49928,-0.06836 0.41869,-0.09766 0.39673,-0.136718 0.37476,-0.175782 0.35279,-0.214845 0.3308,-0.268553 0.30884,-0.317382 0.28687,-0.366211 0.2649,-0.415042 0.18066,0 0.18066,0 0.18067,0 0.18066,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3077"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -745.74768,42.34544 0.60302,-1.260973 0.67627,-1.107173 0.74951,-0.953374 0.82276,-0.799574 0.92163,-0.640854 1.02661,-0.457759 1.13159,-0.274663 1.23658,-0.09157 1.49902,0.12941 1.31347,0.388188 1.12793,0.646968 0.94239,0.905747 0.56396,0.784925 0.40283,0.811772 0.2417,0.838619 0.0806,0.865465 -0.22706,1.45753 -0.68115,1.481937 -1.13525,1.506344 -1.58935,1.530752 1.14623,0.529793 0.99732,0.632327 0.84839,0.734861 0.69947,0.837394 0.54686,0.92774 0.39062,1.005862 0.23438,1.083982 0.0781,1.162103 -0.13673,1.66138 -0.41016,1.546632 -0.68359,1.431883 -0.95702,1.317136 -1.5857,1.435547 -1.90552,1.025391 -2.22534,0.615234 -2.54516,0.205078 -1.23169,-0.0415 -1.01929,-0.124512 -0.80689,-0.207519 -0.59448,-0.290527 -0.4187,-0.338135 -0.29907,-0.350341 -0.17945,-0.362549 -0.0598,-0.374756 0.0281,-0.274657 0.0842,-0.257568 0.14038,-0.240479 0.19653,-0.22339 0.24536,-0.187987 0.26733,-0.134277 0.28931,-0.08057 0.31128,-0.02686 0.24536,0.0098 0.2478,0.0293 0.25025,0.04883 0.25269,0.06836 0.2185,0.08179 0.32349,0.147706 0.42846,0.213622 0.53345,0.279539 0.54077,0.272217 0.45044,0.211182 0.36011,0.150146 0.26978,0.08911 0.36743,0.09399 0.37963,0.06714 0.39185,0.04028 0.40406,0.01343 0.96313,-0.09644 0.89721,-0.289307 0.8313,-0.482177 0.76539,-0.675049 0.64941,-0.806882 0.46386,-0.877685 0.27832,-0.948487 0.0928,-1.01929 -0.0427,-0.766597 -0.12818,-0.756834 -0.21362,-0.747072 -0.29906,-0.737309 -0.26002,-0.513911 -0.27222,-0.447996 -0.28442,-0.382082 -0.29662,-0.316168 -0.45899,-0.380852 -0.53711,-0.361326 -0.61524,-0.341799 -0.69335,-0.322273 -0.73609,-0.281975 -0.74341,-0.201413 -0.75073,-0.120852 -0.75805,-0.04029 -0.15625,0 -0.15625,0 -0.15625,0 -0.15625,0 0,-0.146484 0,-0.146485 0,-0.146484 0,-0.146484 0.77148,-0.142815 0.77148,-0.233151 0.77149,-0.323489 0.77149,-0.413827 0.72753,-0.482169 0.62011,-0.528561 0.5127,-0.574954 0.40528,-0.621347 0.30761,-0.66039 0.21973,-0.692135 0.13183,-0.72388 0.044,-0.755626 -0.0794,-0.957019 -0.23804,-0.859371 -0.39672,-0.761723 -0.55542,-0.664075 -0.66407,-0.546861 -0.74218,-0.390621 -0.82031,-0.234379 -0.89844,-0.07814 -1.45142,0.202651 -1.3269,0.607914 -1.20239,1.013179 -1.07788,1.418444 -0.16113,-0.07813 -0.16114,-0.07813 -0.16113,-0.07813 -0.16113,-0.07813"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3079"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -709.16565,54.025127 0,0.693359 0,0.69336 0,0.693359 0,0.69336 -0.88867,0 -0.88868,0 -0.88867,0 -0.88867,0 0,1.748047 0,1.748046 0,1.748047 0,1.748047 -0.80566,0 -0.80567,0 -0.80566,0 -0.80566,0 0,-1.748047 0,-1.748047 0,-1.748046 0,-1.748047 -2.80274,0 -2.80273,0 -2.80274,0 -2.80273,0 0,-0.625 0,-0.625 0,-0.625 0,-0.625 3.07129,-4.384766 3.07129,-4.384766 3.07129,-4.384765 3.07129,-4.384766 0.53711,0 0.5371,0 0.53711,0 0.53711,0 0,4.316406 0,4.316406 0,4.316407 0,4.316406 0.88867,0 0.88867,0 0.88868,0 0.88867,0 m -6.77734,0 0,-3.286133 0,-3.286133 0,-3.286132 0,-3.286133 -2.32422,3.286133 -2.32422,3.286132 -2.32422,3.286133 -2.32422,3.286133 2.32422,0 2.32422,0 2.32422,0 2.32422,0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3081"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -690.41565,37.306377 -0.38086,0.830078 -0.38086,0.830078 -0.38086,0.830079 -0.38086,0.830078 -1.99219,0 -1.99219,0 -1.99218,0 -1.99219,0 -0.43457,0.888672 -0.43457,0.888671 -0.43457,0.888672 -0.43457,0.888672 2.45361,0.526134 2.18506,0.816654 1.9165,1.107174 1.64796,1.397695 1.13646,1.386726 0.81177,1.503908 0.48706,1.621091 0.16236,1.738275 -0.0537,1.025395 -0.16113,0.986329 -0.26855,0.947264 -0.37597,0.908199 -0.44801,0.855715 -0.50415,0.789796 -0.5603,0.723876 -0.61645,0.657957 -0.66285,0.594483 -0.69947,0.533448 -0.73608,0.472411 -0.77269,0.411377 -1.13038,0.46997 -1.14502,0.335693 -1.15967,0.201416 -1.17431,0.06714 -1.11084,-0.05005 -0.94971,-0.150146 -0.78857,-0.250244 -0.62744,-0.350342 -0.46997,-0.419921 -0.3357,-0.439453 -0.20141,-0.458985 -0.0671,-0.478516 0.0281,-0.264891 0.0842,-0.247802 0.14038,-0.230714 0.19653,-0.213624 0.23926,-0.187986 0.26855,-0.134277 0.29785,-0.08057 0.32715,-0.02686 0.24536,0.0098 0.22827,0.0293 0.21119,0.04883 0.19409,0.06836 0.22827,0.108644 0.29419,0.169679 0.3601,0.230712 0.42603,0.291747 0.73486,0.444337 0.73975,0.317383 0.74463,0.190429 0.74951,0.06348 1.10717,-0.107422 1.03638,-0.322265 0.96558,-0.537109 0.89478,-0.751954 0.7605,-0.91552 0.54321,-1.0083 0.32592,-1.101078 0.10865,-1.193852 -0.0964,-1.180415 -0.28931,-1.138914 -0.48218,-1.097414 -0.67504,-1.055914 -0.84473,-0.985099 -0.99122,-0.865476 -1.13769,-0.745852 -1.28417,-0.626229 -1.16089,-0.393058 -1.35376,-0.30029 -1.54663,-0.207522 -1.7395,-0.114755 1.26953,-2.573242 1.26953,-2.573243 1.26953,-2.573242 1.26953,-2.573242 2.37305,0 2.37305,0 2.37304,0 2.37305,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3083"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -669.84924,36.759502 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -1.23048,0.159927 -1.11328,0.225834 -0.99609,0.291743 -0.8789,0.357652 -0.80933,0.432143 -0.80689,0.534672 -0.80444,0.637202 -0.802,0.739733 -0.75806,0.814221 -0.69214,0.8606 -0.62622,0.906978 -0.5603,0.953357 -0.49683,1.013194 -0.45532,1.10596 -0.41382,1.198727 -0.37231,1.291494 1.40746,-0.845938 1.40991,-0.604245 1.41236,-0.362552 1.4148,-0.120859 1.31225,0.136728 1.22192,0.410159 1.13159,0.683591 1.04127,0.957022 0.87157,1.171882 0.62256,1.328128 0.37354,1.484372 0.12452,1.640618 -0.12574,1.623539 -0.3772,1.550294 -0.62866,1.477049 -0.88012,1.403806 -1.3086,1.452637 -1.50391,1.037597 -1.69922,0.622559 -1.89452,0.207519 -1.30615,-0.112305 -1.20362,-0.336914 -1.10107,-0.561523 -0.99853,-0.786133 -1.62354,-1.877439 -1.15966,-2.136229 -0.69581,-2.39502 -0.23193,-2.653812 0.0891,-1.755363 0.26734,-1.711423 0.44555,-1.667483 0.62378,-1.623543 0.78857,-1.556388 0.93994,-1.46606 1.09131,-1.375735 1.24268,-1.285411 1.31347,-1.138902 1.28418,-0.936274 1.25488,-0.733648 1.2256,-0.53102 1.19018,-0.375962 1.14867,-0.268549 1.10718,-0.161138 1.06568,-0.05373 0.28321,0 0.2832,0 0.28321,0 0.2832,0 m -12.14844,13.671875 -0.15381,1.25489 -0.10987,1.127931 -0.0659,1.000975 -0.022,0.874017 0.0427,0.958256 0.12817,0.999757 0.21363,1.041258 0.29907,1.08276 0.39306,1.0376 0.47608,0.925293 0.55908,0.812988 0.64209,0.700682 0.5249,0.401612 0.57861,0.286865 0.63233,0.172119 0.68604,0.05737 0.82641,-0.100098 0.78002,-0.300293 0.73365,-0.500487 0.68726,-0.700684 0.58959,-0.886228 0.42114,-1.057128 0.25269,-1.228028 0.0842,-1.398929 -0.083,-1.613764 -0.24902,-1.501462 -0.41504,-1.389162 -0.58105,-1.276862 -0.73365,-1.068107 -0.8728,-0.762937 -1.01196,-0.457766 -1.15112,-0.152596 -0.37842,0.01954 -0.39307,0.0586 -0.40771,0.09765 -0.42236,0.13671 -0.47119,0.201424 -0.57374,0.291751 -0.67627,0.382077 -0.7788,0.472404"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3085"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -663.75549,37.306377 3.5498,0 3.54981,0 3.5498,0 3.54981,0 0,0.185547 0,0.185547 0,0.185547 0,0.185547 -2.20703,6.572265 -2.20703,6.572266 -2.20704,6.572265 -2.20703,6.572266 -0.54688,0 -0.54687,0 -0.54688,0 -0.54687,0 1.97754,-5.961914 1.97754,-5.961914 1.97754,-5.961914 1.97754,-5.961914 -1.82129,0 -1.82129,0 -1.82129,0 -1.82129,0 -1.02417,0.03297 -0.86548,0.09888 -0.70679,0.164791 -0.54809,0.2307 -0.78003,0.510266 -0.69946,0.632328 -0.6189,0.754391 -0.53833,0.876452 -0.1416,-0.05371 -0.14161,-0.05371 -0.1416,-0.05371 -0.1416,-0.05371 0.63477,-1.567383 0.63476,-1.567383 0.63477,-1.567383 0.63477,-1.567383"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3087"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -640.10315,50.450909 -1.43311,-1.225577 -1.15478,-1.09863 -0.87647,-0.971682 -0.59814,-0.844736 -0.39307,-0.788564 -0.28076,-0.803219 -0.16846,-0.817875 -0.0562,-0.83253 0.12451,-1.243883 0.37354,-1.15356 0.62256,-1.063237 0.87158,-0.972914 1.07788,-0.820297 1.24145,-0.585933 1.40503,-0.351567 1.56861,-0.117203 1.52343,0.108658 1.36718,0.325933 1.21094,0.543208 1.0547,0.760483 0.85448,0.899671 0.61035,0.960698 0.36621,1.021724 0.12208,1.08275 -0.0659,0.745861 -0.19776,0.753178 -0.32958,0.760494 -0.46142,0.767811 -0.67017,0.805675 -0.95582,0.874026 -1.24145,0.942379 -1.52709,1.010733 1.57348,1.257331 1.28295,1.115725 0.99243,0.974118 0.70192,0.832513 0.6494,1.009526 0.46386,1.036379 0.27833,1.063231 0.0928,1.090083 -0.13307,1.346438 -0.39917,1.246338 -0.66528,1.146239 -0.93138,1.046141 -1.14747,0.863037 -1.31348,0.616455 -1.47949,0.369873 -1.6455,0.123291 -1.78101,-0.147705 -1.57349,-0.443115 -1.36596,-0.738525 -1.15845,-1.033936 -0.73486,-0.969236 -0.52491,-1.013183 -0.31494,-1.057129 -0.10498,-1.101077 0.0732,-0.876461 0.21973,-0.87158 0.36621,-0.8667 0.5127,-0.861821 0.7019,-0.891107 0.91431,-0.935057 1.12671,-0.979005 1.33911,-1.022956 m 3.06641,-2.089844 1.06444,-0.998525 0.84961,-0.886228 0.63477,-0.773929 0.41993,-0.661631 0.27343,-0.634754 0.19531,-0.673825 0.11719,-0.712894 0.0391,-0.751964 -0.072,-0.969225 -0.21607,-0.85693 -0.36011,-0.744633 -0.50414,-0.632337 -0.62867,-0.512681 -0.73364,-0.366206 -0.83862,-0.219731 -0.9436,-0.07326 -0.94971,0.07204 -0.85694,0.216069 -0.76416,0.360103 -0.67138,0.504136 -0.54687,0.600599 -0.39063,0.649418 -0.23437,0.698238 -0.0781,0.747057 0.0317,0.507825 0.0952,0.507816 0.1587,0.507809 0.22217,0.5078 0.29052,0.50172 0.34423,0.489505 0.39795,0.477291 0.45167,0.465078 0.80078,0.664062 0.80078,0.664063 0.80079,0.664062 0.80078,0.664063 m -2.14844,2.832031 -0.75806,0.699469 -0.65308,0.731203 -0.54809,0.762938 -0.44311,0.794671 -0.3418,0.817876 -0.24414,0.852052 -0.14649,0.886229 -0.0488,0.920406 0.0854,1.197512 0.25635,1.072999 0.42724,0.948485 0.59815,0.823973 0.73974,0.657959 0.83252,0.469971 0.9253,0.281982 1.01807,0.09399 1.00219,-0.07446 0.89721,-0.223388 0.79224,-0.372315 0.68726,-0.52124 0.55542,-0.627436 0.39672,-0.690918 0.23804,-0.754397 0.0794,-0.817874 -0.0464,-0.684812 -0.13916,-0.648192 -0.23193,-0.611573 -0.3247,-0.574955 -0.87037,-1.114497 -1.22437,-1.273191 -1.57836,-1.431886 -1.93237,-1.590582"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3089"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -625.66956,64.337627 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 1.24756,-0.08789 1.20361,-0.224609 1.15967,-0.361329 1.11573,-0.498047 1.08398,-0.682372 1.06445,-0.894774 1.04492,-1.107178 1.0254,-1.319582 0.94726,-1.461178 0.79101,-1.53198 0.63477,-1.602784 0.47852,-1.673589 -1.49659,0.863043 -1.42334,0.616456 -1.3501,0.369872 -1.27685,0.123285 -1.34644,-0.134272 -1.24633,-0.40283 -1.14624,-0.671389 -1.04614,-0.939947 -0.87158,-1.171867 -0.62256,-1.347653 -0.37354,-1.52344 -0.12451,-1.699227 0.12451,-1.690663 0.37354,-1.595455 0.62256,-1.500247 0.87158,-1.405041 1.29272,-1.444077 1.47583,-1.03149 1.65894,-0.618901 1.84204,-0.206314 1.57226,0.168472 1.45507,0.505376 1.3379,0.84228 1.22071,1.179185 1.24755,1.76759 0.8911,1.962894 0.53468,2.158199 0.17823,2.353504 -0.13551,2.170417 -0.4065,2.09717 -0.67748,2.023924 -0.94848,1.950677 -1.19019,1.823733 -1.40259,1.662598 -1.61499,1.501464 -1.82739,1.34033 -1.60767,0.905761 -1.67846,0.646973 -1.74927,0.388184 -1.82006,0.129394 -0.27832,0 -0.27833,0 -0.27832,0 -0.27832,0 m 12.10938,-13.613281 0.1538,-1.206046 0.10986,-1.079099 0.0659,-0.952151 0.022,-0.825204 -0.0403,-0.965565 -0.12085,-1.002194 -0.20142,-1.038822 -0.28197,-1.07545 -0.35645,-1.038806 -0.42481,-0.909419 -0.49316,-0.780033 -0.56152,-0.650648 -0.60669,-0.512681 -0.6482,-0.366207 -0.68969,-0.219731 -0.7312,-0.07326 -0.84229,0.09767 -0.78857,0.292974 -0.73486,0.488276 -0.68115,0.68358 -0.57251,0.876477 -0.40894,1.066899 -0.24536,1.257319 -0.0818,1.447742 0.10864,1.948251 0.32593,1.723636 0.54321,1.49902 0.7605,1.274406 0.67138,0.73487 0.74463,0.524904 0.81788,0.314939 0.89111,0.104974 0.46997,-0.02685 0.51147,-0.08056 0.55298,-0.134279 0.59449,-0.187995 0.59692,-0.23681 0.5603,-0.280759 0.52368,-0.32471 0.48707,-0.368659"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3091"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -602.1344,45.353252 0.43212,0.04029 0.39795,0.120853 0.36377,0.201413 0.3296,0.281972 0.28198,0.3296 0.20141,0.363772 0.12085,0.397946 0.0403,0.432119 -0.0403,0.433358 -0.12085,0.401615 -0.20141,0.36987 -0.28198,0.338126 -0.3296,0.273444 -0.36377,0.195315 -0.39795,0.117186 -0.43212,0.03906 -0.43335,-0.03906 -0.40162,-0.117184 -0.36987,-0.195315 -0.33813,-0.273446 -0.27344,-0.338126 -0.19531,-0.36987 -0.11719,-0.401615 -0.0391,-0.433358 0.0391,-0.432119 0.11719,-0.397946 0.19531,-0.363772 0.27344,-0.3296 0.33813,-0.281972 0.36988,-0.201413 0.40161,-0.120853 0.43335,-0.04029 m -0.0391,14.628907 0.44067,0.04028 0.40405,0.12085 0.36743,0.201416 0.33082,0.28198 0.28198,0.338136 0.20141,0.369874 0.12085,0.401611 0.0403,0.433348 -0.0403,0.43335 -0.12085,0.401611 -0.20141,0.369873 -0.28198,0.338134 -0.33814,0.273438 -0.36988,0.195312 -0.40161,0.117188 -0.43334,0.03906 -0.43336,-0.03906 -0.40161,-0.117188 -0.36987,-0.195312 -0.33813,-0.273438 -0.27344,-0.338134 -0.19531,-0.369873 -0.11719,-0.401611 -0.0391,-0.43335 0.0391,-0.433348 0.11719,-0.401611 0.19531,-0.369874 0.27344,-0.338136 0.33813,-0.28198 0.36987,-0.201416 0.40161,-0.12085 0.43336,-0.04028"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3093"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -591.17737,45.333721 0.43213,0.03907 0.39794,0.117191 0.36378,0.195309 0.32959,0.273427 0.28198,0.3296 0.20141,0.363772 0.12085,0.397946 0.0403,0.43212 -0.0403,0.433358 -0.12085,0.401614 -0.20141,0.36987 -0.28198,0.338126 -0.32959,0.273446 -0.36377,0.195315 -0.39795,0.117185 -0.43213,0.03905 -0.43335,-0.03905 -0.40161,-0.117185 -0.36987,-0.195315 -0.33814,-0.273446 -0.27344,-0.338126 -0.19531,-0.36987 -0.11719,-0.401614 -0.0391,-0.433358 0.0391,-0.43212 0.11719,-0.397946 0.19531,-0.363772 0.27344,-0.3296 0.33814,-0.273427 0.36987,-0.195309 0.40161,-0.117191 0.43335,-0.03907 m -2.73437,25.117188 0,-0.214844 0,-0.214844 0,-0.214843 0,-0.214844 0.94848,-0.378421 0.83374,-0.471193 0.719,-0.563964 0.60425,-0.656735 0.48706,-0.704347 0.34789,-0.726319 0.20874,-0.74829 0.0696,-0.770263 -0.011,-0.178223 -0.033,-0.163574 -0.0549,-0.148926 -0.0769,-0.134277 -0.0684,-0.0769 -0.0684,-0.05493 -0.0684,-0.03296 -0.0684,-0.01099 -0.13917,0.02441 -0.20264,0.07324 -0.26611,0.12207 -0.32958,0.170899 -0.17823,0.0769 -0.1831,0.05493 -0.18799,0.03296 -0.19287,0.01099 -0.4541,-0.0354 -0.40528,-0.106201 -0.35644,-0.177002 -0.30762,-0.247803 -0.2478,-0.310058 -0.177,-0.36377 -0.1062,-0.41748 -0.0354,-0.471192 0.0452,-0.461424 0.1355,-0.427246 0.22583,-0.393067 0.31616,-0.358888 0.39062,-0.29907 0.42969,-0.213622 0.46875,-0.128175 0.50782,-0.04273 0.62622,0.0708 0.58959,0.212403 0.55298,0.354003 0.51636,0.495604 0.44433,0.603028 0.31739,0.695801 0.19043,0.788574 0.0635,0.881347 -0.0879,0.987548 -0.26367,0.950927 -0.43945,0.914307 -0.61523,0.877687 -0.7959,0.822751 -1.00098,0.729979 -1.20605,0.637208 -1.41113,0.544437"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3095"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -584.86877,50.00169 5.25391,-2.275391 5.2539,-2.27539 5.2539,-2.275391 5.25391,-2.275391 0,0.424805 0,0.424805 0,0.424804 0,0.424805 -4.52148,1.962891 -4.52149,1.962891 -4.52149,1.96289 -4.52148,1.962891 4.52148,1.982422 4.52149,1.982422 4.52149,1.982421 4.52148,1.982422 0,0.439453 0,0.439454 0,0.439453 0,0.439453 -5.25391,-2.294922 -5.2539,-2.294922 -5.2539,-2.294922 -5.25391,-2.294922 0,-0.239258 0,-0.239257 0,-0.239258 0,-0.239258"
sodipodi:nodetypes="ccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3097"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -562.29065,46.544659 5.26855,0 5.26856,0 5.26855,0 5.26856,0 0,0.400391 0,0.40039 0,0.400391 0,0.40039 -5.26856,0 -5.26855,0 -5.26856,0 -5.26855,0 0,-0.40039 0,-0.400391 0,-0.40039 0,-0.400391 m 0,6.367187 5.26855,0 5.26856,0 5.26855,0 5.26856,0 0,0.400391 0,0.400391 0,0.40039 0,0.400391 -5.26856,0 -5.26855,0 -5.26856,0 -5.26855,0 0,-0.400391 0,-0.40039 0,-0.400391 0,-0.400391"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3099"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -518.6969,51.036846 -5.2539,2.275391 -5.25391,2.27539 -5.2539,2.275391 -5.25391,2.275391 0,-0.419922 0,-0.419922 0,-0.419922 0,-0.419922 4.52636,-1.962891 4.52637,-1.96289 4.52637,-1.962891 4.52636,-1.96289 -4.52636,-1.982422 -4.52637,-1.982422 -4.52637,-1.982422 -4.52636,-1.982422 0,-0.444336 0,-0.444336 0,-0.444336 0,-0.444336 5.25391,2.294922 5.2539,2.294922 5.25391,2.294922 5.2539,2.294922 0,0.239258 0,0.239257 0,0.239258 0,0.239258"
sodipodi:nodetypes="ccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3101"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -508.98987,57.540752 -0.20019,0 -0.2002,0 -0.20019,0 -0.2002,0 0.0891,-1.176753 0.13062,-1.069334 0.17213,-0.961916 0.21363,-0.854497 0.30761,-0.888665 0.43457,-1.044919 0.56152,-1.201174 0.68849,-1.357429 0.53466,-1.038809 0.43213,-0.909421 0.32959,-0.780032 0.22705,-0.650644 0.1538,-0.596913 0.10987,-0.599362 0.0659,-0.60181 0.022,-0.604259 -0.083,-1.176745 -0.24902,-1.049801 -0.41504,-0.922856 -0.58105,-0.795911 -0.69214,-0.640855 -0.76782,-0.457758 -0.84351,-0.274663 -0.91918,-0.09157 -0.80445,0.05006 -0.71411,0.150151 -0.62378,0.25024 -0.53345,0.350327 -0.42724,0.408949 -0.30518,0.42603 -0.1831,0.443111 -0.061,0.460191 0.0366,0.382093 0.10986,0.423588 0.18311,0.465084 0.25635,0.506579 0.25634,0.495617 0.18311,0.432133 0.10986,0.368648 0.0366,0.305164 -0.0281,0.338146 -0.0842,0.311283 -0.14038,0.28442 -0.19653,0.257558 -0.23682,0.205088 -0.26123,0.146488 -0.28565,0.08789 -0.31005,0.02929 -0.40161,-0.05004 -0.38453,-0.150143 -0.36743,-0.250248 -0.35034,-0.350352 -0.29053,-0.449207 -0.20752,-0.52734 -0.12451,-0.605472 -0.0415,-0.683606 0.11841,-1.071764 0.35522,-1.008296 0.59204,-0.944829 0.82886,-0.881361 1.03149,-0.743393 1.19995,-0.531001 1.36841,-0.318608 1.53687,-0.106216 1.87865,0.146499 1.61255,0.439458 1.34644,0.732417 1.08033,1.025376 0.61522,0.882581 0.43945,0.92896 0.26368,0.975337 0.0879,1.021715 -0.0403,0.717785 -0.12086,0.727543 -0.20141,0.737301 -0.28197,0.747059 -0.38453,0.784921 -0.52857,0.850833 -0.67261,0.916745 -0.81664,0.982657 -1.2793,1.485602 -1.00586,1.253665 -0.73242,1.021726 -0.45898,0.789788 -0.28199,0.727544 -0.22095,0.854494 -0.15991,0.981443 -0.0989,1.108394 m -0.27344,2.421875 0.44067,0.04029 0.40405,0.120851 0.36744,0.201415 0.33081,0.281981 0.28198,0.330812 0.20141,0.367431 0.12085,0.404053 0.0403,0.440672 -0.0403,0.43335 -0.12085,0.401612 -0.20141,0.369873 -0.28198,0.338134 -0.33814,0.273438 -0.36987,0.195312 -0.40161,0.117188 -0.43335,0.03906 -0.43335,-0.03906 -0.40161,-0.117188 -0.36987,-0.195312 -0.33813,-0.273438 -0.27344,-0.338134 -0.19532,-0.369873 -0.11718,-0.401612 -0.0391,-0.43335 0.0391,-0.440672 0.11718,-0.404053 0.19532,-0.367431 0.27344,-0.330812 0.33813,-0.281981 0.36987,-0.201415 0.40161,-0.120851 0.43335,-0.04029"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3103"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -472.46643,45.079815 -0.57129,1.948242 -0.57129,1.948243 -0.57129,1.948242 -0.57129,1.948242 -0.57252,1.987309 -0.44801,1.586915 -0.32348,1.186522 -0.19896,0.786129 -0.11964,0.556643 -0.0854,0.498048 -0.0513,0.439452 -0.0171,0.380857 0.0256,0.300294 0.0769,0.27588 0.12817,0.251464 0.17946,0.227049 0.22704,0.18799 0.25146,0.134278 0.27588,0.08057 0.30031,0.02685 0.74828,-0.08911 0.81909,-0.267333 0.88989,-0.445556 0.96071,-0.62378 0.96922,-0.823972 0.89599,-1.046141 0.82276,-1.268311 0.74953,-1.490482 0.62376,-1.618646 0.44555,-1.65283 0.26734,-1.687013 0.0891,-1.721198 -0.10134,-1.638174 -0.30396,-1.574703 -0.50658,-1.511234 -0.70921,-1.447764 -0.88503,-1.332995 -1.05347,-1.166987 -1.22192,-1.000981 -1.39036,-0.834975 -1.50392,-0.666489 -1.58204,-0.476069 -1.66015,-0.28565 -1.73827,-0.09523 -2.21559,0.150161 -2.13501,0.450444 -2.05444,0.750728 -1.97387,1.05101 -1.8335,1.323255 -1.6333,1.586918 -1.4331,1.850581 -1.23291,2.114246 -0.98267,2.268075 -0.7019,2.312013 -0.42114,2.355955 -0.14038,2.399895 0.12329,2.194827 0.36988,2.092285 0.61645,1.989745 0.86303,1.887205 1.09619,1.723632 1.29638,1.499022 1.49659,1.274414 1.69678,1.049807 1.83105,0.828854 1.89941,0.592039 1.96777,0.355226 2.03615,0.118413 2.50609,-0.172116 2.38158,-0.51636 2.25709,-0.860598 2.13258,-1.204833 1.96165,-1.535646 1.72485,-1.853027 1.48804,-2.170409 1.25124,-2.487793 0.2832,0 0.2832,0 0.28321,0 0.2832,0 -1.05837,2.548828 -1.41724,2.294921 -1.77611,2.041016 -2.13499,1.78711 -2.39504,1.452633 -2.55616,1.037596 -2.71728,0.62256 -2.8784,0.207524 -2.28272,-0.137938 -2.19971,-0.41382 -2.11669,-0.689699 -2.03369,-0.965574 -1.88111,-1.20972 -1.65894,-1.44165 -1.43676,-1.673583 -1.2146,-1.905516 -0.96557,-2.062986 -0.6897,-2.165527 -0.41382,-2.268066 -0.13794,-2.370609 0.15137,-2.534172 0.4541,-2.446286 0.75684,-2.358401 1.05957,-2.270516 1.33178,-2.113025 1.57348,-1.86645 1.81519,-1.619877 2.05689,-1.373304 2.22045,-1.102279 2.28637,-0.787349 2.3523,-0.472417 2.41822,-0.157486 1.97142,0.104996 1.87134,0.314946 1.77124,0.524897 1.67116,0.734848 1.53319,0.927748 1.33788,1.123052 1.14258,1.318355 0.94729,1.513658 0.74339,1.627208 0.531,1.67847 0.31861,1.729732 0.10622,1.780996 -0.10012,1.783454 -0.3003,1.776125 -0.50048,1.768796 -0.70067,1.761469 -0.84596,1.629641 -0.95582,1.392823 -1.06567,1.156005 -1.17552,0.919187 -1.24391,0.700693 -1.27075,0.500487 -1.2976,0.300288 -1.32445,0.100095 -0.69704,-0.04395 -0.60669,-0.131836 -0.51636,-0.219726 -0.42601,-0.307618 -0.32472,-0.386962 -0.23194,-0.457764 -0.13915,-0.528564 -0.0464,-0.599367 0.022,-0.589597 0.0659,-0.675048 0.10987,-0.760498 0.15382,-0.84595 -1.3733,1.59424 -1.22926,1.286622 -1.0852,0.979003 -0.94115,0.671385 -0.84351,0.452886 -0.79224,0.323485 -0.74097,0.194089 -0.68969,0.0647 -0.67383,-0.0769 -0.63477,-0.230713 -0.5957,-0.384521 -0.55663,-0.538331 -0.46998,-0.676268 -0.33569,-0.778808 -0.20142,-0.881347 -0.0671,-0.983889 0.11474,-1.458736 0.34424,-1.544188 0.57373,-1.62964 0.80323,-1.715093 1.00219,-1.676017 1.15111,-1.512448 1.30005,-1.34888 1.44899,-1.185311 1.09374,-0.709218 1.03515,-0.506589 0.97657,-0.303958 0.91798,-0.101329 0.62621,0.04274 0.57006,0.128178 0.51392,0.213619 0.45778,0.299062 0.40404,0.374766 0.33324,0.460208 0.26246,0.545651 0.19166,0.631094 0.16113,-0.53711 0.16113,-0.537109 0.16114,-0.53711 0.16113,-0.537109 0.7666,-0.107422 0.7666,-0.107422 0.76661,-0.107421 0.7666,-0.107422 m -6.85547,0.800781 -0.73487,0.09645 -0.73975,0.289309 -0.74463,0.482175 -0.7495,0.675039 -1.06324,1.231697 -0.98267,1.429446 -0.9021,1.627194 -0.82152,1.824944 -0.50416,1.337895 -0.36011,1.201174 -0.21606,1.064451 -0.072,0.92773 0.0427,0.587161 0.12817,0.531007 0.21363,0.474852 0.29908,0.418699 0.36132,0.333254 0.38086,0.238038 0.40039,0.142821 0.41993,0.04761 0.57372,-0.05371 0.58837,-0.161132 0.60303,-0.268554 0.61769,-0.375977 0.63232,-0.487054 0.64697,-0.601807 0.66162,-0.716555 0.67628,-0.831303 0.6372,-0.898433 0.54443,-0.898436 0.45166,-0.898439 0.3589,-0.898442 0.4785,-1.480706 0.34179,-1.336667 0.20508,-1.192629 0.0684,-1.048592 -0.0452,-0.611563 -0.13551,-0.545651 -0.22582,-0.479739 -0.31615,-0.413828 -0.37111,-0.333242 -0.41016,-0.238034 -0.44921,-0.142825 -0.48827,-0.04762"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3105"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -444.79065,54.923565 -2.56348,0 -2.56348,0 -2.56347,0 -2.56348,0 -0.44922,1.044922 -0.44922,1.044922 -0.44921,1.044921 -0.44922,1.044922 -0.29053,0.722658 -0.20752,0.625001 -0.12451,0.527343 -0.0415,0.429686 0.0354,0.294191 0.1062,0.277099 0.177,0.26001 0.24781,0.242919 0.37597,0.205079 0.54199,0.166015 0.70801,0.126953 0.87403,0.08789 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.08496,0 -2.08496,0 -2.08496,0 -2.08496,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.75683,-0.15747 0.61035,-0.179443 0.46387,-0.201416 0.31739,-0.22339 0.51147,-0.589598 0.53833,-0.831298 0.56519,-1.072998 0.59204,-1.314699 2.3291,-5.449219 2.3291,-5.449218 2.3291,-5.449219 2.3291,-5.449219 0.1709,0 0.1709,0 0.1709,0 0.1709,0 2.30469,5.507813 2.30468,5.507812 2.30469,5.507813 2.30469,5.507812 0.5432,1.21216 0.51635,0.980224 0.48951,0.748291 0.46266,0.516356 0.50291,0.347901 0.59082,0.262451 0.67871,0.177002 0.76662,0.09155 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.61231,0 -2.6123,0 -2.61231,0 -2.6123,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.72631,-0.06225 0.59692,-0.108643 0.46753,-0.15503 0.33815,-0.201417 0.24779,-0.236815 0.17699,-0.26123 0.10621,-0.285645 0.0354,-0.31006 -0.0488,-0.491941 -0.14649,-0.616454 -0.24413,-0.740967 -0.34179,-0.865481 -0.40039,-0.952148 -0.40039,-0.952149 -0.40039,-0.952148 -0.40039,-0.952149 m -0.54687,-1.445313 -1.12305,-2.675781 -1.12304,-2.675781 -1.12305,-2.675782 -1.12305,-2.675781 -1.15235,2.675781 -1.15234,2.675782 -1.15235,2.675781 -1.15234,2.675781 2.27539,0 2.27539,0 2.2754,0 2.27539,0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3107"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -415.70862,50.275127 1.29027,0.336922 1.11694,0.424807 0.94361,0.512693 0.77028,0.600578 0.82884,0.948492 0.59203,1.048586 0.35524,1.14868 0.11842,1.248774 -0.0781,0.976566 -0.23438,0.957031 -0.39062,0.937499 -0.54686,0.917966 -0.68361,0.838624 -0.80078,0.718994 -0.91797,0.599365 -1.03514,0.479736 -1.22804,0.358887 -1.51611,0.256347 -1.8042,0.153809 -2.09228,0.05127 -3.125,0 -3.125,0 -3.125,0 -3.125,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.24902,0 0.24903,0 0.24903,0 0.24902,0 0.77148,-0.06592 0.65429,-0.197753 0.53711,-0.32959 0.41993,-0.461426 0.19653,-0.438231 0.14038,-0.631103 0.0842,-0.823975 0.0281,-1.016848 0,-4.277344 0,-4.277344 0,-4.277343 0,-4.277344 -0.0354,-1.11693 -0.10621,-0.889887 -0.177,-0.662846 -0.2478,-0.435805 -0.42725,-0.375963 -0.52002,-0.26855 -0.61279,-0.161137 -0.70556,-0.05373 -0.24902,0 -0.24903,0 -0.24903,0 -0.24902,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.86133,0 2.86132,0 2.86133,0 2.86133,0 1.52221,0.02931 1.36352,0.0879 1.20484,0.146479 1.04615,0.205063 1.37816,0.419936 1.20484,0.556645 1.03149,0.693355 0.85817,0.830064 0.67503,0.922864 0.48218,0.991215 0.28931,1.059566 0.0965,1.127918 -0.0757,0.970469 -0.22705,0.919192 -0.37842,0.867917 -0.52977,0.816641 -0.6775,0.731209 -0.82154,0.631106 -0.96557,0.531003 -1.10961,0.4309 m -10.23437,-1.054687 0.37353,0.0647 0.39794,0.05738 0.42237,0.05005 0.44678,0.04272 0.47973,0.02564 0.50171,0.01831 0.52368,0.01098 0.54566,0.0037 1.33666,-0.03783 1.15845,-0.113523 0.98023,-0.189211 0.80201,-0.264901 0.67992,-0.352775 0.59448,-0.433346 0.50904,-0.513919 0.42359,-0.594492 0.33324,-0.649404 0.23803,-0.678707 0.14283,-0.708011 0.0476,-0.737315 -0.11842,-1.119373 -0.35523,-1.033931 -0.59203,-0.94849 -0.82885,-0.86305 -1.05592,-0.717759 -1.2732,-0.512691 -1.49047,-0.307622 -1.70776,-0.102553 -0.95215,0.02687 -0.90332,0.08057 -0.85449,0.134272 -0.80566,0.187975 0,2.543945 0,2.543945 0,2.543946 0,2.543945 m 0,12.65625 1.12914,0.230714 1.12183,0.164795 1.1145,0.09888 1.10718,0.03296 1.66259,-0.09888 1.45263,-0.296631 1.24268,-0.494384 1.03273,-0.69214 0.81176,-0.847165 0.57983,-0.939941 0.3479,-1.032715 0.11598,-1.125491 -0.0525,-0.764156 -0.15748,-0.74951 -0.26245,-0.734864 -0.36742,-0.72022 -0.48585,-0.675043 -0.61768,-0.599363 -0.7495,-0.523683 -0.88134,-0.448005 -1.00343,-0.358879 -1.11573,-0.256345 -1.22802,-0.153811 -1.34032,-0.05128 -0.5835,0.0024 -0.53955,0.0073 -0.49561,0.0122 -0.45165,0.01708 -0.40894,0.0232 -0.36744,0.03052 -0.32592,0.03784 -0.28442,0.04516 0,2.714844 0,2.714843 0,2.714844 0,2.714844"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3109"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -383.3844,36.700909 0.15137,2.250977 0.15137,2.250976 0.15136,2.250977 0.15137,2.250976 -0.15137,0 -0.15136,0 -0.15137,0 -0.15137,0 -0.67018,-1.879871 -0.79956,-1.596675 -0.92895,-1.313481 -1.05834,-1.030286 -1.17921,-0.777573 -1.29151,-0.555415 -1.40381,-0.333257 -1.5161,-0.111098 -1.28662,0.08424 -1.22315,0.25269 -1.15966,0.421138 -1.09619,0.589585 -1.00831,0.764173 -0.89599,0.964359 -0.78369,1.164547 -0.67139,1.364733 -0.52978,1.553965 -0.37842,1.732181 -0.22705,1.910397 -0.0757,2.088614 0.072,1.737066 0.21607,1.617433 0.3601,1.4978 0.50415,1.378169 0.64819,1.241456 0.79224,1.087647 0.93627,0.933838 1.08033,0.780028 1.20239,0.615235 1.28295,0.439454 1.36353,0.263671 1.4441,0.08789 1.25121,-0.06836 1.17553,-0.205077 1.09986,-0.341797 1.02418,-0.478516 1.01073,-0.692137 1.05957,-0.963133 1.1084,-1.234132 1.15724,-1.505129 0.15137,0.09766 0.15137,0.09766 0.15136,0.09766 0.15137,0.09766 -1.03761,1.649172 -1.12061,1.412354 -1.20361,1.175536 -1.28661,0.938719 -1.39039,0.71778 -1.51489,0.512695 -1.6394,0.307613 -1.76391,0.102537 -3.10547,-0.305176 -2.73438,-0.915527 -2.36328,-1.525878 -1.99219,-2.136231 -1.1792,-1.896969 -0.84228,-2.058103 -0.50537,-2.21924 -0.16846,-2.380376 0.11108,-1.94213 0.33326,-1.861569 0.55542,-1.781008 0.77759,-1.700449 0.97167,-1.566151 1.1377,-1.378169 1.30371,-1.190189 1.46973,-1.00221 1.59789,-0.803208 1.6687,-0.573725 1.7395,-0.344243 1.81031,-0.114761 1.43066,0.08791 1.42089,0.263676 1.41114,0.439448 1.40138,0.61522 0.38085,0.188002 0.32226,0.134282 0.26367,0.08056 0.20509,0.02684 0.25511,-0.02318 0.23804,-0.06958 0.22095,-0.115972 0.20387,-0.162368 0.23558,-0.289292 0.19897,-0.340571 0.16236,-0.39185 0.12575,-0.44313 0.1709,0 0.1709,0 0.17089,0 0.1709,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3111"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -380.06409,63.790752 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.24903,0 0.24902,0 0.24902,0 0.24903,0 0.77881,-0.06714 0.65674,-0.201416 0.53466,-0.335694 0.4126,-0.469971 0.18798,-0.422362 0.13428,-0.622558 0.0806,-0.822754 0.0269,-1.022951 0,-4.277344 0,-4.277344 0,-4.277343 0,-4.277344 -0.0342,-1.124254 -0.10255,-0.892329 -0.17089,-0.660405 -0.23926,-0.42848 -0.42724,-0.375963 -0.52002,-0.26855 -0.6128,-0.161137 -0.70556,-0.05373 -0.24903,0 -0.24902,0 -0.24902,0 -0.24903,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.69531,0 2.69531,0 2.69532,0 2.69531,0 2.79052,0.08424 2.43408,0.252695 2.07764,0.421138 1.7212,0.589585 1.47582,0.786146 1.32202,1.010746 1.16821,1.235347 1.01442,1.459948 0.82884,1.633311 0.59203,1.755374 0.35523,1.877438 0.11843,1.999502 -0.20998,2.650152 -0.62989,2.423097 -1.04979,2.196042 -1.46971,1.96899 -2.13136,1.811524 -2.62452,1.293945 -3.11767,0.776367 -3.61083,0.258789 -2.95899,0 -2.95898,0 -2.95899,0 -2.95898,0 m 7.5586,-1.914062 1.19018,0.239259 1.09008,0.170898 0.98999,0.102539 0.8899,0.03418 2.16918,-0.198975 1.97632,-0.596924 1.78345,-0.994872 1.59058,-1.392823 1.30737,-1.73339 0.93383,-2.0166 0.56031,-2.299808 0.18678,-2.583014 -0.18678,-2.598867 -0.56031,-2.308346 -0.93384,-2.017825 -1.30736,-1.727306 -1.60035,-1.384264 -1.81274,-0.988765 -2.02515,-0.593266 -2.23754,-0.197768 -0.90943,0.03541 -0.97046,0.106206 -1.03149,0.176998 -1.09252,0.247789 0,5.629883 0,5.629882 0,5.629883 0,5.629883"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3113"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -343.48206,38.75169 0,2.617188 0,2.617187 0,2.617188 0,2.617187 1.45508,0 1.45508,0 1.45508,0 1.45508,0 1.03881,-0.04272 0.85082,-0.128169 0.66285,-0.213625 0.47486,-0.299081 0.45165,-0.534659 0.33935,-0.705563 0.22706,-0.876468 0.11475,-1.047372 0.18067,0 0.18066,0 0.18066,0 0.18067,0 0,2.304688 0,2.304687 0,2.304688 0,2.304687 -0.18067,0 -0.18066,0 -0.18066,0 -0.18067,0 -0.13673,-0.880121 -0.13672,-0.706785 -0.13671,-0.533449 -0.13671,-0.360114 -0.20387,-0.323479 -0.26001,-0.286863 -0.31616,-0.250247 -0.37231,-0.21363 -0.45411,-0.170891 -0.56153,-0.122068 -0.66894,-0.07325 -0.77635,-0.02442 -1.45508,0 -1.45508,0 -1.45508,0 -1.45508,0 0,2.182617 0,2.182618 0,2.182617 0,2.182617 0.01,0.793459 0.0293,0.622559 0.0488,0.451659 0.0684,0.28076 0.0928,0.177003 0.12207,0.159913 0.15137,0.142822 0.18067,0.125731 0.23925,0.09399 0.32715,0.06714 0.41504,0.04028 0.50293,0.01343 1.12305,0 1.12304,0 1.12305,0 1.12305,0 1.04613,-0.01953 0.89233,-0.05859 0.73853,-0.09766 0.58473,-0.13672 0.50292,-0.19409 0.49316,-0.269775 0.4834,-0.34546 0.47365,-0.421144 0.60912,-0.682371 0.61645,-0.83618 0.62378,-0.989991 0.63111,-1.143802 0.19531,0 0.19531,0 0.19532,0 0.19531,0 -0.57129,1.660156 -0.57128,1.660157 -0.57129,1.660156 -0.57129,1.660156 -5.10254,0 -5.10254,0 -5.10254,0 -5.10254,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0.46265,-0.02808 0.45044,-0.08423 0.43823,-0.140381 0.42603,-0.196534 0.28686,-0.17578 0.2356,-0.214844 0.18432,-0.253906 0.13306,-0.29297 0.10253,-0.394285 0.0732,-0.557861 0.0439,-0.721436 0.0147,-0.885011 0,-4.301758 0,-4.301758 0,-4.301758 0,-4.301758 -0.0317,-1.138903 -0.0952,-0.897212 -0.15869,-0.655521 -0.22217,-0.413832 -0.41016,-0.341783 -0.52734,-0.244136 -0.64453,-0.146489 -0.76172,-0.04884 -0.23438,0 -0.23437,0 -0.23438,0 -0.23437,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 5.10254,0 5.10254,0 5.10254,0 5.10254,0 0.0732,1.450195 0.0732,1.450196 0.0732,1.450195 0.0732,1.450196 -0.19043,0 -0.19043,0 -0.19043,0 -0.19043,0 -0.21119,-0.963122 -0.2234,-0.799557 -0.23559,-0.63599 -0.24779,-0.472425 -0.27467,-0.367418 -0.33569,-0.32104 -0.39673,-0.274663 -0.45775,-0.228285 -0.4651,-0.12816 -0.61402,-0.09155 -0.76293,-0.05494 -0.91186,-0.01832 -1.81641,0 -1.81641,0 -1.8164,0 -1.81641,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3115"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -319.20471,38.75169 0,2.602539 0,2.602539 0,2.602539 0,2.602539 1.20606,0 1.20605,0 1.20606,0 1.20605,0 0.77391,-0.04516 0.66162,-0.135495 0.54932,-0.225832 0.43702,-0.316171 0.35766,-0.460196 0.29174,-0.638425 0.22584,-0.816653 0.15992,-0.994882 0.18066,0 0.18067,0 0.18066,0 0.18066,0 0,2.241211 0,2.241211 0,2.24121 0,2.241211 -0.18066,0 -0.18066,0 -0.18067,0 -0.18066,0 -0.033,-0.720209 -0.0793,-0.617673 -0.12574,-0.515139 -0.17212,-0.412604 -0.20509,-0.338128 -0.24414,-0.291745 -0.2832,-0.245364 -0.32226,-0.198981 -0.37354,-0.162346 -0.45654,-0.115965 -0.53955,-0.06958 -0.62255,-0.0232 -1.20605,0 -1.20606,0 -1.20605,0 -1.20606,0 0,2.080078 0,2.080078 0,2.080078 0,2.080078 0.0159,0.920412 0.0476,0.749512 0.0793,0.578613 0.1111,0.407713 0.12451,0.235597 0.17822,0.218506 0.23194,0.201416 0.28565,0.184325 0.43456,0.205079 0.44433,0.146484 0.45411,0.08789 0.46387,0.0293 0.23926,0 0.23925,0 0.23926,0 0.23926,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.8418,0 -2.84179,0 -2.84179,0 -2.8418,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0.76415,-0.05981 0.65186,-0.179443 0.53955,-0.299072 0.42725,-0.418702 0.20507,-0.422362 0.14648,-0.642089 0.0879,-0.861817 0.0293,-1.081545 0,-4.277344 0,-4.277343 0,-4.277344 0,-4.277344 -0.0159,-0.920397 -0.0476,-0.749507 -0.0793,-0.578617 -0.1111,-0.407729 -0.12329,-0.235582 -0.17456,-0.218501 -0.22583,-0.20142 -0.2771,-0.18434 -0.42725,-0.205064 -0.44189,-0.14648 -0.45654,-0.08789 -0.47119,-0.02931 -0.23438,0 -0.23437,0 -0.23438,0 -0.23437,0 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 4.92676,0 4.92675,0 4.92676,0 4.92676,0 0.0635,1.455078 0.0635,1.455079 0.0635,1.455078 0.0635,1.455078 -0.1709,0 -0.1709,0 -0.17089,0 -0.1709,0 -0.2649,-0.865466 -0.28687,-0.740962 -0.30884,-0.61646 -0.3308,-0.491956 -0.35279,-0.408922 -0.39429,-0.347896 -0.43579,-0.286869 -0.47728,-0.225844 -0.55665,-0.170885 -0.69337,-0.122065 -0.83007,-0.07325 -0.96679,-0.02443 -1.45996,0 -1.45996,0 -1.45996,0 -1.45996,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3117"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -280.5719,36.700909 0.1709,2.089844 0.17089,2.089844 0.1709,2.089843 0.1709,2.089844 -0.1709,0 -0.1709,0 -0.17089,0 -0.1709,0 -0.55543,-1.466053 -0.63111,-1.273189 -0.70678,-1.080326 -0.78246,-0.887464 -1.26588,-0.999741 -1.43433,-0.714107 -1.60278,-0.428471 -1.77123,-0.142837 -2.37794,0.250259 -2.07519,0.750736 -1.77246,1.251216 -1.46972,1.751695 -0.96558,1.77003 -0.6897,1.931156 -0.41382,2.092281 -0.13793,2.253408 0.0915,1.853033 0.27466,1.770022 0.45776,1.687009 0.64087,1.603999 0.78858,1.458738 0.90088,1.251222 1.01318,1.043703 1.12549,0.836181 1.19872,0.632325 1.21337,0.45166 1.22804,0.270996 1.24268,0.09033 0.72631,-0.02319 0.7141,-0.06958 0.70191,-0.115967 0.68971,-0.162354 0.67748,-0.207515 0.66528,-0.251465 0.65308,-0.295412 0.64088,-0.339358 0,-1.914062 0,-1.914063 0,-1.914062 0,-1.914063 -0.0195,-0.909417 -0.0586,-0.736082 -0.0976,-0.562746 -0.13671,-0.389411 -0.16847,-0.292961 -0.21241,-0.253904 -0.25634,-0.214846 -0.30028,-0.175789 -0.37355,-0.145256 -0.49561,-0.103757 -0.61767,-0.06226 -0.73973,-0.02076 0,-0.185547 0,-0.185547 0,-0.185547 0,-0.185547 2.56347,0 2.56348,0 2.56347,0 2.56348,0 0,0.185547 0,0.185547 0,0.185547 0,0.185547 -0.12207,0 -0.12207,0 -0.12207,0 -0.12207,0 -0.70192,0.06348 -0.58228,0.190432 -0.46264,0.317381 -0.343,0.444328 -0.17092,0.449225 -0.12207,0.625003 -0.0732,0.800778 -0.0244,0.976556 0,2.026367 0,2.026368 0,2.026367 0,2.026367 -1.1194,0.565186 -1.11206,0.484619 -1.10473,0.404053 -1.0974,0.323486 -1.12428,0.247807 -1.1853,0.177001 -1.24634,0.106199 -1.30736,0.0354 -3.60718,-0.307617 -3.14576,-0.922851 -2.68432,-1.538086 -2.2229,-2.153321 -1.30737,-1.916503 -0.93384,-2.058103 -0.5603,-2.199706 -0.18677,-2.341313 0.10498,-1.729728 0.31494,-1.693112 0.5249,-1.656496 0.73487,-1.619883 1.08886,-1.794421 1.27442,-1.574702 1.45996,-1.354985 1.64551,-1.135267 1.52099,-0.743393 1.65282,-0.531001 1.78468,-0.318608 1.91651,-0.106216 0.70555,0.01466 0.67139,0.04395 0.63721,0.07324 0.60303,0.102525 0.65673,0.152602 0.77881,0.223394 0.90088,0.294184 1.02296,0.364976 0.50169,0.179458 0.41138,0.128178 0.32104,0.0769 0.23073,0.02562 0.17821,-0.02074 0.16357,-0.06225 0.14893,-0.103765 0.13429,-0.145278 0.12328,-0.21605 0.0964,-0.296626 0.0696,-0.377202 0.0427,-0.457778 0.18067,0 0.18066,0 0.18067,0 0.18066,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3119"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -267.99377,49.591534 3.07617,0 3.07617,0 3.07617,0 3.07617,0 0,-1.894531 0,-1.894531 0,-1.894532 0,-1.894531 -0.0159,-0.928942 -0.0476,-0.755611 -0.0793,-0.58228 -0.11105,-0.408949 -0.12452,-0.235582 -0.17823,-0.218501 -0.23193,-0.20142 -0.28564,-0.18434 -0.42603,-0.205064 -0.43824,-0.14648 -0.45043,-0.08789 -0.46264,-0.02931 -0.23437,0 -0.23438,0 -0.23437,0 -0.23438,0 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.83203,0 2.83204,0 2.83203,0 2.83203,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.23438,0 -0.23437,0 -0.23438,0 -0.23437,0 -0.46266,0.02809 -0.45045,0.08423 -0.43823,0.140375 -0.42601,0.196519 -0.2881,0.177016 -0.23926,0.218511 -0.19043,0.260005 -0.14158,0.3015 -0.094,0.395521 -0.0671,0.561527 -0.0403,0.727535 -0.0134,0.893542 0,4.272461 0,4.27246 0,4.272461 0,4.272461 0.0159,0.920412 0.0476,0.749512 0.0794,0.578613 0.1111,0.407713 0.12328,0.235597 0.17455,0.218506 0.22584,0.201416 0.27711,0.184325 0.43456,0.205079 0.44433,0.146484 0.45411,0.08789 0.46388,0.0293 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.83203,0 -2.83203,0 -2.83204,0 -2.83203,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0.7556,-0.05981 0.64575,-0.179443 0.53589,-0.299072 0.42604,-0.418702 0.21361,-0.422362 0.15258,-0.64209 0.0916,-0.861816 0.0305,-1.081545 0,-2.016602 0,-2.016601 0,-2.016602 0,-2.016601 -3.07617,0 -3.07617,0 -3.07617,0 -3.07617,0 0,2.016601 0,2.016602 0,2.016601 0,2.016602 0.0159,0.920412 0.0476,0.749512 0.0793,0.578613 0.1111,0.407713 0.12451,0.235597 0.17822,0.218506 0.23193,0.201416 0.28565,0.184325 0.42602,0.205079 0.43823,0.146484 0.45045,0.08789 0.46265,0.0293 0.23926,0 0.23926,0 0.23925,0 0.23926,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.83692,0 -2.83691,0 -2.83692,0 -2.83691,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0.76416,-0.05981 0.65186,-0.179443 0.53955,-0.299072 0.42725,-0.418702 0.20507,-0.422362 0.14648,-0.64209 0.0879,-0.861816 0.0293,-1.081545 0,-4.272461 0,-4.272461 0,-4.27246 0,-4.272461 -0.0159,-0.928942 -0.0476,-0.755611 -0.0793,-0.58228 -0.1111,-0.408949 -0.12329,-0.235582 -0.17456,-0.218501 -0.22583,-0.20142 -0.2771,-0.18434 -0.43457,-0.205064 -0.44434,-0.14648 -0.4541,-0.08789 -0.46387,-0.02931 -0.23438,0 -0.23437,0 -0.23438,0 -0.23437,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.83691,0 2.83692,0 2.83691,0 2.83692,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.23926,0 -0.23925,0 -0.23926,0 -0.23926,0 -0.46265,0.02809 -0.45045,0.08423 -0.43823,0.140376 -0.42602,0.196519 -0.27954,0.177016 -0.23316,0.218511 -0.18676,0.260005 -0.14038,0.3015 -0.10254,0.395521 -0.0732,0.561527 -0.0439,0.727535 -0.0146,0.893542 0,1.894531 0,1.894531 0,1.894532 0,1.894531"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3121"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -234.96643,63.068096 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.83691,0 -2.83692,0 -2.83691,0 -2.83692,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0.76416,-0.05981 0.65186,-0.179443 0.53955,-0.299072 0.42725,-0.418702 0.20507,-0.422362 0.14648,-0.64209 0.0879,-0.861816 0.0293,-1.081545 0,-4.277344 0,-4.277344 0,-4.277343 0,-4.277344 -0.0159,-0.920397 -0.0476,-0.749507 -0.0793,-0.578617 -0.1111,-0.407729 -0.12329,-0.235582 -0.17456,-0.218501 -0.22583,-0.20142 -0.2771,-0.18434 -0.43457,-0.205064 -0.44434,-0.14648 -0.4541,-0.08789 -0.46387,-0.02931 -0.23437,0 -0.23438,0 -0.23437,0 -0.23438,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.83692,0 2.83691,0 2.83692,0 2.83691,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.23926,0 -0.23925,0 -0.23926,0 -0.23926,0 -0.75562,0.05983 -0.64575,0.179448 -0.53589,0.299067 -0.42602,0.418687 -0.21363,0.422377 -0.15259,0.642094 -0.0915,0.861812 -0.0305,1.081529 0,4.277344 0,4.277343 0,4.277344 0,4.277344 0.0159,0.920412 0.0476,0.749512 0.0793,0.578613 0.1111,0.407713 0.12451,0.235597 0.17822,0.218506 0.23193,0.201416 0.28565,0.184325 0.42602,0.205079 0.43823,0.146484 0.45045,0.08789 0.46265,0.0293 0.23926,0 0.23926,0 0.23925,0 0.23926,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3123"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -229.96643,38.029034 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.83692,0 2.83691,0 2.83691,0 2.83692,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.23926,0 -0.23926,0 -0.23926,0 -0.23926,0 -0.75562,0.05983 -0.64575,0.179448 -0.53589,0.299067 -0.42602,0.418687 -0.20508,0.422377 -0.14649,0.642094 -0.0879,0.861812 -0.0293,1.081529 0,3.237305 0,3.237305 0,3.237304 0,3.237305 -0.0415,1.423344 -0.12451,1.281739 -0.20752,1.140135 -0.29052,0.998532 -0.38209,0.898439 -0.5017,0.839844 -0.62134,0.78125 -0.74096,0.722655 -0.84229,0.598144 -0.9253,0.427246 -1.0083,0.256348 -1.0913,0.08545 -0.86914,-0.05615 -0.77149,-0.168457 -0.67383,-0.280762 -0.57617,-0.393066 -0.46142,-0.474853 -0.32959,-0.506592 -0.19775,-0.53833 -0.0659,-0.570069 0.0305,-0.449217 0.0916,-0.390624 0.15259,-0.332032 0.21362,-0.27344 0.33569,-0.26489 0.36255,-0.189208 0.3894,-0.113526 0.41626,-0.03784 0.30396,0.02564 0.28686,0.07691 0.26978,0.128173 0.25269,0.179441 0.26977,0.290529 0.30151,0.461426 0.33326,0.632324 0.36499,0.803221 0.24047,0.461426 0.27222,0.32959 0.30395,0.197754 0.3357,0.06592 0.25879,-0.04028 0.24902,-0.120849 0.23926,-0.201416 0.22949,-0.281983 0.20508,-0.38452 0.14648,-0.509033 0.0879,-0.633545 0.0293,-0.758058 0,-4.521485 0,-4.521484 0,-4.521485 0,-4.521484 -0.0159,-0.920397 -0.0476,-0.749507 -0.0793,-0.578617 -0.1111,-0.407729 -0.12452,-0.235582 -0.17822,-0.218501 -0.23194,-0.20142 -0.28564,-0.18434 -0.42603,-0.205064 -0.43823,-0.14648 -0.45043,-0.08789 -0.46265,-0.02931 -0.23926,0 -0.23925,0 -0.23926,0 -0.23926,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3125"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -206.45081,49.103252 2.44141,2.426758 2.44141,2.426758 2.4414,2.426758 2.44141,2.426758 1.15721,1.105959 1.06933,0.915527 0.98145,0.725097 0.89357,0.534667 0.8496,0.383301 0.8496,0.290527 0.84962,0.197754 0.84962,0.10498 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -3.14941,0 -3.14942,0 -3.14941,0 -3.14942,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.52611,-0.02319 0.44556,-0.06958 0.36499,-0.115967 0.28444,-0.162354 0.22216,-0.200194 0.15868,-0.209961 0.0952,-0.219727 0.0317,-0.229493 -0.0122,-0.22827 -0.0366,-0.216064 -0.061,-0.203857 -0.0855,-0.191652 -0.14161,-0.225828 -0.24903,-0.306396 -0.35644,-0.386964 -0.46386,-0.467531 -2.28516,-2.260742 -2.28515,-2.260743 -2.28516,-2.260742 -2.28516,-2.260742 0,2.133789 0,2.133789 0,2.133789 0,2.133789 0.0159,0.920412 0.0476,0.749512 0.0794,0.578613 0.1111,0.407713 0.12451,0.235597 0.17822,0.218506 0.23193,0.201416 0.28565,0.184325 0.42602,0.205079 0.43824,0.146484 0.45044,0.08789 0.46265,0.0293 0.22461,0 0.22461,0 0.2246,0 0.22461,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.82226,0 -2.82227,0 -2.82226,0 -2.82227,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0.76416,-0.05981 0.65186,-0.179443 0.53954,-0.299072 0.42725,-0.418702 0.20508,-0.422362 0.14648,-0.64209 0.0879,-0.861816 0.0293,-1.081545 0,-4.277344 0,-4.277344 0,-4.277343 0,-4.277344 -0.0159,-0.921617 -0.0476,-0.753169 -0.0793,-0.584722 -0.1111,-0.416273 -0.12329,-0.227037 -0.17456,-0.212397 -0.22583,-0.197759 -0.2771,-0.183119 -0.43457,-0.205064 -0.44434,-0.14648 -0.4541,-0.08789 -0.46387,-0.02931 -0.23437,0 -0.23438,0 -0.23437,0 -0.23438,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.82227,0 2.82226,0 2.82227,0 2.82226,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.22461,0 -0.2246,0 -0.22461,0 -0.22461,0 -0.45533,0.02809 -0.448,0.08423 -0.44067,0.140376 -0.43335,0.196519 -0.27954,0.175796 -0.23316,0.214848 -0.18676,0.253902 -0.14038,0.292954 -0.10254,0.395522 -0.0733,0.561527 -0.0439,0.727535 -0.0146,0.893541 0,2.026367 0,2.026367 0,2.026368 0,2.026367 0.31372,-0.294182 0.55054,-0.511471 0.78735,-0.728763 1.02418,-0.946053 2.61352,-2.435291 2.03979,-1.993404 1.46606,-1.551517 0.89234,-1.109631 0.23071,-0.378405 0.16479,-0.353999 0.0989,-0.329595 0.033,-0.305189 -0.0256,-0.217271 -0.0769,-0.202632 -0.12818,-0.187993 -0.17943,-0.173354 -0.24049,-0.153794 -0.31128,-0.109859 -0.38208,-0.06592 -0.45287,-0.02199 -0.15137,0 -0.15136,0 -0.15137,0 -0.15137,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.43164,0 2.43165,0 2.43164,0 2.43164,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.41994,0.02199 -0.4004,0.04639 -0.38085,0.07079 -0.36131,0.0952 -0.37111,0.133071 -0.41016,0.18433 -0.44921,0.235591 -0.48827,0.286851 -0.53712,0.350356 -0.59571,0.445561 -0.65429,0.540767 -0.71288,0.635973 -0.40895,0.396741 -0.79712,0.799564 -1.1853,1.202388 -1.57348,1.605213 -1.01074,1.005859 -1.01074,1.005859 -1.01075,1.00586 -1.01074,1.005859"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3127"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -166.56799,56.466534 0.16113,0.03418 0.16114,0.03418 0.16113,0.03418 0.16113,0.03418 -0.56641,1.796875 -0.5664,1.796875 -0.56641,1.796875 -0.56641,1.796875 -5.12695,0 -5.12695,0 -5.12696,0 -5.12695,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.24902,0 0.24902,0 0.24903,0 0.24902,0 0.78003,-0.06836 0.6604,-0.205078 0.54077,-0.341797 0.42115,-0.478516 0.17944,-0.415037 0.12817,-0.620117 0.0769,-0.825196 0.0256,-1.030275 0,-4.272461 0,-4.272461 0,-4.272461 0,-4.272461 -0.0342,-1.124254 -0.10254,-0.892329 -0.17089,-0.660405 -0.23926,-0.42848 -0.42725,-0.375963 -0.52002,-0.26855 -0.61279,-0.161137 -0.70557,-0.05373 -0.24902,0 -0.24903,0 -0.24902,0 -0.24902,0 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.99805,0 2.99805,0 2.99804,0 2.99805,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.97657,0.0171 -0.82031,0.07081 -0.66407,0.124508 -0.5078,0.178209 -0.38697,0.21852 -0.32105,0.245366 -0.25512,0.272212 -0.18921,0.299058 -0.13672,0.421156 -0.0977,0.638432 -0.0586,0.855708 -0.0195,1.072985 0,4.160156 0,4.160157 0,4.160156 0,4.160156 0.0195,0.747072 0.0586,0.620118 0.0977,0.493164 0.13672,0.366209 0.13306,0.191651 0.16479,0.164795 0.19653,0.137939 0.22828,0.111083 0.37353,0.08545 0.63232,0.06104 0.89112,0.03662 1.14991,0.01221 0.4834,0 0.4834,0 0.48339,0 0.4834,0 1.4099,-0.02808 1.18286,-0.08423 0.95581,-0.140382 0.72877,-0.196534 0.6018,-0.26733 0.57495,-0.352783 0.5481,-0.438234 0.52125,-0.523684 0.5078,-0.657956 0.50781,-0.821533 0.50781,-0.985108 0.50783,-1.148684"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3129"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -148.67737,63.790752 -2.55859,-5.571289 -2.55859,-5.571289 -2.5586,-5.571289 -2.55859,-5.571289 0,4.423828 0,4.423828 0,4.423829 0,4.423828 0.033,1.105958 0.0989,0.876466 0.16479,0.646972 0.23072,0.417479 0.41381,0.358887 0.5188,0.256348 0.62378,0.153808 0.72877,0.05127 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.30469,0 -2.30468,0 -2.30469,0 -2.30469,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0.77881,-0.06348 0.65674,-0.190429 0.53466,-0.317383 0.4126,-0.444337 0.18798,-0.412596 0.13428,-0.612792 0.0806,-0.812989 0.0269,-1.013185 0,-4.326172 0,-4.326172 0,-4.326172 0,-4.326172 -0.0244,-0.817858 -0.0733,-0.695796 -0.12207,-0.573735 -0.17089,-0.451673 -0.16601,-0.270982 -0.22461,-0.246578 -0.2832,-0.222172 -0.3418,-0.197768 -0.41749,-0.170884 -0.52978,-0.122066 -0.64209,-0.07325 -0.75439,-0.02443 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.875,0 1.875,0 1.875,0 1.875,0 2.40234,5.180664 2.40235,5.180664 2.40234,5.180665 2.40234,5.180664 2.36328,-5.180664 2.36329,-5.180665 2.36328,-5.180664 2.36328,-5.180664 1.875,0 1.875,0 1.875,0 1.875,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.22949,0 -0.22949,0 -0.2295,0 -0.22949,0 -0.78737,0.06349 -0.66285,0.190434 -0.53833,0.317378 -0.4138,0.444322 -0.188,0.412611 -0.13428,0.612797 -0.0806,0.812984 -0.0268,1.01317 0,4.326172 0,4.326172 0,4.326172 0,4.326172 0.0342,1.105958 0.10253,0.876466 0.17091,0.646972 0.23927,0.417479 0.4138,0.358887 0.5188,0.256348 0.62378,0.153808 0.72878,0.05127 0.22949,0 0.2295,0 0.22949,0 0.22949,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.8125,0 -2.8125,0 -2.8125,0 -2.8125,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0.78611,-0.06348 0.65918,-0.190429 0.53223,-0.317383 0.40529,-0.444337 0.18797,-0.412596 0.13428,-0.612792 0.0806,-0.812989 0.0269,-1.013185 0,-4.423828 0,-4.423829 0,-4.423828 0,-4.423828 -2.55371,5.571289 -2.55372,5.571289 -2.55371,5.571289 -2.55371,5.571289 -0.16113,0 -0.16114,0 -0.16113,0 -0.16113,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3131"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -130.02502,37.306377 1.79687,0 1.79688,0 1.79687,0 1.79688,0 4.04785,4.96582 4.04785,4.965821 4.04785,4.96582 4.04785,4.965821 0,-3.81836 0,-3.818359 0,-3.81836 0,-3.818359 -0.0342,-1.105943 -0.10254,-0.87646 -0.1709,-0.646978 -0.23924,-0.417494 -0.41383,-0.358872 -0.51881,-0.256343 -0.62377,-0.153813 -0.72875,-0.05128 -0.22949,0 -0.2295,0 -0.22949,0 -0.22949,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.30469,0 2.30469,0 2.30468,0 2.30469,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.23437,0 -0.23438,0 -0.23437,0 -0.23438,0 -0.77882,0.06349 -0.65675,0.190434 -0.53466,0.317378 -0.41258,0.444322 -0.188,0.412611 -0.13428,0.612797 -0.0806,0.812984 -0.0268,1.01317 0,5.581055 0,5.581054 0,5.581055 0,5.581055 -0.17578,0 -0.17578,0 -0.17578,0 -0.17578,0 -4.36523,-5.332031 -4.36524,-5.332032 -4.36523,-5.332031 -4.36524,-5.332031 0,4.077148 0,4.077149 0,4.077148 0,4.077149 0.0329,1.105958 0.0989,0.876466 0.16479,0.646972 0.23072,0.417479 0.42114,0.358887 0.52124,0.256348 0.62134,0.153808 0.72144,0.05127 0.23438,0 0.23437,0 0.23438,0 0.23437,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.30469,0 -2.30468,0 -2.30469,0 -2.30469,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.22949,0 0.2295,0 0.22949,0 0.22949,0 0.78735,-0.06348 0.66284,-0.190429 0.53833,-0.317383 0.41382,-0.444337 0.18799,-0.412596 0.13427,-0.612792 0.0806,-0.812989 0.0269,-1.013185 0,-4.604492 0,-4.604493 0,-4.604492 0,-4.604492 -0.54199,-0.616442 -0.47364,-0.501704 -0.40527,-0.386967 -0.33691,-0.272231 -0.32837,-0.211167 -0.39917,-0.203853 -0.46997,-0.196538 -0.54077,-0.189223 -0.31983,-0.07689 -0.39307,-0.05493 -0.4663,-0.03296 -0.53955,-0.011 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3133"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -85.962524,36.700909 2.491444,0.245376 2.318111,0.736089 2.144779,1.226801 1.971447,1.717515 1.6577,2.075206 1.184077,2.319339 0.710454,2.563473 0.236831,2.807607 -0.238052,2.889409 -0.714116,2.633058 -1.19018,2.376707 -1.666245,2.120357 -2.004397,1.743173 -2.204594,1.245116 -2.404786,0.747066 -2.604973,0.24902 -2.625738,-0.24292 -2.408449,-0.728759 -2.19116,-1.2146 -1.973872,-1.70044 -1.623537,-2.086178 -1.159668,-2.371824 -0.6958,-2.657471 -0.231933,-2.94312 0.268555,-3.009023 0.805663,-2.718502 1.342773,-2.427982 1.879884,-2.137462 1.956782,-1.512437 2.139891,-1.080317 2.322999,-0.648198 2.50611,-0.216079 m -0.371094,1.425781 -1.68946,0.164809 -1.513673,0.49439 -1.337888,0.82397 -1.162104,1.15355 -1.170658,1.831066 -0.836183,2.211917 -0.501707,2.592769 -0.167233,2.973623 0.173341,3.055424 0.520018,2.681886 0.866697,2.308347 1.213381,1.934811 1.149897,1.16211 1.320798,0.830078 1.491701,0.498047 1.662604,0.166015 1.783437,-0.181885 1.61987,-0.545654 1.456302,-0.909423 1.292735,-1.273194 1.068103,-1.665035 0.762935,-2.084959 0.457767,-2.504884 0.152601,-2.924809 -0.167249,-3.182363 -0.501713,-2.75024 -0.836177,-2.318119 -1.170642,-1.885997 -1.176768,-1.162095 -1.381839,-0.830074 -1.586911,-0.498051 -1.791982,-0.16603"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3135"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -63.482056,51.388409 0,1.928711 0,1.928711 0,1.92871 0,1.928711 0.03418,1.131594 0.102536,0.894775 0.1709,0.657959 0.239262,0.421141 0.418696,0.375977 0.513914,0.268555 0.609133,0.161132 0.704351,0.05371 0.253906,0 0.253907,0 0.253906,0 0.253906,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.836914,0 -2.836914,0 -2.836914,0 -2.836914,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.249023,0 0.249024,0 0.249023,0 0.249024,0 0.780027,-0.06836 0.6604,-0.205078 0.540772,-0.341797 0.421144,-0.478516 0.170896,-0.406493 0.12207,-0.614013 0.07324,-0.821533 0.02442,-1.029055 0,-4.277344 0,-4.277343 0,-4.277344 0,-4.277344 -0.03296,-1.131578 -0.09888,-0.894771 -0.164794,-0.657963 -0.23071,-0.421156 -0.427248,-0.375963 -0.52002,-0.26855 -0.612792,-0.161137 -0.705565,-0.05373 -0.249024,0 -0.249023,0 -0.249024,0 -0.249023,0 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.426758,0 2.426758,0 2.426757,0 2.426758,0 1.683342,0.0464 1.495359,0.139165 1.307375,0.231929 1.119393,0.324692 0.985097,0.424819 0.904538,0.551762 0.823978,0.678706 0.743418,0.80565 0.615223,0.909436 0.439449,0.989995 0.263676,1.070552 0.0879,1.151111 -0.134289,1.545419 -0.402836,1.394046 -0.671382,1.242673 -0.93993,1.0913 -1.175547,0.888679 -1.397708,0.634768 -1.61987,0.380857 -1.842032,0.126946 -0.488288,-0.0085 -0.507814,-0.02563 -0.527342,-0.04273 -0.546868,-0.05982 -0.566412,-0.0769 -0.585939,-0.09399 -0.605467,-0.111087 -0.624995,-0.128181 m 0,-1.113282 0.502925,0.09156 0.473631,0.07935 0.444338,0.06714 0.415044,0.05492 0.385736,0.04273 0.356443,0.03052 0.32715,0.01831 0.297858,0.0061 0.980217,-0.09765 0.909422,-0.292966 0.838625,-0.488284 0.76783,-0.683602 0.649405,-0.848379 0.463865,-0.963132 0.278323,-1.077883 0.09278,-1.192637 -0.04395,-0.843494 -0.131839,-0.811764 -0.219724,-0.780033 -0.307608,-0.748303 -0.388192,-0.694567 -0.461428,-0.59936 -0.534665,-0.504155 -0.607902,-0.408949 -0.666511,-0.324693 -0.710452,-0.231929 -0.754392,-0.139164 -0.798333,-0.0464 -0.533453,0.02321 -0.60425,0.06959 -0.675046,0.115962 -0.745845,0.162339 0,2.753906 0,2.753907 0,2.753906 0,2.753906"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3137"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m -31.802368,64.083721 1.015614,1.605223 1.054684,1.378173 1.093753,1.151123 1.132824,0.924075 1.201158,0.723873 1.279292,0.550536 1.357426,0.377199 1.435561,0.203861 0,0.15625 0,0.15625 0,0.15625 0,0.15625 -1.370863,-0.104984 -1.417241,-0.217287 -1.463618,-0.329588 -1.509996,-0.441891 -1.513683,-0.537113 -1.474613,-0.634767 -1.435543,-0.73242 -1.396474,-0.830075 -1.320808,-0.883791 -1.22803,-0.913086 -1.135251,-0.942382 -1.042473,-0.971679 -1.333013,-0.574951 -1.186525,-0.592041 -1.040037,-0.60913 -0.89355,-0.626222 -1.125491,-1.000974 -0.993653,-1.108398 -0.861816,-1.21582 -0.729978,-1.323245 -0.572511,-1.44897 -0.408936,-1.573484 -0.245361,-1.697999 -0.08179,-1.822516 0.240479,-2.843007 0.721435,-2.591549 1.202392,-2.340091 1.683351,-2.088634 2.025134,-1.717522 2.227782,-1.226801 2.430425,-0.736084 2.633065,-0.245374 2.509755,0.246597 2.33398,0.739751 2.158207,1.232905 1.982433,1.726059 1.666245,2.092296 1.19018,2.351078 0.714116,2.609859 0.238053,2.868642 -0.169693,2.357183 -0.509039,2.208253 -0.848383,2.059324 -1.187729,1.910396 -1.450208,1.688234 -1.655277,1.392822 -1.860347,1.097412 -2.065418,0.802001 m -3.28125,-25.878906 -1.69068,0.158705 -1.517336,0.476079 -1.343992,0.793452 -1.170648,1.110826 -1.196293,1.80299 -0.854493,2.225345 -0.512694,2.647701 -0.170895,3.070058 0.173341,3.028569 0.520018,2.659913 0.866697,2.291258 1.213381,1.922604 1.160883,1.170655 1.334226,0.836182 1.50757,0.501708 1.680915,0.167236 1.746816,-0.167236 1.5686,-0.501709 1.390384,-0.836181 1.212169,-1.170655 1.153552,-1.770016 0.82397,-2.145995 0.494388,-2.521973 0.164808,-2.897954 -0.09034,-2.279043 -0.271,-2.091061 -0.451656,-1.903079 -0.632311,-1.715098 -0.603039,-1.166979 -0.695804,-1.000972 -0.788571,-0.834965 -0.881336,-0.668959 -0.947275,-0.521226 -1.005863,-0.37231 -1.06445,-0.223393 -1.123037,-0.07448"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3139"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 6.5179443,63.790752 -1.7675781,0 -1.7675781,0 -1.7675781,0 -1.76757816,0 -2.24121094,-3.095703 -2.2412109,-3.095703 -2.241211,-3.095703 -2.2412109,-3.095703 -0.4748594,0.01709 -0.4284687,0.01221 -0.382078,0.0073 -0.335688,0.0024 -0.1294,7e-6 -0.134279,3e-6 -0.139158,-3e-6 -0.144038,-7e-6 -0.14771,-0.0098 -0.150148,-0.0098 -0.152586,-0.0098 -0.155024,-0.0098 0,1.923828 0,1.923828 0,1.923828 0,1.923828 0.03418,1.131594 0.102536,0.894775 0.1709,0.657959 0.239263,0.421141 0.417475,0.375977 0.510252,0.268555 0.603029,0.161132 0.6958061,0.05371 0.2587891,0 0.258789,0 0.2587891,0 0.258789,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.8369143,0 -2.836914,0 -2.836914,0 -2.836914,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.249024,0 0.249023,0 0.249024,0 0.249023,0 0.780028,-0.06836 0.660399,-0.205078 0.540772,-0.341797 0.421145,-0.478516 0.179441,-0.406493 0.128172,-0.614013 0.07691,-0.821533 0.02564,-1.029055 0,-4.277344 0,-4.277343 0,-4.277344 0,-4.277344 -0.03418,-1.131578 -0.102541,-0.894771 -0.170898,-0.657963 -0.239255,-0.421156 -0.427248,-0.375963 -0.52002,-0.26855 -0.612792,-0.161137 -0.705565,-0.05373 -0.249023,0 -0.249024,0 -0.249023,0 -0.249024,0 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.41211,0 2.412109,0 2.41211,0 2.412109,0 1.9702069,0.03907 1.6918915,0.117197 1.4135765,0.195308 1.1352622,0.273422 0.9667866,0.368667 0.8886683,0.500493 0.8105502,0.632319 0.73243239,0.764146 0.61522256,0.860608 0.4394491,0.941167 0.26367577,1.021724 0.0879026,1.102283 -0.10010959,1.18043 -0.30029685,1.099856 -0.50048425,1.019284 -0.70067181,0.938711 -0.90088919,0.832527 -1.1206086,0.700686 -1.3403285,0.568845 -1.5600487,0.437004 1.3671875,1.899414 1.3671875,1.899415 1.3671875,1.899414 1.36718749,1.899414 0.90452872,1.198732 0.83861879,0.979004 0.772709,0.759277 0.7067997,0.539549 0.7250838,0.390626 0.8276318,0.3125 0.9301803,0.234375 1.0327291,0.156249 0,0.180664 0,0.180664 0,0.180664 0,0.180664 m -18.8085933,-13.613281 0.179438,0.0012 0.167235,0.0037 0.155031,0.0061 0.142827,0.0085 0.13061,8e-6 0.118406,3e-6 0.106203,-3e-6 0.094,-8e-6 1.7773366,-0.102531 1.5429659,-0.307614 1.3085959,-0.512698 1.0742262,-0.717782 0.845938,-0.876455 0.6042448,-0.988766 0.3625519,-1.101077 0.120859,-1.213389 -0.097666,-1.181629 -0.2929718,-1.064449 -0.488278,-0.947269 -0.6835845,-0.830091 -0.8349688,-0.68358 -0.9619164,-0.488276 -1.0888645,-0.292974 -1.2158128,-0.09767 -0.6164608,0.02321 -0.716554,0.06959 -0.816649,0.115962 -0.916742,0.16234 0,2.753906 0,2.753906 0,2.753907 0,2.753906"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3141"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 24.545288,36.700909 0,2.290039 0,2.290039 0,2.290039 0,2.290039 -0.180664,0 -0.180664,0 -0.180664,0 -0.180664,0 -0.211192,-1.25121 -0.281985,-1.116939 -0.35278,-0.98267 -0.423574,-0.8484 -0.498056,-0.740953 -0.595706,-0.660396 -0.693356,-0.579839 -0.791007,-0.499281 -0.847175,-0.401597 -0.861819,-0.28686 -0.876462,-0.172124 -0.891107,-0.05739 -0.971685,0.07814 -0.88379,0.23438 -0.795897,0.39062 -0.708003,0.546861 -0.581058,0.63722 -0.41504,0.681157 -0.249023,0.725093 -0.083,0.76903 0.05249,0.592052 0.157469,0.565189 0.262453,0.538327 0.367435,0.511463 0.814204,0.793467 1.231688,0.915531 1.649171,1.037594 2.066656,1.159658 1.707755,0.938728 1.41235,0.823977 1.116946,0.709226 0.821542,0.594475 0.6433,0.551764 0.562741,0.600588 0.482181,0.649412 0.401622,0.698236 0.324696,0.731206 0.23193,0.748293 0.139164,0.765379 0.0464,0.782466 -0.146496,1.452639 -0.439457,1.350098 -0.732418,1.247558 -1.025379,1.145017 -1.246347,0.948487 -1.414798,0.67749 -1.583249,0.406494 -1.7517,0.135498 -0.567633,-0.01099 -0.550539,-0.03296 -0.533445,-0.05493 -0.516352,-0.07691 -0.384527,-0.08057 -0.548097,-0.144042 -0.711668,-0.207519 -0.875239,-0.270995 -0.860599,-0.273437 -0.687257,-0.195312 -0.513915,-0.117188 -0.340573,-0.03906 -0.231936,0.01831 -0.20752,0.05493 -0.183105,0.09155 -0.158689,0.128173 -0.1281758,0.185547 -0.1110847,0.263672 -0.093993,0.341796 -0.076902,0.419922 -0.180664,0 -0.1806641,0 -0.180664,0 -0.1806641,0 0,-2.270508 0,-2.270507 0,-2.270508 0,-2.270508 0.1806641,0 0.180664,0 0.1806641,0 0.180664,0 0.2758768,1.336673 0.3198234,1.158449 0.36377,0.980223 0.407717,0.801999 0.485837,0.67383 0.598144,0.615234 0.71045,0.55664 0.822757,0.498046 0.909419,0.410157 0.950926,0.292969 0.992433,0.175781 1.033941,0.05859 1.155998,-0.08057 1.026609,-0.241699 0.897219,-0.402831 0.76783,-0.563966 0.62377,-0.673826 0.445553,-0.732421 0.267337,-0.791017 0.08912,-0.849611 -0.03419,-0.489499 -0.102542,-0.491942 -0.170895,-0.494385 -0.239249,-0.49683 -0.301522,-0.489498 -0.3772,-0.47241 -0.452878,-0.455324 -0.528556,-0.438237 -0.545662,-0.37475 -0.875247,-0.538328 -1.204831,-0.701906 -1.534416,-0.865485 -1.577153,-0.908195 -1.333009,-0.810544 -1.088865,-0.712894 -0.844723,-0.615242 -0.670169,-0.581046 -0.584717,-0.610348 -0.499267,-0.639652 -0.4138162,-0.668954 -0.3247085,-0.700673 -0.2319341,-0.73486 -0.1391596,-0.769046 -0.046385,-0.803233 0.1367201,-1.37572 0.4101553,-1.27563 0.6835925,-1.175542 0.9570318,-1.075452 1.16821,-0.905747 1.317137,-0.646967 1.466065,-0.388188 1.614995,-0.12941 1.07055,0.06471 1.102292,0.194097 1.134035,0.323481 1.165779,0.452866 0.506583,0.213637 0.426022,0.152593 0.345462,0.09155 0.264902,0.0305 0.24169,-0.0183 0.217282,-0.05493 0.192874,-0.09156 0.168466,-0.128189 0.157461,-0.194077 0.140378,-0.26977 0.123294,-0.345464 0.106211,-0.421157 0.180664,0 0.180664,0 0.180664,0 0.180664,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3143"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 51.615601,37.306377 0.07324,1.552734 0.07324,1.552735 0.07324,1.552734 0.07324,1.552735 -0.185547,0 -0.185546,0 -0.185547,0 -0.185547,0 -0.1172,-0.761707 -0.136723,-0.644527 -0.156246,-0.527348 -0.175769,-0.410168 -0.328381,-0.528551 -0.379642,-0.452877 -0.430904,-0.377201 -0.482166,-0.301527 -0.538341,-0.239244 -0.6189,-0.170894 -0.69946,-0.102544 -0.780018,-0.03419 -0.932617,0 -0.932617,0 -0.932618,0 -0.932617,0 0,5.058594 0,5.058594 0,5.058593 0,5.058594 0.03295,1.105958 0.09887,0.876466 0.164798,0.646972 0.230721,0.417479 0.421134,0.358887 0.521237,0.256348 0.62134,0.153808 0.721445,0.05127 0.229492,0 0.229493,0 0.229492,0 0.229492,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.807617,0 -2.807617,0 -2.807618,0 -2.807617,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.234375,0 0.234375,0 0.234375,0 0.234375,0 0.778804,-0.06348 0.656736,-0.190429 0.53467,-0.317383 0.412603,-0.444337 0.187982,-0.412596 0.134276,-0.612792 0.08057,-0.812989 0.02686,-1.013185 0,-5.058594 0,-5.058593 0,-5.058594 0,-5.058594 -0.795898,0 -0.795899,0 -0.795899,0 -0.795898,0 -0.860599,0.0171 -0.726319,0.05127 -0.59204,0.08544 -0.45776,0.119615 -0.489504,0.228285 -0.452882,0.313725 -0.416259,0.399165 -0.379637,0.484606 -0.324708,0.573743 -0.251465,0.666508 -0.178223,0.759274 -0.104979,0.852038 -0.185547,0 -0.185546,0 -0.185547,0 -0.185547,0 0.07813,-1.552734 0.07813,-1.552735 0.07813,-1.552734 0.07813,-1.552735 5.405273,0 5.405274,0 5.405273,0 5.405274,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3145"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 72.084351,38.029034 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.34375,0 2.34375,0 2.34375,0 2.34375,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.249023,0 -0.249024,0 -0.249023,0 -0.249024,0 -0.736099,0.0818 -0.645757,0.245366 -0.555415,0.408931 -0.465073,0.572495 -0.179457,0.402845 -0.128179,0.603032 -0.0769,0.803218 -0.02562,1.003405 0,2.685547 0,2.685547 0,2.685547 0,2.685547 -0.05006,1.881108 -0.150156,1.658936 -0.250239,1.436766 -0.350328,1.214596 -0.487074,1.05591 -0.679935,0.980225 -0.872799,0.90454 -1.065661,0.828856 -1.257335,0.683594 -1.467288,0.488281 -1.677243,0.292969 -1.887197,0.09766 -2.037359,-0.09399 -1.776125,-0.281983 -1.51489,-0.46997 -1.253657,-0.657959 -1.041261,-0.816653 -0.877687,-0.946043 -0.714111,-1.075438 -0.550535,-1.204835 -0.27344,-1.059567 -0.195313,-1.440428 -0.117186,-1.821289 -0.03906,-2.202153 0,-2.587891 0,-2.587891 0,-2.58789 0,-2.587891 -0.04273,-1.115709 -0.128175,-0.905757 -0.213622,-0.695805 -0.29907,-0.485854 -0.384523,-0.333238 -0.489503,-0.238032 -0.594482,-0.142827 -0.699461,-0.04762 -0.249023,0 -0.249024,0 -0.249023,0 -0.249024,0 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.861328,0 2.861329,0 2.861328,0 2.861328,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.253906,0 -0.253907,0 -0.253906,0 -0.253906,0 -0.761724,0.06471 -0.644533,0.194097 -0.527342,0.323481 -0.410151,0.452867 -0.213628,0.446791 -0.152589,0.637211 -0.09155,0.827632 -0.03052,1.018053 0,2.885742 0,2.885742 0,2.885743 0,2.885742 0.01709,0.799565 0.05127,0.855715 0.08545,0.911863 0.119633,0.968013 0.174556,0.941165 0.230711,0.8313 0.286867,0.721434 0.343022,0.61157 0.411371,0.532228 0.491942,0.483399 0.572511,0.43457 0.653082,0.385741 0.742181,0.316163 0.820309,0.22583 0.89844,0.135498 0.97657,0.04517 1.264639,-0.0708 1.196286,-0.212402 1.127933,-0.354004 1.05958,-0.495606 0.943595,-0.605461 0.780025,-0.683594 0.616457,-0.761722 0.452892,-0.839848 0.333239,-1.041256 0.238032,-1.346433 0.142831,-1.651613 0.04762,-1.956791 0,-2.680664 0,-2.680665 0,-2.680664 0,-2.680664 -0.03419,-1.124254 -0.102543,-0.892329 -0.170894,-0.660405 -0.239245,-0.42848 -0.427258,-0.375963 -0.520024,-0.26855 -0.612789,-0.161137 -0.705554,-0.05373 -0.249023,0 -0.249023,0 -0.249024,0 -0.249023,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3147"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 110.30701,37.306377 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.66042,0.151381 -0.57496,0.2002 -0.48949,0.249019 -0.40404,0.297837 -0.50294,0.542006 -0.47364,0.668949 -0.44433,0.795895 -0.41503,0.922838 -2.30957,5.634765 -2.30957,5.634766 -2.309568,5.634765 -2.30957,5.634766 -0.180664,0 -0.180664,0 -0.180664,0 -0.180664,0 -2.480469,-5.708008 -2.480469,-5.708008 -2.480468,-5.708007 -2.480469,-5.708008 -0.352786,-0.793444 -0.296632,-0.622554 -0.240477,-0.451665 -0.184324,-0.280775 -0.258791,-0.28563 -0.288087,-0.25146 -0.317382,-0.21729 -0.346678,-0.18312 -0.383301,-0.159897 -0.446778,-0.128169 -0.510253,-0.09644 -0.57373,-0.06471 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.705078,0 2.705078,0 2.705078,0 2.705078,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.837408,0.104995 -0.676271,0.139165 -0.515134,0.173335 -0.353999,0.207505 -0.239263,0.240492 -0.170899,0.272222 -0.102538,0.30395 -0.03418,0.335679 0.05615,0.556654 0.168455,0.693363 0.280763,0.830074 0.393071,0.966784 1.684571,3.881836 1.68457,3.881836 1.684571,3.881836 1.68457,3.881836 1.562501,-3.833008 1.562503,-3.833008 1.5625,-3.833007 1.5625,-3.833008 0.40159,-1.04613 0.28686,-0.872799 0.17213,-0.699466 0.0574,-0.526136 -0.0354,-0.279527 -0.10621,-0.272213 -0.17699,-0.264897 -0.24779,-0.257582 -0.33205,-0.244126 -0.42969,-0.205074 -0.52734,-0.16602 -0.62498,-0.126968 -0.0574,-0.01097 -0.0745,-0.01342 -0.0915,-0.01587 -0.10864,-0.01832 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.04102,0 2.04101,0 2.04102,0 2.04102,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3149"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 148.25623,37.306377 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.49319,0.02321 -0.44434,0.06958 -0.3955,0.115962 -0.34666,0.162339 -0.31862,0.225844 -0.31129,0.306402 -0.30395,0.386958 -0.29661,0.467515 -0.22341,0.460218 -0.27955,0.697026 -0.33568,0.933833 -0.39183,1.170642 -1.8457,5.336914 -1.8457,5.336914 -1.84571,5.336914 -1.8457,5.336914 -0.19531,0 -0.19531,0 -0.19532,0 -0.19531,0 -1.50879,-4.233399 -1.50879,-4.233398 -1.50879,-4.233399 -1.50879,-4.233398 -1.49902,4.233398 -1.49902,4.233399 -1.49903,4.233398 -1.49902,4.233399 -0.17578,0 -0.17579,0 -0.17578,0 -0.17578,0 -1.96777,-5.498047 -1.96777,-5.498047 -1.96778,-5.498046 -1.96777,-5.498047 -0.39917,-1.104723 -0.31861,-0.853267 -0.23803,-0.601811 -0.15747,-0.350356 -0.21362,-0.346665 -0.25025,-0.297847 -0.28686,-0.249028 -0.32349,-0.20021 -0.36255,-0.162339 -0.42359,-0.115962 -0.48462,-0.06958 -0.54565,-0.02321 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.45117,0 2.45117,0 2.45118,0 2.45117,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.11719,0 -0.11718,0 -0.11719,0 -0.11719,0 -0.48706,0.02931 -0.42603,0.08789 -0.36499,0.14648 -0.30395,0.205064 -0.23926,0.246596 -0.1709,0.271 -0.10254,0.295406 -0.0342,0.31981 0.0537,0.452894 0.16113,0.675053 0.26856,0.897212 0.37598,1.119372 1.30371,3.71582 1.30371,3.715821 1.30371,3.71582 1.30371,3.715821 1.09863,-3.15918 1.09863,-3.15918 1.09864,-3.159179 1.09863,-3.15918 -0.19531,-0.556641 -0.19532,-0.556641 -0.19531,-0.55664 -0.19531,-0.556641 -0.15625,-0.444336 -0.15625,-0.444336 -0.15625,-0.444335 -0.15625,-0.444336 -0.21119,-0.47362 -0.22339,-0.444332 -0.23559,-0.415043 -0.24779,-0.385755 -0.13429,-0.178209 -0.14893,-0.16357 -0.16357,-0.14893 -0.17821,-0.134291 -0.24415,-0.16356 -0.24415,-0.139156 -0.24414,-0.114751 -0.24413,-0.09035 -0.21241,-0.05125 -0.26611,-0.03662 -0.31982,-0.02198 -0.37353,-0.0073 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.57813,0 2.57812,0 2.57813,0 2.57812,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.17578,0 -0.17579,0 -0.17578,0 -0.17578,0 -0.51027,0.02931 -0.43701,0.08789 -0.36377,0.14648 -0.29051,0.205064 -0.22218,0.255141 -0.15869,0.296635 -0.0952,0.33813 -0.0317,0.379625 0.0549,0.590833 0.16479,0.776372 0.27466,0.961909 0.38453,1.147448 1.26953,3.598633 1.26953,3.598633 1.26954,3.598633 1.26953,3.598633 1.25977,-3.647461 1.25976,-3.647461 1.25976,-3.647461 1.25977,-3.647461 0.37596,-1.118151 0.26855,-0.932613 0.16114,-0.747075 0.0537,-0.561536 -0.0183,-0.220934 -0.0549,-0.213618 -0.0916,-0.206303 -0.12815,-0.198989 -0.14651,-0.18065 -0.16602,-0.151362 -0.18554,-0.122075 -0.20506,-0.09279 -0.39919,-0.119614 -0.45532,-0.08544 -0.51147,-0.05127 -0.56761,-0.0171 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.97754,0 1.97754,0 1.97754,0 1.97754,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3151"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 164.79919,49.122784 1.4209,2.119141 1.4209,2.11914 1.4209,2.119141 1.4209,2.11914 1.10472,1.596682 0.95093,1.274414 0.79712,0.952148 0.64332,0.629881 0.614,0.407715 0.68969,0.305176 0.76539,0.202637 0.84108,0.100097 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.8418,0 -2.84179,0 -2.8418,0 -2.8418,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.52978,-0.02197 0.45654,-0.04639 0.3833,-0.0708 0.31007,-0.09522 0.1953,-0.09888 0.17578,-0.120849 0.15625,-0.142823 0.13673,-0.164796 0.11962,-0.185546 0.0854,-0.185546 0.0513,-0.185547 0.0171,-0.185548 -0.011,-0.224608 -0.033,-0.224609 -0.0549,-0.22461 -0.0769,-0.224611 -0.11843,-0.231931 -0.21851,-0.363769 -0.31859,-0.495606 -0.41869,-0.627444 -1.12305,-1.699219 -1.12304,-1.699218 -1.12305,-1.699219 -1.12305,-1.699219 -1.38672,1.777344 -1.38671,1.777344 -1.38672,1.777343 -1.38672,1.777344 -0.39551,0.520022 -0.30762,0.427247 -0.21973,0.334472 -0.13183,0.241697 -0.0769,0.18799 -0.0549,0.192872 -0.033,0.197753 -0.011,0.202635 0.0329,0.299073 0.0989,0.272217 0.16479,0.245361 0.23072,0.218505 0.32348,0.183106 0.44312,0.13916 0.56274,0.09521 0.68238,0.05127 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.34863,0 -2.34863,0 -2.34864,0 -2.34863,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.48096,-0.06225 0.44677,-0.08911 0.4126,-0.115968 0.37842,-0.142823 0.59814,-0.275878 0.5835,-0.319824 0.56885,-0.36377 0.5542,-0.407716 0.5664,-0.487058 0.60547,-0.601806 0.64453,-0.716553 0.6836,-0.831301 1.5625,-1.972656 1.5625,-1.972656 1.5625,-1.972657 1.5625,-1.972656 -1.30371,-1.90918 -1.30371,-1.909179 -1.30372,-1.90918 -1.30371,-1.90918 -1.02417,-1.418444 -0.94361,-1.149898 -0.86303,-0.881352 -0.78247,-0.612806 -0.77027,-0.430894 -0.82641,-0.316157 -0.88257,-0.201421 -0.93872,-0.08668 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 3.06152,0 3.06153,0 3.06153,0 3.06152,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.72022,0.05373 -0.59815,0.102544 -0.47607,0.151362 -0.354,0.20018 -0.24781,0.230727 -0.17701,0.242924 -0.1062,0.255123 -0.0354,0.26732 0.0586,0.402845 0.17578,0.485845 0.29297,0.568843 0.41016,0.651842 1.01563,1.518555 1.01562,1.518555 1.01563,1.518554 1.01562,1.518555 1.17676,-1.489258 1.17676,-1.489258 1.17675,-1.489258 1.17676,-1.489258 0.36986,-0.485827 0.28931,-0.402827 0.20874,-0.319829 0.12819,-0.236829 0.0854,-0.19652 0.061,-0.19897 0.0366,-0.20142 0.0122,-0.203871 -0.0146,-0.198961 -0.0439,-0.186763 -0.0732,-0.174565 -0.10255,-0.162368 -0.15626,-0.189195 -0.17578,-0.157466 -0.19531,-0.125737 -0.21483,-0.09401 -0.28444,-0.07811 -0.40405,-0.05859 -0.52368,-0.03907 -0.6433,-0.01954 0,-0.180664 0,-0.180664 0,-0.180665 0,-0.180664 2.34863,0 2.34864,0 2.34863,0 2.34863,0 0,0.180664 0,0.180665 0,0.180664 0,0.180664 -0.53102,0.04396 -0.47974,0.07325 -0.42847,0.102534 -0.37718,0.131821 -0.51637,0.244155 -0.49439,0.283208 -0.47241,0.322261 -0.45042,0.361314 -0.48463,0.461438 -0.57496,0.622563 -0.66528,0.783687 -0.7556,0.944812 -1.31348,1.679688 -1.31347,1.679687 -1.31348,1.679688 -1.31348,1.679687"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3153"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 196.43982,37.306377 2.30957,0 2.30957,0 2.30957,0 2.30957,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.12695,0 -0.12695,0 -0.12696,0 -0.12695,0 -0.28322,0.02809 -0.3418,0.08423 -0.40039,0.140376 -0.45897,0.196519 -0.47731,0.249038 -0.45532,0.297856 -0.43335,0.346675 -0.41136,0.395494 -0.4236,0.485854 -0.46997,0.61768 -0.51636,0.749507 -0.56273,0.881334 -1.59668,2.514648 -1.59668,2.514649 -1.59668,2.514648 -1.59668,2.514649 0,1.660156 0,1.660156 0,1.660157 0,1.660156 0.0342,1.105958 0.10253,0.876466 0.1709,0.646972 0.23927,0.417479 0.42479,0.358887 0.53222,0.256348 0.63966,0.153808 0.74708,0.05127 0.21484,0 0.21484,0 0.21485,0 0.21484,0 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.8125,0 -2.8125,0 -2.8125,0 -2.8125,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.23437,0 0.23438,0 0.23437,0 0.23438,0 0.77881,-0.06348 0.65674,-0.190429 0.53467,-0.317383 0.4126,-0.444337 0.18798,-0.412596 0.13427,-0.612792 0.0806,-0.812989 0.0269,-1.013185 0,-1.567383 0,-1.567383 0,-1.567383 0,-1.567383 -1.81641,-2.773438 -1.8164,-2.773437 -1.81641,-2.773438 -1.8164,-2.773437 -0.59326,-0.884996 -0.49073,-0.7019 -0.38818,-0.518803 -0.28564,-0.335707 -0.28687,-0.256334 -0.41138,-0.280757 -0.53589,-0.30518 -0.66039,-0.329604 -0.21729,-0.08543 -0.26123,-0.06103 -0.30518,-0.03663 -0.34912,-0.01222 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.83203,0 2.83203,0 2.83204,0 2.83203,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.14648,0 -0.14649,0 -0.14649,0 -0.14648,0 -0.45044,0.02687 -0.43335,0.08057 -0.41626,0.134273 -0.39917,0.187974 -0.33326,0.241714 -0.23804,0.295414 -0.14282,0.349117 -0.0476,0.402818 0.0745,0.422376 0.22339,0.563969 0.37231,0.705562 0.52125,0.847155 1.38183,2.133789 1.38184,2.133789 1.38183,2.133789 1.38184,2.133789 1.29883,-2.041016 1.29883,-2.041015 1.29883,-2.041016 1.29883,-2.041015 0.51268,-0.859362 0.36621,-0.742183 0.21973,-0.625004 0.0733,-0.507826 -0.0183,-0.2661 -0.0549,-0.25146 -0.0915,-0.236821 -0.12815,-0.222182 -0.1526,-0.202622 -0.18433,-0.178218 -0.21606,-0.153813 -0.24779,-0.129409 -0.29664,-0.11107 -0.36255,-0.07934 -0.42847,-0.04761 -0.49437,-0.01588 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3155"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 229.29138,37.306377 -4.35059,6.220703 -4.35058,6.220703 -4.35059,6.220704 -4.35058,6.220703 2.71484,0 2.71484,0 2.71485,0 2.71484,0 1.17675,-0.06836 1.03027,-0.205077 0.88379,-0.341797 0.73732,-0.478517 0.65428,-0.687254 0.61523,-0.968016 0.57618,-1.24878 0.53712,-1.529544 0.16113,0.0293 0.16114,0.0293 0.16113,0.0293 0.16113,0.0293 -0.3125,1.752929 -0.3125,1.75293 -0.3125,1.752929 -0.3125,1.75293 -5.39063,0 -5.39062,0 -5.39063,0 -5.39062,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 4.24805,-6.044922 4.24804,-6.044922 4.24805,-6.044921 4.24805,-6.044922 -2.11914,0 -2.11914,0 -2.11914,0 -2.11914,0 -0.98267,0.02931 -0.83863,0.08789 -0.69458,0.14648 -0.55053,0.205064 -0.4419,0.251478 -0.38818,0.30518 -0.33447,0.358883 -0.28076,0.412584 -0.23926,0.524915 -0.2295,0.715336 -0.21972,0.905757 -0.20996,1.096179 -0.18555,0 -0.18555,0 -0.18554,0 -0.18555,0 0.13672,-1.655274 0.13672,-1.655273 0.13672,-1.655274 0.13672,-1.655273 4.89746,0 4.89746,0 4.89746,0 4.89746,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3157"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 242.61169,71.72044 -2.14844,0 -2.14844,0 -2.14843,0 -2.14844,0 0,-8.754883 0,-8.754883 0,-8.754882 0,-8.754883 2.14844,0 2.14843,0 2.14844,0 2.14844,0 0,0.385742 0,0.385742 0,0.385742 0,0.385742 -1.41602,0 -1.41601,0 -1.41602,0 -1.41601,0 0,7.988281 0,7.988281 0,7.988282 0,7.988281 1.41601,0 1.41602,0 1.41601,0 1.41602,0 0,0.380859 0,0.38086 0,0.380859 0,0.38086"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3159"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 245.79529,36.017315 2.39258,7.080078 2.39258,7.080078 2.39257,7.080078 2.39258,7.080078 -0.39062,0 -0.39063,0 -0.39062,0 -0.39063,0 -2.39258,-7.080078 -2.39257,-7.080078 -2.39258,-7.080078 -2.39258,-7.080078 0.39063,0 0.39062,0 0.39063,0 0.39062,0"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3161"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 256.73279,36.700909 2.14844,0 2.14844,0 2.14843,0 2.14844,0 0,8.759766 0,8.759765 0,8.759765 0,8.759766 -2.14844,0 -2.14843,0 -2.14844,0 -2.14844,0 0,-0.385742 0,-0.385743 0,-0.385742 0,-0.385742 1.41602,0 1.41601,0 1.41602,0 1.41601,0 0,-7.988281 0,-7.988282 0,-7.988281 0,-7.988281 -1.41601,0 -1.41602,0 -1.41601,0 -1.41602,0 0,-0.385742 0,-0.385742 0,-0.385742 0,-0.385742"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3163"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 278.43201,36.759502 2.0752,3.500977 2.07519,3.500976 2.07519,3.500977 2.0752,3.500977 -0.44922,0 -0.44922,0 -0.44922,0 -0.44922,0 -1.70898,-2.861328 -1.70899,-2.861329 -1.70898,-2.861328 -1.70898,-2.861328 -1.70899,2.861328 -1.70898,2.861328 -1.70899,2.861329 -1.70898,2.861328 -0.45898,0 -0.45899,0 -0.45899,0 -0.45898,0 2.10449,-3.500977 2.1045,-3.500977 2.10449,-3.500976 2.10449,-3.500977 0.14649,0 0.14648,0 0.14648,0 0.14649,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3165"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 307.80701,72.423565 -5.1709,0 -5.1709,0 -5.1709,0 -5.1709,0 0,-0.410156 0,-0.410157 0,-0.410156 0,-0.410156 5.1709,0 5.1709,0 5.1709,0 5.1709,0 0,0.410156 0,0.410156 0,0.410157 0,0.410156"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3167"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 309.76013,36.642315 1.08887,0 1.08887,0 1.08886,0 1.08887,0 0.51758,1.68457 0.51757,1.684571 0.51758,1.68457 0.51758,1.68457 -0.1709,0 -0.17089,0 -0.1709,0 -0.1709,0 -1.43555,-1.68457 -1.43554,-1.68457 -1.43555,-1.684571 -1.43555,-1.68457"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3169"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 332.20154,61.212627 -1.24879,0.952149 -0.99243,0.727539 -0.73608,0.50293 -0.47973,0.27832 -0.5359,0.213623 -0.55298,0.152588 -0.57006,0.09155 -0.58716,0.03052 -0.88745,-0.07935 -0.80688,-0.238037 -0.72632,-0.396728 -0.64575,-0.55542 -0.52124,-0.684814 -0.37232,-0.784911 -0.22339,-0.88501 -0.0745,-0.985109 0.0366,-0.632321 0.10986,-0.588378 0.18311,-0.544434 0.25635,-0.500492 0.47363,-0.654293 0.62012,-0.634764 0.7666,-0.615235 0.91309,-0.595708 1.15966,-0.61767 1.48681,-0.68115 1.81397,-0.744631 2.14112,-0.808111 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 -0.0537,-1.232902 -0.16113,-1.022946 -0.26856,-0.812991 -0.37597,-0.603036 -0.46875,-0.435782 -0.56641,-0.311276 -0.66406,-0.186771 -0.76171,-0.06226 -0.5835,0.04151 -0.52003,0.124515 -0.45654,0.207516 -0.39306,0.290518 -0.32471,0.344248 -0.23194,0.368655 -0.13915,0.393063 -0.0464,0.417472 0.01,0.283203 0.01,0.283203 0.01,0.283203 0.01,0.283203 -0.0293,0.423592 -0.0879,0.372316 -0.14649,0.321043 -0.20507,0.269768 -0.24293,0.21363 -0.27954,0.15259 -0.31616,0.09155 -0.35278,0.03051 -0.34546,-0.03173 -0.31372,-0.09521 -0.28199,-0.158693 -0.25024,-0.222175 -0.19653,-0.277092 -0.14038,-0.323484 -0.0842,-0.369876 -0.0281,-0.416267 0.10742,-0.822745 0.32227,-0.788571 0.53711,-0.754397 0.75195,-0.720224 0.94604,-0.615224 1.11939,-0.43945 1.29272,-0.263675 1.46607,-0.0879 1.13769,0.05006 1.03027,0.15015 0.92286,0.25024 0.81543,0.350332 0.53832,0.345469 0.46265,0.430911 0.38696,0.516354 0.31129,0.601797 0.1538,0.529793 0.10986,0.749515 0.0659,0.969235 0.022,1.188957 0,1.518555 0,1.518554 0,1.518555 0,1.518555 0.006,1.156008 0.0183,0.909425 0.0305,0.662841 0.0428,0.416257 0.0562,0.260011 0.0708,0.213624 0.0855,0.167236 0.1001,0.120848 0.12084,0.08545 0.12817,0.06104 0.1355,0.03662 0.14283,0.0122 0.15136,-0.0085 0.1416,-0.02563 0.13184,-0.04272 0.12208,-0.05982 0.25268,-0.184325 0.34789,-0.299072 0.44312,-0.413819 0.53834,-0.528566 0,0.273437 0,0.273438 0,0.273437 0,0.273438 -1.08155,1.281739 -1.05713,0.915527 -1.03272,0.549317 -1.00829,0.183105 -0.45411,-0.0415 -0.40527,-0.124512 -0.35644,-0.207519 -0.30761,-0.290528 -0.24903,-0.390624 -0.18067,-0.507812 -0.1123,-0.625001 -0.0439,-0.742188 m 0,-1.269531 0,-1.704102 0,-1.704101 0,-1.704102 0,-1.704101 -1.344,0.543218 -1.08277,0.457766 -0.82153,0.372312 -0.5603,0.28686 -0.71655,0.434575 -0.60669,0.444337 -0.49683,0.4541 -0.38696,0.463863 -0.29053,0.479738 -0.20752,0.50171 -0.12451,0.523682 -0.0415,0.545651 0.0525,0.673831 0.15747,0.615235 0.26245,0.55664 0.36743,0.498044 0.43579,0.401613 0.46753,0.286865 0.49927,0.172119 0.53101,0.05737 0.80077,-0.122071 0.91797,-0.36621 1.03516,-0.610351 1.15235,-0.854493"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3171"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 344.70154,48.986065 1.32446,-1.580801 1.37573,-1.129147 1.427,-0.677493 1.47828,-0.22584 1.333,0.147715 1.24511,0.443119 1.15723,0.738522 1.06934,1.033925 0.89721,1.280525 0.64087,1.497805 0.38452,1.715085 0.12819,1.932366 -0.19777,2.266849 -0.59326,2.034913 -0.98877,1.802977 -1.38427,1.571042 -1.39649,1.09375 -1.47461,0.78125 -1.55273,0.46875 -1.63085,0.15625 -0.78492,-0.0354 -0.79224,-0.106201 -0.79956,-0.177002 -0.80688,-0.247803 -0.80566,-0.318603 -0.81543,-0.389404 -0.8252,-0.460205 -0.83496,-0.531007 0,-4.633789 0,-4.633789 0,-4.633789 0,-4.633789 -0.01,-1.37694 -0.0293,-1.08398 -0.0488,-0.79102 -0.0684,-0.49806 -0.0794,-0.323472 -0.10132,-0.267329 -0.12328,-0.211187 -0.14525,-0.155043 -0.16601,-0.11107 -0.18555,-0.07934 -0.20508,-0.04761 -0.22461,-0.01588 -0.29053,0.01954 -0.3247,0.0586 -0.35889,0.09765 -0.39306,0.136705 -0.0684,-0.170899 -0.0684,-0.170898 -0.0684,-0.170899 -0.0684,-0.170898 1.34277,-0.546875 1.34278,-0.546875 1.34277,-0.546875 1.34277,-0.546875 0.21973,0 0.21973,0 0.21972,0 0.21973,0 0,3.242187 0,3.242188 0,3.242187 0,3.242188 m 0,1.25 0,2.675781 0,2.675781 0,2.675782 0,2.675781 0.5017,0.458986 0.50903,0.40039 0.51636,0.341797 0.52369,0.283202 0.53955,0.213624 0.54443,0.152588 0.54931,0.09155 0.55421,0.03052 0.87279,-0.122071 0.84106,-0.36621 0.80933,-0.610351 0.7776,-0.854493 0.67504,-1.087644 0.48217,-1.309813 0.28931,-1.531983 0.0965,-1.754154 -0.0965,-1.618646 -0.28931,-1.418454 -0.48217,-1.218264 -0.67504,-1.018073 -0.78858,-0.811759 -0.84229,-0.579831 -0.89599,-0.347903 -0.9497,-0.115976 -0.51759,0.03297 -0.51758,0.09888 -0.51757,0.164792 -0.51757,0.230704 -0.41749,0.244149 -0.47119,0.341799 -0.5249,0.439451 -0.57861,0.537101"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3173"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 374.99451,56.993877 -0.44801,1.666262 -0.62134,1.463624 -0.79467,1.260985 -0.96801,1.058348 -1.08277,0.828857 -1.13892,0.592041 -1.19507,0.355225 -1.25121,0.118408 -1.47461,-0.159912 -1.37696,-0.479736 -1.27929,-0.79956 -1.18164,-1.119385 -0.99121,-1.391602 -0.70801,-1.61621 -0.42481,-1.840819 -0.1416,-2.065432 0.15625,-2.010491 0.46875,-1.812741 0.78125,-1.614993 1.09375,-1.417244 1.32202,-1.153554 1.44653,-0.823971 1.57105,-0.494388 1.69556,-0.164805 1.25976,0.0879 1.14257,0.263675 1.0254,0.43945 0.90821,0.615224 0.7434,0.700692 0.531,0.715335 0.3186,0.729978 0.10621,0.74462 -0.0305,0.354011 -0.0916,0.319827 -0.15258,0.285642 -0.21362,0.251457 -0.25879,0.19654 -0.30762,0.140383 -0.35645,0.08423 -0.40526,0.02807 -0.54078,-0.04638 -0.46997,-0.139158 -0.39917,-0.231936 -0.32836,-0.324714 -0.1526,-0.251457 -0.12573,-0.344236 -0.0989,-0.437014 -0.072,-0.529793 -0.0855,-0.541983 -0.15869,-0.47363 -0.23194,-0.405276 -0.30517,-0.336923 -0.37476,-0.256338 -0.44068,-0.183102 -0.50659,-0.109867 -0.5725,-0.03663 -0.92896,0.09034 -0.83374,0.270999 -0.73853,0.451657 -0.6433,0.632315 -0.69215,1.033943 -0.49438,1.187747 -0.29663,1.34155 -0.0989,1.495354 0.0977,1.55518 0.29296,1.462404 0.48828,1.369627 0.6836,1.276851 0.85937,1.068117 0.99609,0.76294 1.13282,0.457763 1.26954,0.152586 0.93261,-0.08179 0.88379,-0.24536 0.83496,-0.408935 0.78614,-0.57251 0.53344,-0.540769 0.52612,-0.723876 0.5188,-0.906983 0.51148,-1.090091 0.1416,0.06836 0.14161,0.06836 0.1416,0.06836 0.1416,0.06836"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3175"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 390.17029,61.779034 -0.65064,0.635987 -0.64332,0.540771 -0.63598,0.445557 -0.62866,0.350341 -0.63721,0.256348 -0.66162,0.183105 -0.68604,0.109863 -0.71044,0.03662 -1.41846,-0.152588 -1.32569,-0.457763 -1.2329,-0.762939 -1.14014,-1.068116 -0.95703,-1.317136 -0.68359,-1.490478 -0.41016,-1.663819 -0.13672,-1.837161 0.15137,-1.882318 0.4541,-1.799314 0.75684,-1.71631 1.05957,-1.633308 1.29761,-1.401357 1.47094,-1.000973 1.64429,-0.600589 1.81763,-0.200206 1.13036,0.09401 1.02783,0.281985 0.9253,0.469968 0.82276,0.657949 0,-0.825196 0,-0.825195 0,-0.825196 0,-0.825195 -0.01,-1.385485 -0.0293,-1.090083 -0.0488,-0.794682 -0.0683,-0.499281 -0.0794,-0.323472 -0.10132,-0.267329 -0.12328,-0.211187 -0.14525,-0.155043 -0.16602,-0.11107 -0.18555,-0.07934 -0.20508,-0.04761 -0.2246,-0.01588 -0.27466,0.01954 -0.31617,0.0586 -0.35766,0.09765 -0.39917,0.136705 -0.0635,-0.170899 -0.0635,-0.170898 -0.0635,-0.170899 -0.0635,-0.170898 1.33301,-0.546875 1.333,-0.546875 1.33301,-0.546875 1.33301,-0.546875 0.21973,0 0.21972,0 0.21973,0 0.21972,0 0,5.170898 0,5.170899 0,5.170898 0,5.170899 0.009,1.41968 0.0256,1.114503 0.0427,0.809325 0.0598,0.504148 0.0879,0.316164 0.10742,0.264893 0.12696,0.213622 0.14649,0.162352 0.17211,0.11963 0.18433,0.08545 0.19653,0.05127 0.20875,0.01709 0.28564,-0.02075 0.32958,-0.06226 0.37354,-0.103761 0.41749,-0.145265 0.0537,0.170898 0.0537,0.170899 0.0537,0.170898 0.0537,0.170899 -1.32813,0.551758 -1.32812,0.551757 -1.32813,0.551758 -1.32812,0.551758 -0.22461,0 -0.22461,0 -0.22461,0 -0.22461,0 0,-0.639648 0,-0.639649 0,-0.639648 0,-0.639648 m 0,-1.367188 0,-2.304688 0,-2.304687 0,-2.304688 0,-2.304687 -0.0879,-0.649406 -0.14649,-0.620115 -0.20509,-0.590823 -0.26367,-0.561531 -0.31739,-0.512686 -0.36621,-0.444333 -0.41504,-0.37598 -0.46386,-0.307626 -0.47608,-0.247793 -0.47119,-0.176999 -0.46631,-0.106204 -0.46142,-0.03541 -0.83618,0.09644 -0.7898,0.28931 -0.7434,0.482175 -0.69702,0.675039 -0.77759,1.13282 -0.55542,1.36719 -0.33326,1.601559 -0.11108,1.835931 0.10742,1.857914 0.32226,1.628418 0.53711,1.398925 0.75196,1.16943 0.88379,0.914308 0.93261,0.653077 0.98145,0.391845 1.03028,0.130614 0.88134,-0.111084 0.86669,-0.333252 0.85206,-0.555419 0.83741,-0.777589"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3177"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 400.54138,52.638409 0.11353,1.88477 0.36011,1.669923 0.60669,1.455076 0.85327,1.240231 1.01929,0.991207 1.10473,0.708009 1.19018,0.424807 1.27564,0.141602 0.8496,-0.05982 0.79102,-0.179442 0.73242,-0.299073 0.67383,-0.418702 0.62744,-0.573728 0.57372,-0.744627 0.52003,-0.915529 0.46631,-1.086428 0.15137,0.09766 0.15136,0.09766 0.15137,0.09766 0.15137,0.09766 -0.30274,1.308596 -0.49805,1.250001 -0.69336,1.191405 -0.88866,1.13281 -1.04859,0.957032 -1.1731,0.683593 -1.29761,0.410156 -1.42211,0.136719 -1.55396,-0.15625 -1.43921,-0.46875 -1.32446,-0.78125 -1.20971,-1.09375 -0.99976,-1.367185 -0.71411,-1.58203 -0.42847,-1.796875 -0.14282,-2.011722 0.14648,-2.167962 0.43946,-1.91406 0.73242,-1.660158 1.02539,-1.406258 1.2561,-1.127919 1.40503,-0.805661 1.55396,-0.483402 1.70288,-0.161143 1.43676,0.124522 1.30249,0.373539 1.16822,0.622555 1.03394,0.871572 0.84594,1.070565 0.60425,1.239016 0.36255,1.407468 0.12085,1.57592 -3.09082,0 -3.09082,0 -3.09082,0 -3.09082,0 m 0,-1.132813 2.07031,0 2.07032,0 2.07031,0 2.07031,0 -0.0623,-0.795891 -0.0891,-0.668943 -0.11596,-0.541994 -0.14282,-0.415047 -0.27467,-0.517569 -0.3357,-0.458982 -0.39672,-0.400393 -0.45776,-0.341806 -0.48462,-0.273428 -0.49683,-0.195309 -0.50903,-0.117191 -0.52124,-0.03907 -0.7898,0.07935 -0.74828,0.23804 -0.70679,0.396726 -0.66528,0.55541 -0.56885,0.687264 -0.43701,0.811771 -0.30518,0.936276 -0.17334,1.060783"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3179"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 422.26013,47.306377 0,2.939453 0,2.939453 0,2.939454 0,2.939453 0.0342,1.135256 0.10254,0.905761 0.1709,0.676269 0.23926,0.446776 0.39184,0.375977 0.45288,0.268555 0.51391,0.161132 0.57496,0.05371 0.40527,0 0.40527,0 0.40528,0 0.40527,0 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.6709,0 -2.6709,0 -2.67089,0 -2.6709,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.20019,0 0.2002,0 0.20019,0 0.2002,0 0.38208,-0.02441 0.36499,-0.07324 0.3479,-0.122071 0.33081,-0.170899 0.29663,-0.212402 0.24536,-0.246582 0.19409,-0.280761 0.14283,-0.314942 0.11108,-0.410155 0.0793,-0.566405 0.0476,-0.722657 0.0159,-0.878908 0,-2.939453 0,-2.939454 0,-2.939453 0,-2.939453 -0.86914,0 -0.86915,0 -0.86914,0 -0.86914,0 0,-0.351563 0,-0.351562 0,-0.351563 0,-0.351562 0.86914,0 0.86914,0 0.86915,0 0.86914,0 0,-0.292969 0,-0.292969 0,-0.292968 0,-0.292969 0.0537,-1.286609 0.16113,-1.184078 0.26855,-1.081546 0.37598,-0.979017 0.48583,-0.882556 0.59815,-0.792231 0.71045,-0.701908 0.82276,-0.611586 0.91552,-0.504135 0.96923,-0.360102 1.02296,-0.21607 1.07666,-0.07204 1.00463,0.08302 0.96314,0.249028 0.92163,0.415034 0.88013,0.581039 0.4956,0.452896 0.354,0.479741 0.21241,0.506587 0.0708,0.533433 -0.0317,0.28932 -0.0952,0.281987 -0.15869,0.274653 -0.22216,0.267321 -0.25879,0.222181 -0.26856,0.158695 -0.27832,0.09521 -0.28808,0.03172 -0.22828,-0.01952 -0.23559,-0.05859 -0.24292,-0.09766 -0.25024,-0.136732 -0.25879,-0.211168 -0.28809,-0.301509 -0.31738,-0.39185 -0.34667,-0.482191 -0.35402,-0.49315 -0.33936,-0.405269 -0.3247,-0.317387 -0.31005,-0.229507 -0.31129,-0.162338 -0.32837,-0.115962 -0.34546,-0.06959 -0.36254,-0.02321 -0.43213,0.03053 -0.39795,0.09156 -0.36377,0.152584 -0.32958,0.213608 -0.29053,0.268569 -0.24659,0.336918 -0.20264,0.405269 -0.15868,0.473619 -0.11963,0.697034 -0.0855,1.094975 -0.0513,1.492916 -0.0171,1.890856 0,0.322265 0,0.322266 0,0.322265 0,0.322266 1.15234,0 1.15235,0 1.15234,0 1.15235,0 0,0.351562 0,0.351563 0,0.351562 0,0.351563 -1.15235,0 -1.15234,0 -1.15235,0 -1.15234,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3181"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 433.33435,57.267315 -0.77271,-0.439449 -0.67749,-0.517577 -0.58227,-0.595704 -0.48706,-0.673833 -0.38452,-0.740961 -0.27466,-0.777586 -0.1648,-0.81421 -0.0549,-0.850836 0.12451,-1.281731 0.37354,-1.188962 0.62256,-1.096194 0.87158,-1.003426 1.07544,-0.837392 1.21459,-0.598141 1.35377,-0.35889 1.49292,-0.119639 1.23657,0.07813 1.15112,0.234378 1.06567,0.390622 0.98023,0.546865 0.94727,0 0.94726,0 0.94727,0 0.94727,0 0.37596,0.0037 0.28808,0.01099 0.2002,0.01831 0.11232,0.02562 0.0634,0.02442 0.0537,0.03418 0.044,0.04394 0.0342,0.0537 0.0513,0.10499 0.0366,0.139164 0.022,0.173336 0.007,0.20751 -0.006,0.234384 -0.0183,0.195316 -0.0305,0.156247 -0.0427,0.117178 -0.0354,0.0464 -0.0476,0.04151 -0.0598,0.03662 -0.072,0.03173 -0.11233,0.02564 -0.2002,0.01831 -0.28807,0.01098 -0.37596,0.0037 -0.58105,0 -0.58106,0 -0.58106,0 -0.58105,0 0.47851,0.751961 0.34179,0.849612 0.20508,0.947263 0.0684,1.044914 -0.11964,1.20484 -0.35889,1.114503 -0.59814,1.024168 -0.8374,0.933833 -1.03882,0.777592 -1.2024,0.555421 -1.36596,0.33325 -1.52953,0.111081 -0.66773,-0.02441 -0.67506,-0.07324 -0.68237,-0.12207 -0.68969,-0.1709 -0.39551,0.36011 -0.32715,0.338136 -0.25879,0.316161 -0.19042,0.294186 -0.12818,0.263675 -0.0915,0.244141 -0.0549,0.224609 -0.0183,0.205075 0.0195,0.164797 0.0586,0.162355 0.0977,0.159911 0.13672,0.157469 0.20385,0.145265 0.27954,0.123291 0.35523,0.101318 0.43091,0.07934 0.37597,0.03784 0.58105,0.0354 0.78614,0.03296 0.99121,0.03052 1.83471,0.05371 1.48071,0.06348 1.12671,0.07324 0.77272,0.08301 0.86181,0.179444 0.76904,0.284425 0.67627,0.389403 0.5835,0.494384 0.47851,0.578613 0.34179,0.64209 0.20508,0.705566 0.0684,0.769043 -0.12941,1.086424 -0.38818,1.052245 -0.64697,1.018067 -0.90575,0.983889 -1.63941,1.247554 -1.87134,0.891112 -2.10327,0.534669 -2.3352,0.178228 -1.81153,-0.106199 -1.66504,-0.318606 -1.51855,-0.531008 -1.37207,-0.743406 -0.64087,-0.493167 -0.45776,-0.502931 -0.27466,-0.512694 -0.0915,-0.522458 0.0134,-0.234377 0.0403,-0.234376 0.0671,-0.234374 0.094,-0.234373 0.20996,-0.39673 0.29786,-0.46753 0.38574,-0.538329 0.47363,-0.60913 0.17576,-0.197755 0.39063,-0.41748 0.60548,-0.637207 0.82032,-0.856933 -0.4712,-0.294189 -0.39795,-0.277099 -0.3247,-0.26001 -0.25146,-0.24292 -0.17944,-0.251464 -0.12818,-0.266113 -0.0769,-0.280762 -0.0256,-0.295411 0.0342,-0.356444 0.10254,-0.385741 0.1709,-0.41504 0.23926,-0.444338 0.37353,-0.506589 0.5542,-0.601805 0.73486,-0.697023 0.91553,-0.792239 m 3.39844,-10.957031 -0.69336,0.07203 -0.63477,0.216067 -0.57617,0.360104 -0.51758,0.504141 -0.42725,0.653085 -0.30517,0.806887 -0.18311,0.960691 -0.061,1.114494 0.083,1.456304 0.24902,1.282961 0.41505,1.109617 0.58106,0.936274 0.54199,0.563969 0.61035,0.402833 0.67871,0.241698 0.74707,0.08056 0.70922,-0.06958 0.64331,-0.208739 0.57739,-0.347901 0.51149,-0.487065 0.41869,-0.635981 0.29907,-0.794676 0.17944,-0.953371 0.0598,-1.112066 -0.0842,-1.468498 -0.25269,-1.300046 -0.42114,-1.131594 -0.58959,-0.963143 -0.53345,-0.563955 -0.60425,-0.402829 -0.67505,-0.241702 -0.74584,-0.08058 m -3.59375,17.480468 -0.43091,0.489502 -0.37476,0.472411 -0.3186,0.455323 -0.26245,0.438233 -0.20508,0.421141 -0.14648,0.404052 -0.0879,0.386964 -0.0293,0.369874 0.0708,0.454099 0.2124,0.424804 0.354,0.395509 0.49561,0.366213 1.0852,0.529782 1.30249,0.378417 1.51978,0.227052 1.73706,0.07569 1.64184,-0.07812 1.40991,-0.234377 1.17798,-0.390627 0.94605,-0.546873 0.73486,-0.626223 0.5249,-0.648194 0.31494,-0.670165 0.10499,-0.692137 -0.0623,-0.471192 -0.18677,-0.397949 -0.31127,-0.324707 -0.43578,-0.251464 -0.63233,-0.192871 -0.88136,-0.148927 -1.13037,-0.10498 -1.37938,-0.06104 -2.07032,-0.07202 -1.81641,-0.09888 -1.56249,-0.125731 -1.30859,-0.152587"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3183"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 453.8031,36.017315 0,3.271484 0,3.271485 0,3.271484 0,3.271484 1.02783,-1.083975 0.91553,-0.869137 0.80322,-0.6543 0.69092,-0.439463 0.63476,-0.299062 0.63476,-0.213619 0.63477,-0.128177 0.63477,-0.04274 0.73486,0.0525 0.68115,0.157474 0.62744,0.262448 0.57374,0.367421 0.51147,0.479746 0.44067,0.599368 0.36987,0.718991 0.29908,0.838614 0.16234,0.754403 0.11597,1.013186 0.0696,1.27197 0.0232,1.530754 0,1.582031 0,1.582032 0,1.582031 0,1.582031 0.0171,0.782472 0.0513,0.648194 0.0855,0.513915 0.11965,0.379637 0.11474,0.222169 0.14892,0.197754 0.1831,0.17334 0.2173,0.148925 0.28319,0.119629 0.38086,0.08545 0.47852,0.05127 0.57618,0.01709 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.19727,0 -2.19726,0 -2.19727,0 -2.19726,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.10254,0 0.10254,0 0.10253,0 0.10254,0 0.57739,-0.02319 0.48217,-0.06958 0.38697,-0.115966 0.29175,-0.162354 0.22582,-0.217285 0.18921,-0.26123 0.15259,-0.305176 0.11598,-0.349122 0.0256,-0.231932 0.0183,-0.3833 0.011,-0.534668 0.004,-0.686037 0,-1.582031 0,-1.582031 0,-1.582032 0,-1.582031 -0.0195,-1.339104 -0.0586,-1.087645 -0.0977,-0.836184 -0.13671,-0.584724 -0.16969,-0.429679 -0.21607,-0.371091 -0.26244,-0.312502 -0.30883,-0.253915 -0.34913,-0.205069 -0.3833,-0.146481 -0.41748,-0.08789 -0.45165,-0.02931 -0.4834,0.03175 -0.49317,0.09522 -0.50293,0.158688 -0.51269,0.222159 -0.54322,0.318612 -0.59448,0.448001 -0.64575,0.57739 -0.69702,0.706779 0,2.363281 0,2.363282 0,2.363281 0,2.363281 0.0122,0.8313 0.0366,0.657959 0.061,0.484619 0.0855,0.311278 0.12817,0.216065 0.16968,0.198975 0.21118,0.181885 0.25269,0.164794 0.33325,0.128174 0.43335,0.09155 0.53345,0.05493 0.63355,0.01831 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.2168,0 -2.2168,0 -2.21679,0 -2.2168,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.56396,-0.02319 0.50049,-0.06958 0.43701,-0.115966 0.37354,-0.162354 0.18554,-0.119628 0.16602,-0.163574 0.14649,-0.20752 0.12695,-0.251466 0.10253,-0.344237 0.0732,-0.485839 0.0439,-0.627442 0.0147,-0.769044 0,-4.047852 0,-4.047852 0,-4.047851 0,-4.047852 -0.01,-1.385485 -0.0293,-1.090083 -0.0488,-0.794682 -0.0684,-0.499281 -0.0793,-0.323472 -0.10132,-0.267329 -0.1233,-0.211187 -0.14527,-0.155043 -0.15991,-0.11107 -0.18677,-0.07934 -0.21362,-0.04761 -0.24048,-0.01588 -0.23682,0.01954 -0.30029,0.0586 -0.36376,0.09765 -0.42725,0.136705 -0.0684,-0.170899 -0.0684,-0.170898 -0.0684,-0.170899 -0.0684,-0.170898 1.33789,-0.546875 1.33789,-0.546875 1.33789,-0.546875 1.33789,-0.546875 0.22461,0 0.22461,0 0.22461,0 0.22461,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3185"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 473.09998,36.017315 0.39428,0.03664 0.36254,0.109868 0.33081,0.1831 0.29908,0.256332 0.25634,0.299087 0.18311,0.330816 0.10986,0.362544 0.0366,0.394272 -0.0366,0.395522 -0.10986,0.366216 -0.18311,0.336909 -0.25634,0.307603 -0.29908,0.256361 -0.33081,0.18311 -0.36254,0.109859 -0.39428,0.03661 -0.39551,-0.03661 -0.36621,-0.109859 -0.33692,-0.18311 -0.30761,-0.256361 -0.25635,-0.307603 -0.18311,-0.336909 -0.10986,-0.366216 -0.0366,-0.395522 0.0354,-0.394272 0.1062,-0.362544 0.177,-0.330816 0.2478,-0.299087 0.30884,-0.256332 0.34057,-0.1831 0.37232,-0.109868 0.40406,-0.03664 m 1.62109,9.355469 0,3.59375 0,3.59375 0,3.59375 0,3.59375 0.0146,0.770265 0.0439,0.631103 0.0732,0.491943 0.10255,0.352782 0.14038,0.256349 0.16724,0.222168 0.19409,0.187988 0.22095,0.153808 0.29296,0.119629 0.39063,0.08545 0.48828,0.05127 0.58594,0.01709 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.17285,0 -2.17285,0 -2.17285,0 -2.17285,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.60058,-0.01587 0.49317,-0.04761 0.38574,-0.07935 0.27832,-0.111086 0.2124,-0.147704 0.18799,-0.189209 0.16357,-0.230713 0.13916,-0.272218 0.11963,-0.360106 0.0855,-0.494384 0.0513,-0.628662 0.0171,-0.762941 0,-1.723633 0,-1.723633 0,-1.723633 0,-1.723633 -0.011,-1.326897 -0.033,-1.070553 -0.0549,-0.814212 -0.0769,-0.557869 -0.0781,-0.288077 -0.0977,-0.239255 -0.1172,-0.190432 -0.13672,-0.141611 -0.15991,-0.111075 -0.18677,-0.07934 -0.21362,-0.04761 -0.24048,-0.01588 -0.28808,0.01832 -0.31739,0.05493 -0.34668,0.09155 -0.37597,0.128166 -0.0684,-0.175781 -0.0684,-0.175781 -0.0684,-0.175782 -0.0684,-0.175781 1.34766,-0.546875 1.34765,-0.546875 1.34766,-0.546875 1.34765,-0.546875 0.21485,0 0.21484,0 0.21485,0 0.21484,0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3187"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 484.17419,35.997784 0.40405,0.03664 0.37231,0.109869 0.34058,0.1831 0.30885,0.256332 0.25634,0.308853 0.1831,0.340581 0.10987,0.372309 0.0366,0.404038 -0.0366,0.395522 -0.10987,0.366216 -0.1831,0.336909 -0.25634,0.307603 -0.30885,0.256361 -0.34058,0.18311 -0.37231,0.109859 -0.40405,0.03661 -0.39551,-0.03661 -0.36621,-0.109859 -0.33692,-0.18311 -0.30761,-0.256361 -0.25635,-0.307603 -0.1831,-0.336909 -0.10986,-0.366216 -0.0366,-0.395522 0.0366,-0.404038 0.10986,-0.372309 0.1831,-0.340581 0.25635,-0.308853 0.30761,-0.256332 0.33692,-0.1831 0.36621,-0.109869 0.39551,-0.03664 m 1.67969,9.375 0,4.501953 0,4.501953 0,4.501953 0,4.501953 -0.12207,2.147215 -0.36622,1.851805 -0.61035,1.556397 -0.85448,1.260989 -1.0498,0.974123 -1.19629,0.695799 -1.34278,0.417478 -1.48926,0.139163 -0.8313,-0.04029 -0.71655,-0.120851 -0.60181,-0.201414 -0.48706,-0.281978 -0.37597,-0.324711 -0.26856,-0.329591 -0.16113,-0.334472 -0.0537,-0.339351 0.0305,-0.329594 0.0915,-0.305176 0.15259,-0.280761 0.21362,-0.256344 0.24536,-0.213626 0.26733,-0.152589 0.28931,-0.09155 0.31128,-0.03052 0.25513,0.01587 0.25757,0.04761 0.26001,0.07935 0.26245,0.111087 0.20386,0.112301 0.27954,0.200195 0.35522,0.288087 0.43091,0.375979 0.45898,0.375973 0.41992,0.268553 0.38086,0.161134 0.3418,0.05371 0.23315,-0.0232 0.23072,-0.06958 0.22827,-0.115965 0.22583,-0.16235 0.20996,-0.207523 0.18066,-0.270997 0.15137,-0.334472 0.12207,-0.397945 0.094,-0.544436 0.0671,-0.793458 0.0403,-1.042479 0.0134,-1.291502 0,-3.183594 0,-3.183594 0,-3.183593 0,-3.183594 -0.011,-1.342766 -0.033,-1.079099 -0.0549,-0.815432 -0.0769,-0.551766 -0.0781,-0.296622 -0.0977,-0.245358 -0.11717,-0.194095 -0.13671,-0.142831 -0.15992,-0.111075 -0.18677,-0.07934 -0.21362,-0.04761 -0.24047,-0.01588 -0.28809,0.01832 -0.31739,0.05493 -0.34667,0.09155 -0.37598,0.128166 -0.0684,-0.175781 -0.0684,-0.175782 -0.0684,-0.175781 -0.0684,-0.175781 1.34766,-0.546875 1.34765,-0.546875 1.34766,-0.546875 1.34766,-0.546875 0.20996,0 0.20996,0 0.20996,0 0.20996,0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3189"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 496.18591,36.017315 0,4.448242 0,4.448243 0,4.448242 0,4.448242 1.13769,-1.035156 1.1377,-1.035156 1.1377,-1.035157 1.13769,-1.035156 0.64697,-0.603019 0.4956,-0.480954 0.34424,-0.35889 0.19288,-0.236825 0.0684,-0.117178 0.0488,-0.117185 0.0293,-0.11719 0.01,-0.117197 -0.0208,-0.187979 -0.0623,-0.173336 -0.10375,-0.158695 -0.14526,-0.144052 -0.18311,-0.130606 -0.23682,-0.09887 -0.29053,-0.06714 -0.34423,-0.03541 0,-0.15625 0,-0.15625 0,-0.15625 0,-0.15625 1.94336,0 1.94336,0 1.94336,0 1.94336,0 0,0.15625 0,0.15625 0,0.15625 0,0.15625 -0.76783,0.04518 -0.70191,0.09644 -0.63598,0.147702 -0.57006,0.198965 -0.54078,0.268564 -0.56763,0.356448 -0.59448,0.444333 -0.62133,0.532217 -1.14746,1.05957 -1.14746,1.059571 -1.14746,1.05957 -1.14746,1.05957 1.14746,1.450196 1.14746,1.450195 1.14746,1.450196 1.14746,1.450195 0.8789,1.09131 0.72265,0.871583 0.56641,0.651855 0.41017,0.432127 0.45409,0.418702 0.4248,0.338134 0.39551,0.257568 0.36622,0.177002 0.2893,0.08545 0.37963,0.06104 0.46998,0.03662 0.56031,0.01221 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.17285,0 -2.17285,0 -2.17286,0 -2.17285,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.34057,-0.02075 0.27954,-0.04272 0.21851,-0.0647 0.15748,-0.08667 0.11962,-0.117187 0.0855,-0.136719 0.0513,-0.15625 0.0171,-0.175782 -0.0488,-0.258788 -0.14649,-0.327148 -0.24414,-0.395508 -0.34179,-0.463868 -1.37207,-1.75293 -1.37207,-1.752929 -1.37207,-1.75293 -1.37207,-1.75293 0,1.484375 0,1.484375 0,1.484375 0,1.484375 0.0146,0.794679 0.0439,0.645752 0.0732,0.496826 0.10255,0.347899 0.13915,0.253907 0.16358,0.214844 0.18799,0.175781 0.2124,0.136718 0.29052,0.10376 0.42237,0.07691 0.5542,0.05005 0.68604,0.02319 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.27539,0 -2.27539,0 -2.27539,0 -2.27539,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.64087,-0.02075 0.55541,-0.06226 0.46998,-0.10376 0.38452,-0.145264 0.19287,-0.12207 0.16845,-0.151366 0.14405,-0.180665 0.11963,-0.209961 0.12817,-0.380858 0.0915,-0.498047 0.0549,-0.615234 0.0183,-0.732424 0,-4.072265 0,-4.072266 0,-4.072265 0,-4.072266 -0.009,-1.401355 -0.0256,-1.098628 -0.0427,-0.795903 -0.0598,-0.493177 -0.0793,-0.323472 -0.10132,-0.267329 -0.1233,-0.211187 -0.14527,-0.155043 -0.16846,-0.119615 -0.19287,-0.08544 -0.21728,-0.05127 -0.2417,-0.0171 -0.23071,0.02077 -0.28199,0.06226 -0.33325,0.103755 -0.38452,0.14525 -0.083,-0.170898 -0.083,-0.170899 -0.083,-0.170898 -0.083,-0.170899 1.32812,-0.546875 1.32813,-0.546875 1.32812,-0.546875 1.32813,-0.546875 0.22461,0 0.2246,0 0.22461,0 0.22461,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3191"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 517.04529,36.017315 0,5.932617 0,5.932618 0,5.932617 0,5.932617 0.0146,0.769044 0.0439,0.627442 0.0732,0.485839 0.10255,0.344237 0.14282,0.257569 0.17456,0.225831 0.2063,0.194091 0.23804,0.162353 0.30883,0.119629 0.4187,0.08545 0.52857,0.05127 0.63843,0.01709 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.19238,0 -2.19238,0 -2.19239,0 -2.19238,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.56641,-0.01587 0.46875,-0.04761 0.37109,-0.07935 0.27344,-0.111086 0.2124,-0.147705 0.18798,-0.189208 0.16358,-0.230713 0.13916,-0.272218 0.11108,-0.360106 0.0793,-0.494384 0.0476,-0.628662 0.0159,-0.762941 0,-4.0625 0,-4.0625 0,-4.0625 0,-4.0625 -0.009,-1.367175 -0.0256,-1.074214 -0.0427,-0.781254 -0.0598,-0.488295 -0.0793,-0.323472 -0.10132,-0.267329 -0.1233,-0.211187 -0.14527,-0.155043 -0.15747,-0.11107 -0.17944,-0.07934 -0.20142,-0.04761 -0.22339,-0.01588 -0.271,0.01954 -0.30517,0.0586 -0.33936,0.09765 -0.37353,0.136705 -0.083,-0.170898 -0.083,-0.170899 -0.083,-0.170898 -0.083,-0.170899 1.33301,-0.546875 1.33301,-0.546875 1.333,-0.546875 1.33301,-0.546875 0.21973,0 0.21973,0 0.21972,0 0.21973,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3193"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 527.29919,49.181377 0.87646,-0.872793 0.67627,-0.66528 0.47608,-0.457767 0.27588,-0.250253 0.44799,-0.350332 0.46509,-0.308835 0.48218,-0.267337 0.49927,-0.22584 0.50659,-0.179433 0.50415,-0.12817 0.50171,-0.07691 0.49927,-0.02564 0.81054,0.06105 0.75195,0.183109 0.69336,0.305172 0.63478,0.427236 0.55541,0.543222 0.45532,0.653079 0.35523,0.762937 0.25513,0.872793 0.96679,-1.070547 0.88867,-0.867917 0.81055,-0.665286 0.73243,-0.462656 0.69823,-0.324697 0.70801,-0.23193 0.71777,-0.139163 0.72755,-0.0464 0.69213,0.0464 0.65063,0.139163 0.60913,0.23193 0.56764,0.324697 0.52733,0.419931 0.46874,0.537113 0.41016,0.654294 0.35158,0.771475 0.18797,0.646981 0.13427,0.808107 0.0806,0.969236 0.0269,1.130363 0,1.923828 0,1.923828 0,1.923829 0,1.923828 0.0159,0.773927 0.0476,0.64209 0.0793,0.510254 0.11111,0.378416 0.11839,0.20752 0.15991,0.192872 0.20142,0.178222 0.24293,0.163574 0.30516,0.128174 0.38818,0.09155 0.4712,0.05493 0.55421,0.01831 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.20703,0 -2.20703,0 -2.20703,0 -2.20703,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.0928,0 0.0928,0 0.0928,0 0.0928,0 0.54442,-0.02808 0.48096,-0.08423 0.41748,-0.14038 0.35402,-0.196534 0.20872,-0.179443 0.177,-0.225829 0.14527,-0.272217 0.11354,-0.318605 0.0342,-0.242919 0.0244,-0.396728 0.0146,-0.550537 0.005,-0.704347 0,-1.923828 0,-1.923829 0,-1.923828 0,-1.923828 -0.033,-1.013176 -0.0989,-0.852048 -0.16479,-0.69092 -0.2307,-0.529793 -0.43825,-0.546866 -0.55298,-0.390622 -0.66772,-0.234378 -0.78246,-0.07813 -0.51881,0.03297 -0.52124,0.09888 -0.52368,0.164791 -0.52611,0.230704 -0.54566,0.310067 -0.60182,0.422366 -0.65795,0.534665 -0.7141,0.646965 -0.01,0.05371 -0.01,0.05371 -0.01,0.05371 -0.01,0.05371 0.01,0.209961 0.01,0.20996 0.01,0.209961 0.01,0.209961 0,2.133789 0,2.133789 0,2.13379 0,2.133789 0.0122,0.8313 0.0366,0.657959 0.061,0.484619 0.0855,0.311278 0.12938,0.216065 0.17334,0.198975 0.21729,0.181885 0.26124,0.164794 0.33324,0.128174 0.43335,0.09155 0.53345,0.05493 0.63356,0.01831 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.26074,0 -2.26075,0 -2.26074,0 -2.26074,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.68359,-0.02197 0.5664,-0.06592 0.44922,-0.109863 0.33204,-0.153809 0.26122,-0.197753 0.21728,-0.241699 0.17334,-0.285645 0.12941,-0.329591 0.0427,-0.24536 0.0305,-0.404052 0.0183,-0.562744 0.006,-0.721437 0,-1.923828 0,-1.923829 0,-1.923828 0,-1.923828 -0.0403,-1.016838 -0.12085,-0.863034 -0.20141,-0.709231 -0.28198,-0.555428 -0.47242,-0.546866 -0.55786,-0.390622 -0.64331,-0.234378 -0.72875,-0.07813 -0.52613,0.03541 -0.52368,0.106204 -0.52124,0.176999 -0.5188,0.247794 -0.76416,0.443124 -0.67139,0.469973 -0.57861,0.496823 -0.48584,0.523674 0,2.397461 0,2.397461 0,2.397461 0,2.397461 0.0146,0.802004 0.0439,0.648193 0.0733,0.494384 0.10255,0.340575 0.14038,0.247804 0.16723,0.216064 0.1941,0.184326 0.22095,0.152587 0.30517,0.111085 0.42724,0.07935 0.54932,0.04761 0.67139,0.01587 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.21191,0 -2.21192,0 -2.21192,0 -2.21191,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.56885,-0.01587 0.47607,-0.04761 0.3833,-0.07935 0.29053,-0.111086 0.22949,-0.155028 0.2002,-0.191651 0.1709,-0.228271 0.1416,-0.264894 0.11108,-0.360106 0.0794,-0.494384 0.0476,-0.628662 0.0159,-0.762941 0,-1.708985 0,-1.708984 0,-1.708985 0,-1.708984 -0.011,-1.343987 -0.033,-1.082761 -0.0549,-0.821535 -0.0769,-0.560311 -0.0781,-0.296622 -0.0977,-0.245358 -0.1172,-0.194095 -0.13672,-0.142831 -0.15992,-0.111075 -0.18676,-0.07934 -0.21362,-0.04761 -0.24048,-0.01588 -0.28687,0.01832 -0.31372,0.05493 -0.34058,0.09155 -0.36743,0.128166 -0.0732,-0.175781 -0.0732,-0.175782 -0.0732,-0.175781 -0.0732,-0.175781 1.34765,-0.546875 1.34766,-0.546875 1.34765,-0.546875 1.34766,-0.546875 0.20996,0 0.20996,0 0.20996,0 0.20996,0 0,0.952148 0,0.952148 0,0.952149 0,0.952148"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3195"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 558.37341,49.161846 1.55395,-1.657705 1.51733,-1.184078 1.48072,-0.710453 1.4441,-0.236826 0.70678,0.0464 0.65551,0.139163 0.60425,0.23193 0.55299,0.324697 0.50048,0.421152 0.44677,0.540775 0.39307,0.660397 0.33937,0.78002 0.18798,0.66407 0.13427,0.820315 0.0806,0.97656 0.0269,1.132805 0,1.90918 0,1.909179 0,1.90918 0,1.90918 0.0171,0.781251 0.0513,0.644532 0.0855,0.507811 0.11965,0.371093 0.12328,0.230714 0.15503,0.203857 0.18677,0.177002 0.21851,0.150146 0.29418,0.119629 0.39429,0.08545 0.49438,0.05127 0.5945,0.01709 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.21192,0 -2.21191,0 -2.21192,0 -2.21191,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.0928,0 0.0928,0 0.0928,0 0.0928,0 0.57738,-0.02319 0.48218,-0.06958 0.38696,-0.115966 0.29176,-0.162354 0.23437,-0.217285 0.19531,-0.26123 0.15625,-0.305176 0.11719,-0.349122 0.0342,-0.224608 0.0244,-0.380858 0.0146,-0.53711 0.005,-0.693361 0,-1.831055 0,-1.831055 0,-1.831054 0,-1.831055 -0.0403,-1.136467 -0.12086,-0.968015 -0.20141,-0.799563 -0.28197,-0.631111 -0.36744,-0.487052 -0.4773,-0.347898 -0.58716,-0.208743 -0.69701,-0.06959 -1.1609,0.1587 -1.15845,0.476078 -1.156,0.793454 -1.15356,1.110831 0,2.358398 0,2.358399 0,2.358398 0,2.358399 0.0134,0.821534 0.0403,0.648194 0.0671,0.474853 0.094,0.301512 0.14892,0.264894 0.17334,0.228271 0.19775,0.191651 0.22217,0.155028 0.30518,0.111085 0.42724,0.07935 0.54932,0.04761 0.67139,0.01587 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.21192,0 -2.21191,0 -2.21192,0 -2.21191,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.0977,0 0.0976,0 0.0977,0 0.0977,0 0.62744,-0.04272 0.51513,-0.128173 0.40284,-0.213623 0.29053,-0.299073 0.21362,-0.429686 0.15258,-0.585937 0.0916,-0.742188 0.0305,-0.898439 0,-1.660156 0,-1.660157 0,-1.660156 0,-1.660156 -0.01,-1.45385 -0.0293,-1.138914 -0.0488,-0.823977 -0.0684,-0.509041 -0.0793,-0.323478 -0.10132,-0.267331 -0.1233,-0.211184 -0.14527,-0.155038 -0.15992,-0.111075 -0.18676,-0.07934 -0.21362,-0.04761 -0.24048,-0.01588 -0.28687,0.01832 -0.31372,0.05493 -0.34058,0.09155 -0.36743,0.128166 -0.0732,-0.175781 -0.0733,-0.175782 -0.0732,-0.175781 -0.0732,-0.175781 1.34766,-0.546875 1.34765,-0.546875 1.34766,-0.546875 1.34766,-0.546875 0.20996,0 0.20996,0 0.20996,0 0.20996,0 0,0.947265 0,0.947266 0,0.947265 0,0.947266"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3197"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 581.90857,45.372784 1.93115,0.192881 1.73095,0.578617 1.53077,0.964351 1.33057,1.350088 0.9143,1.367195 0.65307,1.464846 0.39184,1.562497 0.13063,1.66015 -0.072,1.204838 -0.21607,1.212159 -0.3601,1.219481 -0.50414,1.226803 -0.63112,1.154787 -0.74097,1.003418 -0.85083,0.85205 -0.96068,0.700682 -1.03516,0.546875 -1.09375,0.390625 -1.15234,0.234375 -1.21093,0.07813 -1.91773,-0.201416 -1.71021,-0.604248 -1.50268,-1.00708 -1.29517,-1.409912 -0.88012,-1.398923 -0.62867,-1.481932 -0.37719,-1.564942 -0.12573,-1.647953 0.0757,-1.228021 0.22705,-1.223142 0.37842,-1.218264 0.52978,-1.213385 0.66284,-1.140128 0.75806,-0.979001 0.85327,-0.817874 0.94849,-0.656747 1.01074,-0.512685 1.04004,-0.366208 1.06933,-0.21973 1.09864,-0.07325 m -0.60547,1.269531 -0.5188,0.03907 -0.52124,0.117191 -0.52368,0.195309 -0.52612,0.273428 -0.49317,0.361337 -0.44434,0.478518 -0.3955,0.5957 -0.34668,0.712882 -0.28199,0.826423 -0.20141,0.936282 -0.12085,1.04614 -0.0403,1.155999 0.0964,1.885991 0.28931,1.751709 0.48218,1.61743 0.67505,1.483151 0.84228,1.239015 0.96435,0.88501 1.08643,0.531006 1.2085,0.177001 0.90575,-0.09766 0.82276,-0.292969 0.73974,-0.488281 0.65675,-0.683594 0.53832,-0.921629 0.38452,-1.202392 0.23072,-1.483154 0.0769,-1.763919 -0.12818,-2.255853 -0.38453,-2.00195 -0.64086,-1.748049 -0.89721,-1.494148 -0.74097,-0.820303 -0.83619,-0.585935 -0.93139,-0.351565 -1.02661,-0.117197"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3199"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 591.86951,47.677471 1.37695,-0.556641 1.37695,-0.55664 1.37696,-0.556641 1.37695,-0.55664 0.18555,0 0.18554,0 0.18555,0 0.18555,0 0,1.044922 0,1.044921 0,1.044922 0,1.044922 0.69335,-1.09252 0.69336,-0.914304 0.69336,-0.736086 0.69336,-0.557871 0.71167,-0.418691 0.72875,-0.299069 0.74586,-0.179446 0.76294,-0.05982 1.2915,0.131846 1.17919,0.395511 1.0669,0.659176 0.9546,0.922842 0.96557,1.386726 0.68969,1.582034 0.41382,1.777341 0.13795,1.972649 -0.16603,2.214359 -0.49805,2.01416 -0.83007,1.813964 -1.1621,1.613767 -1.16456,1.085205 -1.30615,0.775146 -1.44775,0.465088 -1.58935,0.155029 -0.69825,-0.02563 -0.64941,-0.0769 -0.60059,-0.128174 -0.55175,-0.179443 -0.40284,-0.183105 -0.42724,-0.256348 -0.45166,-0.32959 -0.47607,-0.402832 0,1.362305 0,1.362304 0,1.362305 0,1.362305 0.0134,0.833737 0.0403,0.665282 0.0671,0.496827 0.094,0.328373 0.13671,0.240474 0.17578,0.213622 0.21485,0.186769 0.25391,0.159916 0.33935,0.12817 0.45166,0.09155 0.56397,0.05493 0.67627,0.01832 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.34375,0 -2.34375,0 -2.34375,0 -2.34375,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.12207,0 0.12207,0 0.12207,0 0.12207,0 0.51758,-0.01832 0.47852,-0.07447 0.43945,-0.130613 0.40039,-0.186763 0.17456,-0.124516 0.15258,-0.158692 0.13062,-0.19287 0.10865,-0.227047 0.094,-0.327152 0.0671,-0.512696 0.0403,-0.698241 0.0134,-0.883786 0,-4.228516 0,-4.228515 0,-4.228516 0,-4.228515 -0.01,-0.789787 -0.0293,-0.631101 -0.0488,-0.472414 -0.0683,-0.313729 -0.0903,-0.219718 -0.11475,-0.190427 -0.13916,-0.161136 -0.16357,-0.131844 -0.18189,-0.102531 -0.21362,-0.07324 -0.24536,-0.04395 -0.2771,-0.01466 -0.25024,0.0171 -0.28199,0.05127 -0.31372,0.08545 -0.34546,0.119621 -0.0586,-0.15625 -0.0586,-0.15625 -0.0586,-0.15625 -0.0586,-0.15625 m 6.25,3.105469 0,1.669922 0,1.669921 0,1.669922 0,1.669922 0.011,0.991214 0.033,0.805665 0.0549,0.620116 0.0769,0.434568 0.18554,0.549318 0.2832,0.515137 0.38086,0.480956 0.47852,0.446776 0.57129,0.375977 0.63965,0.268555 0.70801,0.161133 0.77637,0.05371 0.93017,-0.09521 0.8374,-0.285644 0.74463,-0.476074 0.65186,-0.666504 0.69213,-1.09741 0.49438,-1.300048 0.29663,-1.502686 0.0989,-1.705325 -0.11231,-1.932367 -0.33692,-1.695554 -0.56152,-1.458742 -0.78613,-1.221931 -0.6543,-0.666495 -0.71289,-0.476072 -0.77148,-0.285647 -0.83008,-0.09522 -0.46753,0.0293 -0.46509,0.08789 -0.46264,0.146481 -0.4602,0.20507 -0.40894,0.26368 -0.52368,0.439456 -0.63843,0.615231 -0.75317,0.791008"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3201"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 628.99841,45.372784 0,5.751953 0,5.751953 0,5.751953 0,5.751953 0.0146,0.782468 0.0439,0.62866 0.0732,0.474855 0.10255,0.321048 0.13305,0.230709 0.16479,0.203856 0.19653,0.177003 0.22828,0.150151 0.31249,0.119625 0.42969,0.08545 0.54688,0.05127 0.66407,0.01709 0,0.180664 0,0.180664 0,0.180664 0,0.180664 -2.25586,0 -2.25586,0 -2.25586,0 -2.25586,0 0,-0.180664 0,-0.180664 0,-0.180664 0,-0.180664 0.0928,0 0.0928,0 0.0928,0 0.0928,0 0.51391,-0.01954 0.44799,-0.05859 0.38208,-0.09766 0.31617,-0.136714 0.18554,-0.129399 0.16602,-0.173341 0.14648,-0.217284 0.12696,-0.261226 0.10253,-0.339359 0.0732,-0.471193 0.044,-0.603026 0.0147,-0.73486 0,-1.923828 0,-1.923828 0,-1.923828 0,-1.923828 -0.8606,0.97168 -0.80445,0.805664 -0.74829,0.639648 -0.69213,0.473633 -0.67017,0.333252 -0.68238,0.238037 -0.69458,0.142822 -0.70678,0.04761 -1.26465,-0.147705 -1.19629,-0.443115 -1.12793,-0.738525 -1.05957,-1.033936 -0.88867,-1.281736 -0.63477,-1.481932 -0.38086,-1.68213 -0.12695,-1.882327 0.16846,-2.169183 0.50537,-1.956784 0.84229,-1.744387 1.1792,-1.53199 1.41723,-1.256093 1.5564,-0.897214 1.69555,-0.538333 1.83472,-0.179453 0.54565,0.01954 0.52368,0.0586 0.50171,0.09765 0.47974,0.136708 0.45654,0.175791 0.43213,0.214847 0.40771,0.253903 0.38331,0.292959 0.5603,-0.283193 0.54809,-0.302731 0.53589,-0.322269 0.52369,-0.341807 0.16602,0 0.16601,0 0.16601,0 0.16602,0 m -3.22265,14.082031 0,-2.09961 0,-2.099609 0,-2.09961 0,-2.099609 -0.0244,-0.693351 -0.0732,-0.615232 -0.12207,-0.537112 -0.17089,-0.458992 -0.2234,-0.404044 -0.29907,-0.372311 -0.37475,-0.340579 -0.45043,-0.308847 -0.50416,-0.256338 -0.53589,-0.183103 -0.56763,-0.109866 -0.59936,-0.03663 -1.05469,0.115976 -0.97657,0.347904 -0.89843,0.579831 -0.82031,0.811758 -0.6836,1.047368 -0.48828,1.286623 -0.29297,1.525878 -0.0977,1.765131 0.0989,1.698002 0.29663,1.480713 0.49438,1.263427 0.69215,1.046139 0.84106,0.820314 0.92163,0.585938 1.00219,0.351562 1.08277,0.117186 0.5603,-0.03052 0.52856,-0.09155 0.49683,-0.152587 0.46509,-0.213624 0.44799,-0.292967 0.44556,-0.371093 0.44312,-0.449219 0.44068,-0.527346"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3203"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 638.39294,45.372784 0,1.005859 0,1.00586 0,1.005859 0,1.005859 1.13037,-1.760244 1.14502,-1.25732 1.15967,-0.754398 1.17432,-0.251475 0.51391,0.04151 0.46752,0.124515 0.42115,0.207516 0.37476,0.290517 0.30761,0.335703 0.21972,0.362552 0.13184,0.389401 0.044,0.41625 -0.0317,0.36622 -0.0952,0.336917 -0.15868,0.307614 -0.22216,0.278312 -0.26612,0.230721 -0.29053,0.164798 -0.31494,0.09887 -0.33935,0.03295 -0.35279,-0.0415 -0.37476,-0.124509 -0.39672,-0.207522 -0.4187,-0.290536 -0.39307,-0.299063 -0.33936,-0.21362 -0.28564,-0.128177 -0.23193,-0.04273 -0.17945,0.02442 -0.18677,0.07325 -0.19409,0.122067 -0.20141,0.17089 -0.44312,0.465096 -0.45044,0.594485 -0.45776,0.723875 -0.46509,0.853263 0,2.143555 0,2.143555 0,2.143554 0,2.143555 0.0232,0.697023 0.0696,0.60669 0.11596,0.516357 0.16236,0.426024 0.15136,0.252686 0.20019,0.230713 0.24903,0.20874 0.29786,0.186767 0.35766,0.153809 0.42846,0.109863 0.49927,0.06592 0.57007,0.02197 0,0.175781 0,0.175782 0,0.175781 0,0.175781 -2.29004,0 -2.29004,0 -2.29003,0 -2.29004,0 0,-0.175781 0,-0.175781 0,-0.175782 0,-0.175781 0.63965,-0.02685 0.55176,-0.08057 0.46386,-0.134277 0.37598,-0.187989 0.22583,-0.179443 0.18921,-0.225829 0.15258,-0.272217 0.11597,-0.318605 0.0427,-0.242918 0.0305,-0.396728 0.0183,-0.550538 0.006,-0.704347 0,-1.733398 0,-1.733399 0,-1.733398 0,-1.733399 -0.009,-1.403801 -0.0256,-1.086423 -0.0427,-0.769045 -0.0598,-0.451668 -0.0732,-0.281974 -0.10254,-0.240476 -0.13185,-0.198978 -0.16113,-0.157479 -0.177,-0.11962 -0.19898,-0.08545 -0.22094,-0.05127 -0.24292,-0.0171 -0.3125,0.01832 -0.33204,0.05493 -0.35156,0.09155 -0.37109,0.128166 -0.0488,-0.175781 -0.0488,-0.175781 -0.0488,-0.175782 -0.0488,-0.175781 1.35254,-0.546875 1.35253,-0.546875 1.35254,-0.546875 1.35254,-0.546875 0.20508,0 0.20507,0 0.20508,0 0.20508,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3205"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 658.08044,45.372784 0,1.523438 0,1.523437 0,1.523438 0,1.523437 -0.16113,0 -0.16114,0 -0.16113,0 -0.16113,0 -0.39795,-1.320793 -0.45167,-1.091306 -0.50536,-0.861819 -0.55908,-0.632332 -0.61646,-0.452872 -0.69702,-0.323483 -0.77759,-0.194095 -0.85815,-0.06471 -0.65064,0.04518 -0.58471,0.135502 -0.5188,0.225826 -0.45288,0.316153 -0.36743,0.371103 -0.26246,0.390627 -0.15747,0.410153 -0.0525,0.429679 0.0391,0.527352 0.11718,0.488283 0.19532,0.449216 0.27344,0.410149 0.38086,0.406501 0.5371,0.418704 0.69336,0.430906 0.84961,0.443108 0.71289,0.34668 0.71289,0.34668 0.7129,0.346679 0.71289,0.34668 1.73461,1.043706 1.23901,1.197511 0.74341,1.351316 0.24781,1.505123 -0.11597,1.162111 -0.34791,1.044922 -0.57983,0.927734 -0.81176,0.810545 -0.94605,0.649414 -1.0022,0.463867 -1.05834,0.278321 -1.1145,0.09277 -0.84962,-0.03662 -0.9082,-0.109863 -0.9668,-0.183105 -1.02538,-0.256348 -0.30762,-0.08545 -0.27832,-0.06103 -0.24903,-0.03662 -0.21972,-0.01221 -0.2124,0.03174 -0.18799,0.09521 -0.16358,0.158692 -0.13915,0.222168 -0.16114,0 -0.16113,0 -0.16114,0 -0.16113,0 0,-1.59668 0,-1.59668 0,-1.596679 0,-1.59668 0.16113,0 0.16114,0 0.16113,0 0.16114,0 0.33569,1.282961 0.4602,1.114503 0.58472,0.946044 0.70923,0.777586 0.79468,0.606687 0.84106,0.43335 0.88745,0.260011 0.93384,0.08667 0.64208,-0.04883 0.57861,-0.146484 0.51514,-0.244141 0.45167,-0.341797 0.37597,-0.419921 0.26855,-0.458984 0.16114,-0.498047 0.0537,-0.537111 -0.0598,-0.64697 -0.17944,-0.593261 -0.29907,-0.539551 -0.4187,-0.485843 -0.58716,-0.489498 -0.82398,-0.550536 -1.06078,-0.611574 -1.29761,-0.672611 -1.29394,-0.686035 -1.04981,-0.651853 -0.80566,-0.617674 -0.56152,-0.5835 -0.38452,-0.593255 -0.27466,-0.666502 -0.1648,-0.739748 -0.0549,-0.812995 0.094,-1.058341 0.28199,-0.968015 0.46997,-0.877688 0.65796,-0.787362 0.81665,-0.649404 0.92651,-0.463864 1.03638,-0.278324 1.14624,-0.09278 0.55541,0.02809 0.61157,0.08423 0.66773,0.140378 0.72388,0.196522 0.45654,0.128184 0.37353,0.09156 0.29053,0.05493 0.20753,0.0183 0.1477,-0.0085 0.13061,-0.02563 0.11353,-0.04273 0.0964,-0.05982 0.0915,-0.0891 0.0989,-0.130612 0.1062,-0.172121 0.11353,-0.213633 0.16113,0 0.16113,0 0.16114,0 0.16113,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3207"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 667.26013,40.021221 0,1.469726 0,1.469727 0,1.469726 0,1.469727 1.04492,0 1.04492,0 1.04493,0 1.04492,0 0,0.341797 0,0.341797 0,0.341797 0,0.341797 -1.04492,0 -1.04493,0 -1.04492,0 -1.04492,0 0,2.90039 0,2.900391 0,2.90039 0,2.900391 0.0305,0.798342 0.0915,0.656739 0.15259,0.515136 0.21362,0.373533 0.27099,0.264894 0.30518,0.189209 0.33936,0.113525 0.37354,0.03784 0.31981,-0.02441 0.31494,-0.07324 0.31007,-0.12207 0.30518,-0.170899 0.28564,-0.22827 0.25146,-0.274658 0.21729,-0.321045 0.18311,-0.367433 0.19043,0 0.19043,0 0.19042,0 0.19043,0 -0.3772,0.898439 -0.448,0.78125 -0.5188,0.664062 -0.58959,0.546874 -0.62989,0.418701 -0.63965,0.299072 -0.64941,0.179444 -0.65917,0.05981 -0.44678,-0.03052 -0.4419,-0.09155 -0.43701,-0.152588 -0.43213,-0.213623 -0.40161,-0.279541 -0.34546,-0.33081 -0.28931,-0.38208 -0.23315,-0.43335 -0.17944,-0.531005 -0.12818,-0.655517 -0.0769,-0.780029 -0.0256,-0.904543 0,-3.007813 0,-3.007812 0,-3.007813 0,-3.007812 -0.70801,0 -0.70801,0 -0.70801,0 -0.70801,0 0,-0.161133 0,-0.161133 0,-0.161132 0,-0.161133 0.53955,-0.251455 0.54444,-0.324704 0.54931,-0.397953 0.5542,-0.471201 0.55054,-0.540761 0.5188,-0.587154 0.48706,-0.633548 0.45532,-0.679943 0.24658,-0.447986 0.29053,-0.601802 0.33447,-0.755619 0.37842,-0.909437 0.15137,0 0.15136,0 0.15137,0 0.15137,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3209"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 688.84216,45.900127 0,2.709961 0,2.709961 0,2.709961 0,2.709961 0.009,1.402591 0.0256,1.102295 0.0427,0.802001 0.0598,0.501707 0.0879,0.316164 0.10742,0.264893 0.12696,0.213622 0.14649,0.162352 0.17211,0.11963 0.18432,0.08545 0.19654,0.05127 0.20875,0.01709 0.31249,-0.02075 0.33203,-0.06226 0.35157,-0.103761 0.3711,-0.145265 0.0684,0.170898 0.0684,0.170899 0.0684,0.170898 0.0684,0.170899 -1.33789,0.551758 -1.33789,0.551757 -1.3379,0.551758 -1.33789,0.551758 -0.21973,0 -0.21972,0 -0.21972,0 -0.21973,0 0,-0.947266 0,-0.947265 0,-0.947266 0,-0.947265 -1.08399,1.134034 -0.94727,0.902099 -0.81055,0.670166 -0.67382,0.438232 -0.61402,0.281986 -0.6311,0.201415 -0.64819,0.120848 -0.66528,0.04028 -0.72754,-0.05371 -0.67872,-0.161133 -0.62988,-0.268554 -0.58105,-0.375977 -0.50537,-0.46997 -0.42237,-0.531005 -0.33935,-0.592041 -0.25635,-0.653077 -0.18799,-0.754393 -0.13428,-0.895995 -0.0806,-1.037598 -0.0269,-1.179202 0,-1.99707 0,-1.997071 0,-1.99707 0,-1.99707 -0.0171,-0.585929 -0.0513,-0.488278 -0.0854,-0.390628 -0.11965,-0.292978 -0.15381,-0.229483 -0.18799,-0.200192 -0.22217,-0.170901 -0.25634,-0.141611 -0.31861,-0.118399 -0.42847,-0.08178 -0.53833,-0.04517 -0.64819,-0.0086 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.56738,0 1.56738,0 1.56739,0 1.56738,0 0,2.993164 0,2.993164 0,2.993165 0,2.993164 0.0537,1.14258 0.16113,0.927735 0.26856,0.71289 0.37598,0.498045 0.46142,0.341798 0.50537,0.244141 0.54931,0.146484 0.59327,0.04883 0.43335,-0.03296 0.4602,-0.09888 0.48706,-0.164795 0.51392,-0.230713 0.56152,-0.323485 0.61035,-0.443114 0.65918,-0.562745 0.70802,-0.682375 0,-2.53418 0,-2.53418 0,-2.534179 0,-2.53418 -0.0354,-0.699454 -0.10621,-0.574948 -0.177,-0.450442 -0.24779,-0.325937 -0.34913,-0.24169 -0.50049,-0.178219 -0.65185,-0.114749 -0.80322,-0.05128 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.52344,0 1.52343,0 1.52344,0 1.52344,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3211"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 692.2406,45.900127 2.10449,0 2.10449,0 2.1045,0 2.10449,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.13672,0 -0.13672,0 -0.13672,0 -0.13672,0 -0.35889,0.0232 -0.31494,0.06958 -0.27099,0.115964 -0.22705,0.162343 -0.1709,0.201426 -0.12207,0.233157 -0.0732,0.26489 -0.0244,0.296621 0.0256,0.357675 0.0769,0.389407 0.12818,0.42114 0.17944,0.452872 1.04004,2.470703 1.04004,2.470703 1.04004,2.470703 1.04004,2.470703 1.04492,-2.563477 1.04492,-2.563476 1.04492,-2.563477 1.04492,-2.563476 0.19653,-0.513907 0.14038,-0.447995 0.0842,-0.382083 0.0281,-0.316171 -0.01,-0.130606 -0.0293,-0.118405 -0.0488,-0.106205 -0.0684,-0.094 -0.11475,-0.134268 -0.1294,-0.10986 -0.14404,-0.08545 -0.15868,-0.06105 -0.20875,-0.05126 -0.29419,-0.03662 -0.37964,-0.02198 -0.46508,-0.0073 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.45996,0 1.45996,0 1.45997,0 1.45996,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.46877,0.05494 -0.39063,0.08667 -0.31249,0.118405 -0.23436,0.150137 -0.33326,0.341806 -0.31617,0.439456 -0.29907,0.537106 -0.28197,0.634757 -1.58692,3.83789 -1.58691,3.837891 -1.58692,3.83789 -1.58691,3.837891 -0.2002,0 -0.20019,0 -0.2002,0 -0.20019,0 -1.59668,-3.774414 -1.59668,-3.774414 -1.59668,-3.774414 -1.59668,-3.774414 -0.2124,-0.489493 -0.20752,-0.413816 -0.20264,-0.338137 -0.19775,-0.26246 -0.20874,-0.2246 -0.2356,-0.205075 -0.26245,-0.18555 -0.28931,-0.166025 -0.2063,-0.08666 -0.28686,-0.08422 -0.36743,-0.08179 -0.448,-0.07935 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3213"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 712.16248,45.900127 1.875,0 1.875,0 1.875,0 1.875,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.47364,0.0525 -0.38574,0.07935 -0.29785,0.106198 -0.20996,0.133047 -0.13672,0.162363 -0.0977,0.194095 -0.0586,0.225827 -0.0195,0.257559 0.0208,0.318612 0.0622,0.350345 0.10376,0.382077 0.14527,0.41381 0.95703,2.573242 0.95703,2.573242 0.95703,2.573243 0.95703,2.573242 0.96191,-2.094727 0.96192,-2.094727 0.96191,-2.094726 0.96192,-2.094727 -0.25391,-0.65918 -0.2539,-0.659179 -0.25391,-0.65918 -0.2539,-0.659179 -0.2527,-0.540762 -0.28931,-0.450437 -0.32592,-0.36011 -0.36254,-0.269785 -0.26124,-0.123282 -0.35401,-0.09643 -0.44677,-0.06958 -0.53955,-0.04273 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 2.12891,0 2.1289,0 2.12891,0 2.12891,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.65187,0.05372 -0.54932,0.102542 -0.44677,0.151363 -0.34423,0.200186 -0.17091,0.179453 -0.12207,0.225833 -0.0732,0.272214 -0.0244,0.318594 0.01,0.196542 0.0293,0.198977 0.0488,0.201413 0.0684,0.203849 1.01562,2.568359 1.01563,2.56836 1.01562,2.568359 1.01563,2.56836 0.94238,-2.475586 0.94238,-2.475586 0.94239,-2.475586 0.94238,-2.475586 0.17088,-0.50048 0.12207,-0.446774 0.0732,-0.393069 0.0244,-0.339365 -0.0244,-0.180655 -0.0732,-0.170895 -0.12207,-0.161136 -0.17088,-0.151376 -0.23195,-0.130606 -0.32471,-0.09887 -0.41748,-0.06714 -0.51024,-0.03541 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.41113,0 1.41113,0 1.41114,0 1.41113,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.79347,0.239267 -0.68116,0.46387 -0.56884,0.688473 -0.45653,0.913077 -1.49414,3.852539 -1.49414,3.852539 -1.49414,3.852539 -1.49414,3.852539 -0.2002,0 -0.20019,0 -0.2002,0 -0.20019,0 -1.11817,-2.856445 -1.11816,-2.856446 -1.11817,-2.856445 -1.11816,-2.856445 -1.30371,2.856445 -1.30371,2.856445 -1.30371,2.856446 -1.30371,2.856445 -0.18067,0 -0.18066,0 -0.18067,0 -0.18066,0 -1.43555,-3.759766 -1.43554,-3.759765 -1.43554,-3.759766 -1.43555,-3.759765 -0.28199,-0.654288 -0.27954,-0.537107 -0.27709,-0.419924 -0.27466,-0.302744 -0.3125,-0.238028 -0.39063,-0.206295 -0.46875,-0.174564 -0.54687,-0.142831 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3215"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 741.34216,45.900127 2.10449,0 2.10449,0 2.1045,0 2.10449,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.3711,0.0171 -0.3125,0.05127 -0.2539,0.08545 -0.19531,0.11962 -0.13672,0.147715 -0.0977,0.169681 -0.0586,0.191647 -0.0195,0.213613 0.0427,0.266122 0.12817,0.329593 0.21363,0.393064 0.29907,0.456534 0.12085,0.178231 0.1477,0.22217 0.17456,0.266111 0.20142,0.31005 0.31738,0.507812 0.31739,0.507813 0.31739,0.507812 0.31738,0.507813 0.36621,-0.507813 0.36621,-0.507812 0.36621,-0.507813 0.36621,-0.507812 0.61523,-0.877677 0.43945,-0.699459 0.26367,-0.521243 0.0879,-0.343027 -0.0208,-0.196524 -0.0623,-0.17944 -0.10375,-0.162357 -0.14526,-0.145273 -0.19166,-0.128164 -0.24292,-0.09155 -0.29419,-0.05494 -0.34545,-0.01832 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.51367,0 1.51368,0 1.51367,0 1.51367,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.46266,0.05494 -0.43091,0.106204 -0.39917,0.157468 -0.36742,0.20873 -0.52247,0.429697 -0.61036,0.625003 -0.69823,0.820309 -0.78613,1.015616 -0.61035,0.81543 -0.61035,0.815429 -0.61035,0.81543 -0.61035,0.81543 1.11328,1.601562 1.11328,1.601563 1.11328,1.601562 1.11328,1.601563 0.76171,1.064455 0.64453,0.830078 0.52734,0.595703 0.41017,0.361327 0.37719,0.208741 0.42846,0.15747 0.47974,0.106201 0.53102,0.05493 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -2.10937,0 -2.10938,0 -2.10937,0 -2.10938,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.41503,-0.02441 0.36621,-0.07324 0.31738,-0.122071 0.26857,-0.170899 0.16234,-0.147704 0.11597,-0.169677 0.0696,-0.191651 0.0232,-0.213624 -0.0781,-0.310057 -0.23438,-0.480957 -0.39062,-0.651855 -0.54687,-0.822756 -0.6543,-0.957031 -0.6543,-0.957032 -0.65429,-0.957031 -0.6543,-0.957031 -0.71777,0.957031 -0.71777,0.957031 -0.71778,0.957032 -0.71777,0.957031 -0.58106,0.798341 -0.41504,0.617677 -0.24902,0.437011 -0.083,0.256346 0.0269,0.229493 0.0806,0.219727 0.13428,0.209961 0.18799,0.200194 0.25146,0.164795 0.30518,0.123291 0.35889,0.08179 0.4126,0.04028 0,0.175781 0,0.175781 0,0.175782 0,0.175781 -1.45996,0 -1.45996,0 -1.45997,0 -1.45996,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 0.34058,-0.06714 0.3186,-0.103759 0.29663,-0.140382 0.27466,-0.177003 0.43457,-0.393065 0.56152,-0.612793 0.68848,-0.832519 0.81543,-1.052248 0.9375,-1.245117 0.9375,-1.245118 0.9375,-1.245117 0.9375,-1.245117 -0.84961,-1.230469 -0.84961,-1.230469 -0.84961,-1.230468 -0.84961,-1.230469 -0.68237,-0.955802 -0.60181,-0.758053 -0.52124,-0.560306 -0.44067,-0.362557 -0.41626,-0.239249 -0.46753,-0.170895 -0.5188,-0.102542 -0.57007,-0.03419 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3217"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 761.04919,45.900127 2.08496,0 2.08496,0 2.08497,0 2.08496,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.10254,0 -0.10254,0 -0.10254,0 -0.10254,0 -0.4126,0.02442 -0.35889,0.07325 -0.30517,0.122067 -0.25146,0.170889 -0.188,0.197763 -0.13428,0.222171 -0.0806,0.246579 -0.0268,0.270987 0.0403,0.417489 0.12085,0.490725 0.20142,0.563962 0.28198,0.637199 1.08887,2.255859 1.08886,2.255859 1.08887,2.25586 1.08887,2.255859 1.00098,-2.470703 1.00097,-2.470703 1.00098,-2.470703 1.00098,-2.470703 0.14525,-0.399161 0.10376,-0.396726 0.0623,-0.39429 0.0208,-0.391855 -0.009,-0.164785 -0.0256,-0.142819 -0.0427,-0.120853 -0.0598,-0.09889 -0.0891,-0.101309 -0.11109,-0.08911 -0.13305,-0.07691 -0.15502,-0.06471 -0.19776,-0.0598 -0.26124,-0.04272 -0.3247,-0.02564 -0.38818,-0.0086 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664 1.45508,0 1.45507,0 1.45508,0 1.45508,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -0.34059,0.04884 -0.29907,0.06836 -0.25757,0.08789 -0.21605,0.107412 -0.2002,0.142831 -0.20997,0.194095 -0.21972,0.245358 -0.22948,0.296622 -0.10743,0.196542 -0.14649,0.316165 -0.18554,0.435788 -0.2246,0.555411 -1.82129,4.462891 -1.82129,4.46289 -1.82129,4.462891 -1.82129,4.462891 -0.56885,1.219479 -0.65186,1.06079 -0.73486,0.9021 -0.81787,0.743412 -0.84229,0.58105 -0.82764,0.415037 -0.81298,0.249025 -0.79834,0.08301 -0.55054,-0.04151 -0.49927,-0.124513 -0.44799,-0.207518 -0.39673,-0.290523 -0.32471,-0.344242 -0.23193,-0.368653 -0.13916,-0.393065 -0.0464,-0.417477 0.033,-0.390628 0.0989,-0.351564 0.16479,-0.312499 0.23072,-0.273434 0.29785,-0.213626 0.34668,-0.152589 0.3955,-0.09155 0.44434,-0.03052 0.35156,0.02685 0.41016,0.08057 0.46875,0.134278 0.52734,0.187991 0.354,0.128171 0.28076,0.09155 0.20753,0.05493 0.13428,0.01831 0.29907,-0.03784 0.31127,-0.113526 0.32349,-0.189208 0.3357,-0.26489 0.35156,-0.373537 0.35156,-0.515138 0.35156,-0.656737 0.35157,-0.798338 0.31738,-0.776367 0.31738,-0.776368 0.31739,-0.776367 0.31738,-0.776367 -1.60645,-3.374023 -1.60644,-3.374024 -1.60645,-3.374023 -1.60644,-3.374023 -0.16846,-0.321037 -0.21241,-0.357663 -0.25634,-0.39429 -0.30029,-0.430917 -0.23315,-0.313712 -0.21119,-0.257565 -0.18921,-0.201418 -0.16723,-0.145273 -0.25879,-0.151358 -0.32715,-0.141598 -0.39551,-0.131839 -0.46387,-0.12208 0,-0.180664 0,-0.180665 0,-0.180664 0,-0.180664"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3219"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 797.76794,58.302471 -0.0537,1.37207 -0.0537,1.37207 -0.0537,1.372071 -0.0537,1.37207 -3.94531,0 -3.94532,0 -3.94531,0 -3.94531,0 0,-0.175781 0,-0.175782 0,-0.175781 0,-0.175781 2.96875,-3.955078 2.96875,-3.955078 2.96875,-3.955078 2.96875,-3.955078 -1.46484,0 -1.46485,0 -1.46484,0 -1.46484,0 -0.86548,0.01588 -0.70191,0.04761 -0.53833,0.07934 -0.37475,0.111075 -0.27954,0.145273 -0.25269,0.201419 -0.22583,0.257565 -0.19897,0.313712 -0.2356,0.517586 -0.17944,0.576174 -0.12329,0.634763 -0.0671,0.693352 -0.19531,0 -0.19532,0 -0.19531,0 -0.19531,0 0.0293,-1.240235 0.0293,-1.240234 0.0293,-1.240235 0.0293,-1.240234 3.75,0 3.75,0 3.75,0 3.75,0 0,0.180664 0,0.180664 0,0.180665 0,0.180664 -2.99805,3.964844 -2.99804,3.964843 -2.99804,3.964844 -2.99805,3.964844 1.63086,0 1.63085,0 1.63086,0 1.63086,0 0.94238,-0.02075 0.77637,-0.06226 0.61035,-0.10376 0.44434,-0.145265 0.35278,-0.207518 0.31616,-0.270996 0.27954,-0.334473 0.24293,-0.39795 0.15014,-0.399168 0.13793,-0.572509 0.12574,-0.74585 0.11353,-0.919192 0.16601,0 0.16602,0 0.16601,0 0.16602,0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3221"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 815.13123,71.739971 0,0.170898 0,0.170899 0,0.170899 0,0.170898 -1.55519,-0.334477 -1.40381,-0.554201 -1.25244,-0.773924 -1.10106,-0.993648 -0.88868,-1.12427 -0.63477,-1.185303 -0.38085,-1.246337 -0.12695,-1.307371 0.0281,-0.731202 0.0842,-0.787353 0.14038,-0.843506 0.19653,-0.899658 0.19653,-0.885008 0.14038,-0.780028 0.0842,-0.67505 0.0281,-0.57007 -0.0745,-0.690914 -0.22339,-0.666503 -0.37231,-0.642091 -0.52123,-0.61768 -0.64332,-0.555415 -0.75806,-0.435789 -0.8728,-0.316164 -0.98754,-0.196538 0,-0.200195 0,-0.200196 0,-0.200195 0,-0.200195 0.98754,-0.195307 0.8728,-0.312498 0.75806,-0.429689 0.64332,-0.546881 0.52123,-0.61889 0.37231,-0.645749 0.22339,-0.67261 0.0745,-0.69947 -0.0281,-0.568839 -0.0842,-0.671384 -0.14038,-0.773928 -0.19653,-0.876474 -0.19653,-0.900869 -0.14038,-0.847164 -0.0842,-0.79346 -0.0281,-0.739757 0.12695,-1.300036 0.38085,-1.243892 0.63477,-1.187748 0.88868,-1.131605 1.10106,-0.992417 1.25244,-0.770258 1.40381,-0.548101 1.55519,-0.325943 0,0.170898 0,0.170899 0,0.170898 0,0.170899 -1.06691,0.317398 -0.91553,0.405278 -0.76416,0.493159 -0.61278,0.58104 -0.46143,0.631117 -0.3296,0.662846 -0.19775,0.694575 -0.0659,0.726305 0.0268,0.622571 0.0806,0.715336 0.13428,0.808101 0.188,0.900867 0.19653,0.903331 0.14038,0.834964 0.0842,0.766598 0.0281,0.698232 -0.0903,0.979013 -0.271,0.964358 -0.45165,0.949704 -0.63232,0.93505 -0.81178,0.875253 -0.98999,0.770265 -1.16821,0.66528 -1.34643,0.560296 1.32202,0.571294 1.15356,0.678712 0.98511,0.786132 0.81665,0.89355 0.64941,0.952151 0.46387,0.961915 0.27832,0.971678 0.0928,0.981443 -0.0281,0.698243 -0.0842,0.766602 -0.14038,0.83496 -0.19653,0.90332 -0.188,0.900878 -0.13428,0.808105 -0.0806,0.715332 -0.0268,0.62256 0.0659,0.726316 0.19775,0.694579 0.3296,0.662843 0.46143,0.631106 0.61278,0.582271 0.76416,0.496825 0.91553,0.411378 1.06691,0.325932"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3223"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 822.68982,36.017315 0,9.101563 0,9.101562 0,9.101562 0,9.101563 -0.40527,0 -0.40528,0 -0.40527,0 -0.40527,0 0,-9.101563 0,-9.101562 0,-9.101563 0,-9.101562 0.40527,0 0.40527,0 0.40528,0 0.40527,0"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3225"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 829.4281,36.700909 0,-0.170898 0,-0.170899 0,-0.170898 0,-0.170899 1.55395,0.325943 1.40015,0.548101 1.24634,0.770258 1.09253,0.992417 0.89721,1.125501 0.64087,1.188969 0.38452,1.252437 0.12818,1.315905 -0.0281,0.731212 -0.0842,0.787357 -0.14038,0.843502 -0.19653,0.899648 -0.19653,0.876475 -0.14039,0.773928 -0.0842,0.671383 -0.0281,0.568839 0.0732,0.692146 0.21972,0.670168 0.36622,0.648191 0.5127,0.626214 0.65185,0.546881 0.76416,0.429689 0.87646,0.312498 0.98878,0.195307 0,0.200195 0,0.200196 0,0.200195 0,0.200195 -0.98878,0.196538 -0.87646,0.316164 -0.76416,0.435789 -0.65185,0.555415 -0.5127,0.61768 -0.36622,0.642091 -0.21972,0.666503 -0.0732,0.690914 0.0281,0.57007 0.0842,0.67505 0.14038,0.780028 0.19654,0.885008 0.19653,0.899658 0.14038,0.843506 0.0842,0.787353 0.0281,0.731202 -0.12818,1.300047 -0.38452,1.243895 -0.64087,1.187745 -0.89721,1.131594 -1.09253,0.993648 -1.24634,0.773924 -1.40015,0.554201 -1.55395,0.334477 0,-0.170898 0,-0.170899 0,-0.170898 0,-0.170899 1.06567,-0.324711 0.91186,-0.407716 0.75806,-0.490721 0.60425,-0.573727 0.46997,-0.632327 0.33569,-0.666505 0.20142,-0.700682 0.0671,-0.734861 -0.0281,-0.62256 -0.0842,-0.715332 -0.14038,-0.808105 -0.19653,-0.900878 -0.19653,-0.902099 -0.14038,-0.831298 -0.0842,-0.760499 -0.0281,-0.689698 0.0903,-0.987546 0.27099,-0.970458 0.45166,-0.95337 0.63233,-0.936282 0.82031,-0.875239 0.99609,-0.770262 1.17187,-0.665285 1.34767,-0.560308 -1.32325,-0.571283 -1.15723,-0.678709 -0.99121,-0.786134 -0.82519,-0.893561 -0.64942,-0.95214 -0.46387,-0.961912 -0.27831,-0.971682 -0.0928,-0.981454 0.0281,-0.698232 0.0842,-0.766598 0.14038,-0.834964 0.19653,-0.903331 0.19653,-0.900867 0.14038,-0.808101 0.0842,-0.715336 0.0281,-0.622571 -0.0671,-0.726305 -0.20142,-0.694575 -0.33569,-0.662846 -0.46997,-0.631117 -0.60425,-0.58104 -0.75806,-0.493159 -0.91186,-0.405278 -1.06567,-0.317398"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:connector-curvature="0"
id="path3227"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
d="m 865.54138,50.607159 0.21973,0 0.21973,0 0.21972,0 0.21973,0 -0.11964,1.201178 -0.28077,1.064455 -0.44189,0.927732 -0.60301,0.79101 -0.72145,0.623784 -0.79712,0.445558 -0.8728,0.267332 -0.94848,0.08911 -0.45777,-0.01831 -0.47485,-0.05493 -0.49194,-0.09155 -0.50903,-0.128178 -0.72266,-0.246577 -1.13282,-0.427244 -1.54296,-0.607912 -1.95312,-0.788579 -1.39527,-0.546869 -1.17798,-0.390623 -0.96069,-0.234377 -0.74341,-0.07813 -0.65674,0.0525 -0.60303,0.157473 -0.54931,0.262449 -0.49561,0.367425 -0.43457,0.485846 -0.36621,0.617677 -0.29785,0.74951 -0.22949,0.881342 -0.21484,0 -0.21485,0 -0.21484,0 -0.21485,0 0.13427,-1.240229 0.28565,-1.083982 0.43702,-0.927736 0.58838,-0.77149 0.69336,-0.615227 0.75195,-0.439451 0.81055,-0.263674 0.86914,-0.0879 0.43212,0.0171 0.43701,0.05127 0.4419,0.08545 0.44678,0.119621 1.09497,0.345466 1.25366,0.450442 1.41235,0.555417 1.57105,0.660394 1.53686,0.61524 1.29028,0.439455 1.0437,0.26367 0.79713,0.08788 0.70311,-0.05859 0.64453,-0.175779 0.58595,-0.292971 0.52735,-0.410162 0.44677,-0.520009 0.34423,-0.622557 0.2417,-0.725102 0.13917,-0.827644"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 200 KiB

BIN
www/img/logo/doodle3d.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

BIN
www/img/logo/pencil.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -2,21 +2,16 @@
<html>
<head>
<title>Doodle3D</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="icon" type="image/ico" href="./favicon_alt.ico"/>
<link rel="apple-touch-icon-precomposed" href="./img/webpage_icons/apple-touch-icon-144x144-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" href="./img/webpage_icons/apple-touch-icon-144x144-precomposed.png" sizes="144x144" />
<meta id="Viewport" name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<!--link href="css/styles.css" rel="stylesheet" media="screen"-->
<!--link href="css/debug.css" rel="stylesheet" media="screen"-->
<link href="css/styles.min.css" rel="stylesheet" media="screen">
<link href="css/debug.min.css" rel="stylesheet" media="screen">
<!-- <link href="http://jquerytools.org/media/css/rangeinput/skin1.css" rel="stylesheet" media="screen"> -->
</head>
<body>
<div id="landscape" class="clearfix">
@ -30,20 +25,25 @@
<!-- left panel -->
<div class="leftpanel shadowright">
<div class='sidebutton shadowright'></div>
<!-- <div class='sidebutton shadowright'></div> -->
<img class="btnNew btn" src="img/buttons/btnNew.png" /><br/>
<div class="btnsPrevNext" style="text-align:center">
<img class="btnPrevious btn disabled" src="img/buttons/btnLeft.png">
<img class="btnNext btn disabled" src="img/buttons/btnRight.png">
<!-- <div id="txtSketch"></div> -->
</div>
<img class="btnSave btn" src="img/buttons/btnSave.png" /><br/>
<img class="btnOops btn" src="img/buttons/btnOops.png" /><br/>
<img class="btnAdd btn" src="img/buttons/btnAdd.png" /><br/>
<div class="buttonGroup buttonGroupAdd">
<img class="btnWordArt btn" src="img/buttons/btnWordArt.png" />
<img class="btnShape btn" src="img/buttons/btnShape.png" />
</div>
</div>
<!-- right panel -->
<div class="rightpanel shadowleft">
<!--<div class='sidebutton shadowleft'></div>-->
<img class="btnPrint btn clearfix" src="img/buttons/btnPrint.png" />
<img class="btnStop btn clearfix disabled" src="img/buttons/btnStop.png" />
@ -57,56 +57,86 @@
<canvas id="thermometerCanvas" width="90" height="120"></canvas>
</div>
</div>
<div id="verticalShapes">
<img class="btn btnVertical btnStraight" src="img/buttons/btnStraight.png"/>
<img class="btn btnVertical btnDiv" src="img/buttons/btnDiv.png"/>
<img class="btn btnVertical btnConv" src="img/buttons/btnConv.png"/>
<img class="btn btnVertical btnSine" src="img/buttons/btnSine.png"/>
<!-- <div><img class="verticalshape straight" src="img/vertical_shape_icons/straight.png" /></div>
<div><img class="verticalshape diverging" src="img/vertical_shape_icons/diverging.png" /></div>
<div><img class="verticalshape converging" src="img/vertical_shape_icons/converging.png" /></div>
<div><img class="verticalshape sinus" src="img/vertical_shape_icons/sinus.png" /></div> -->
</div>
<div class="btnsSettingsInfo">
<img class="btnSettings btn" src="img/buttons/btnSettings.png">
<img class="btnInfo btn" src="img/buttons/btnInfo.png">
</div>
</div>
<div id="message"></div>
<!-- center panel -->
<div class="centerpanel">
<div class="logopanel">
<div class="d3dlogo" onclick="location.reload()"></div>
<div class="logopanel" onclick="location.reload()">
<img class="pencil" src="img/logo/pencil.png"/>
<img class="logo" src="img/logo/doodle3d.png"/>
</div>
<div class="drawareacontainer">
<div id="canvasContainers">
<div id="mycanvasContainer">
<canvas id="mycanvas"></canvas>
</div>
<div id="previewContainer">
<canvas id="preview"></canvas>
</div>
</div>
<canvas id="preview_tmp"></canvas>
<div id="verticalShapes">
<div><img class="verticalshape straight" src="img/vertical_shape_icons/straight.png" /></div>
<div><img class="verticalshape diverging" src="img/vertical_shape_icons/diverging.png" /></div>
<div><img class="verticalshape converging" src="img/vertical_shape_icons/converging.png" /></div>
<div><img class="verticalshape sinus" src="img/vertical_shape_icons/sinus.png" /></div>
</div>
</div>
<div class="bottompanel">
<div class="manipulationBtns clearfix">
<div id="btnsUpDown">
<img class="manipulationBtn" id="btnMoveUp" src="img/buttons/btnUp.png" />
<img class="manipulationBtn" id="btnMoveDown" src="img/buttons/btnDown.png" />
</div>
<div id="btnsTurnLeftRight">
<img class="manipulationBtn" id="btnTwistLeft" src="img/buttons/btnTurnLeft.png" />
<img class="manipulationBtn" id="btnTwistRight" src="img/buttons/btnTurnRight.png" />
</div>
</div>
</div>
<img class="btnEditClosed btn" src="img/buttons/btnEditClosed.png" />
<img class="btnEditOpen btn" src="img/buttons/btnEditOpen.png" />
</div>
</div>
<div id="debug_textArea">
<!-- <textarea rows="5" cols="60" id="textdump"></textarea> -->
<button onclick="settingsWindow.downloadGcode()">Download gcode</button>
</div>
<div id="debug_display">
<div id="debug_display"></div>
<div class="popupMask"></div>
<div class="popup popupWordArt">
<div class="content">
<h1>Add WordArt</h1>
Please enter your text:<br>
<input class="txtWordArt" type="text"/>
<img class="btn btnWordArtOk" src="img/buttons/btnOk.png">
</div>
</div>
<div class="popup popupShape">
<div class="content">
<h1>Add a new shape</h1>
<div class="columnRight">
<img class="btn btnShapeMin" src="img/buttons/btnMin.png" />
<img class="btn btnShapePlus" src="img/buttons/btnPlus.png" />
<img class="btn btnShapeOk" src="img/buttons/btnOk.png">
</div>
<canvas class="shapePreview" width="150" height="150"></canvas><br/>
<div class="lblShapeResolution"></div>
</div>
</div>
<div id="contentOverlay">
<div id="settings">
<div class="toppanel">
@ -125,42 +155,20 @@
</div>
</div>
</div>
<div id="portrait">
<img class="vertImage" src="img/bg_vertical.png"/>
</div>
<div id="helpContainer"></div>
<script src="js/libs/jquery-1-9-1.min.js"></script>
<!-- <script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script> -->
<script src="js/libs/jquery-cookie.min.js"></script>
<!--<script src="js/jquery.scrollTo-min.js"></script>-->
<!--<script src="js/libs/imagesloaded-pkgd.min.js"></script>-->
<!--<script src="../js_src/libs/jquery-joyride-2-1.js"></script>-->
<script src="js/libs/jquery-joyride-2-1.min.js"></script>
<script src="js/libs/jquery-coolfieldset.min.js"></script>
<script src="js/libs/FileSaver.min.js"></script>
<!--<script src="js/doodle3d-client.js"></script>-->
<script src="js/libs/jquery-fastclick.min.js"></script>
<script src="js/doodle3d-client.min.js"></script>
<!-- DEBUG -->
<!--
<script src="../js_src/SettingsWindow.js"></script>
<script src="../js_src/UpdatePanel.js"></script>
<script src="../js_src/d3dServerInterfacing.js"></script>
<script src="../js_src/verticalShapes.js"></script>
<script src="../js_src/buttonbehaviors.js"></script>
<script src="../js_src/canvasDrawing.js"></script>
<script src="../js_src/previewRendering.js"></script>
<script src="../js_src/gcodeGenerating.js"></script>
<script src="../js_src/init_layout.js"></script>
<script src="../js_src/Printer.js"></script>
<script src="../js_src/Progressbar.js"></script>
<script src="../js_src/Thermometer.js"></script>
<script src="../js_src/utils.js"></script>
<script src="../js_src/sketches.js"></script>
<script src="../js_src/Help.js"></script>
<script src="../js_src/sidebar.js"></script>
<script src="../js_src/Message.js"></script>
<script src="../js_src/main.js"></script>
-->
</body>
</html>