Printrun/testfiles/belt_pulley3.skeinforge.lar...

656 lines
141 KiB
XML

<?xml version='1.0' standalone='no'?>
<!--Written in KDevelop (http://www.kdevelop.org/)-->
<svg baseProfile='full' contentScriptType='text/ecmascript' contentStyleType='text/css' height='4003.518px' onload='init()' preserveAspectRatio='xMidYMid meet' version='1.0' width='516.0px' xmlns='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:slice='http://www.reprap.org/slice' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'>
<metadata>
<slice:layers id='sliceData' controlBoxHeight='720' controlBoxWidth='240' decimalPlacesCarried='4' edgeWidth='0.72' layerHeight='0.4' margin='20' marginTop='60' maxX='11.919' maxY='11.919' maxZ='10.0' minX='-11.919' minY='-11.919' minZ='-2.0' procedureName='carve' svgMinWidth='516' template='svg_layer' textHeight='22.5' unitScale='3.7' version='0.1' yAxisPointingUpward='true' />
</metadata>
<script type='text/ecmascript'>
<![CDATA[
globalMetadata = document.getElementsByTagNameNS('http://www.reprap.org/slice', 'layers')[0];
globalSliceMinX = globalMetadata.getAttribute('minX') * 1;
globalSliceMaxX = globalMetadata.getAttribute('maxX') * 1;
globalSliceMinY = globalMetadata.getAttribute('minY') * 1;
globalSliceMaxY = globalMetadata.getAttribute('maxY') * 1;
globalSliceMinZ = globalMetadata.getAttribute('minZ') * 1;
globalSliceMaxZ = globalMetadata.getAttribute('maxZ') * 1;
//Control var's
globalLayerIndex = 0; //Number of currently viewed layer (zero index)
globalLatitude = 60.0;
globalLongitude = 45.0;
globalControlBoxHeight = globalMetadata.getAttribute('controlBoxHeight') * 1;
globalControlBoxWidth = globalMetadata.getAttribute('controlBoxWidth') * 1;
globalSliding = false;
globalObserving = false
//Display var's
globalMargin = globalMetadata.getAttribute('margin') * 1;
globalMarginTop = globalMetadata.getAttribute('marginTop') * 1;
globalDimensionX = globalSliceMaxX - globalSliceMinX;
globalDimensionY = globalSliceMaxY - globalSliceMinY;
globalDimensionZ = globalSliceMaxZ - globalSliceMinZ;
magnitudeXYSquared = globalDimensionX * globalDimensionX + globalDimensionY * globalDimensionY;
globalDimensionMagnitude = Math.sqrt(magnitudeXYSquared + globalDimensionZ * globalDimensionZ);
globalGlobeTravelRadian = 0.0;
globalGlobeInnerObserverRadius = 0.0;
globalTextHeight = globalMetadata.getAttribute('textHeight') * 1.0;
globalUnitScale = globalMetadata.getAttribute('unitScale') * 1.0;
globalXOffset = globalControlBoxWidth + globalMargin + globalMargin;
globalYOffset = globalMargin + globalMarginTop;
globalZoomScale = 1.0; //Default 1:1 may need smaller scale for large objects
globalScale = globalUnitScale * globalZoomScale;
//Globals to be set in init
globalLayers = [];
globalSlider = 0;
globalThumb = 0;
globalThumbRadius = 0.0;
globalSliderWidthMinusDiameter = 0.0;
function changeScale(newScale) {
globalZoomScale = newScale;
globalScale = globalUnitScale * globalZoomScale;
if (globalZoomScale >=1) { //dont scale line thickness for large display scale
document.getElementById('layerData').setAttributeNS(null, 'stroke-width', 2.0 / (globalScale));
}
}
function changeScaleIso(newScale) {
changeScale(newScale);
viewIso();
}
function changeScaleLayer(newScale) {
changeScale(newScale);
viewLayer();
}
function changeScaleScroll(newScale) {
changeScale(newScale);
viewScroll();
}
function displayIso(latitude, longitude) {
latitude = Math.max(0.0, latitude);
latitude = Math.min(89.0, latitude);
globalLatitude = Math.round(latitude);
globalLongitude = Math.round((longitude + 540.0) % 360.0) - 180.0;
latitudeRadians = getRadians(globalLatitude);
longitudeWiddershinsRadians = getRadians(90.0 - globalLongitude);
unitX = Math.cos(longitudeWiddershinsRadians);
unitY = Math.sin(longitudeWiddershinsRadians);
latitudeOverLayers = globalDimensionZ / globalLayers.length;
globalOneOverUnitScaleString = (1.0 / globalUnitScale).toString();
yScale = -1.0 * globalScale * Math.cos(latitudeRadians);
scaleRotateCenterString = ' scale(' + globalScale + ', ' + yScale + ')';
scaleRotateCenterString += ' rotate(' + (-1.0 * globalLongitude).toString() + ')';
centerX = (-0.5 * globalDimensionX - globalSliceMinX).toString();
centerY = (-0.5 * globalDimensionY - globalSliceMinY).toString();
scaleRotateCenterString += ' translate(' + centerX + ', ' + centerY + ')';
x = 0.5 * globalDimensionMagnitude * globalScale + globalXOffset;
halfLengthMinusOne = 0.5 * (globalLayers.length - 1);
for (var i in globalLayers) {
latitudeZSin = Math.sin(latitudeRadians) * (i - halfLengthMinusOne) * latitudeOverLayers
y = globalScale * (0.5 * globalDimensionMagnitude - latitudeZSin) + globalYOffset;
// y = globalDimensionY * globalScale + globalYOffset - i * unitY * latitudeOverLayers;
transformString = ' translate(' + x + ', ' + y + ')';
globalLayers[i].setAttributeNS(null, 'transform', transformString + scaleRotateCenterString);
}
setText('latitudeIso', 'Latitude: ' + globalLatitude.toString() + '°');
setText('longitudeIso', 'Longitude: ' + globalLongitude.toString() + '°');
globeMoveableRadius = globalGlobeTravelRadian * latitudeRadians + globalGlobeInnerObserverRadius;
globalObserver.setAttribute('cx', globalGlobeCenterX + unitX * globeMoveableRadius);
globalObserver.setAttribute('cy', globalGlobeCenterY - unitY * globeMoveableRadius);
}
function displayIsoByLatitude(latitude) {
displayIso(latitude, globalLongitude);
}
function displayIsoByLongitude(longitude) {
displayIso(globalLatitude, longitude);
}
function displayLayer(layerNum) {
if (globalLayers.length <= 1) {
document.getElementById('maxIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
document.getElementById('minIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
globalSlider.setAttributeNS(null, 'visibility', 'hidden');
globalThumb.setAttributeNS(null, 'visibility', 'hidden');
}
if (layerNum <= 0) {
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
}
else {
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
}
if (layerNum >= globalLayers.length - 1) {
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
}
else {
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
}
if (layerNum < 0 || layerNum >= globalLayers.length) {
return
}
globalLayers[globalLayerIndex].setAttributeNS(null, 'visibility', 'hidden');
currentLayerElement = globalLayers[layerNum]
currentLayerElement.setAttributeNS(null, 'visibility', 'visible');
globalLayerIndex = layerNum;
setText('currentIndexLayer', 'Layer: ' + globalLayerIndex.toString() + ', ' + currentLayerElement.getAttribute('id'));
//Slider
if (!globalSliding) {
placeThumb(globalSliderWidthMinusDiameter / (globalLayers.length - 1) * globalLayerIndex + globalThumbRadius);
}
}
function getDegrees(radians) {
return radians / Math.PI * 180.0;
}
function getRadians(degrees) {
return degrees / 180.0 * Math.PI;
}
function getScaleTransformString(scale) {
scaleTransformString = 'scale(' + scale + ' ' + (scale * - 1)
return scaleTransformString + ') translate(' + (globalSliceMinX * - 1) + ' ' + (globalSliceMinY * - 1) + ')';
}
function getWidth() {
return (globalDimensionX * globalScale) + globalXOffset
}
function hideElements(elementNames) {
for (var elementNameIndex in elementNames) {
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'hidden');
}
}
function init() {
//Find only layer groups
globe = document.getElementById('globe');
globalGlobeCenterX = globe.getAttribute('cx') * 1;
globalGlobeCenterXWindow = globalGlobeCenterX + globalMargin;
globalGlobeCenterY = globe.getAttribute('cy') * 1;
globalGlobeCenterYWindow = globalGlobeCenterX + globalMarginTop;
globalObserver = document.getElementById('observer');
globeRadius = globe.getAttribute('r') * 1.0;
observerRadius = globalObserver.getAttribute('r') * 1.0;
globalGlobeInnerObserverRadius = document.getElementById('cover').getAttribute('r') * 1.0 + observerRadius;
globalGlobeTravelRadian = getDegrees(globeRadius - globalGlobeInnerObserverRadius - observerRadius) / 89.0;
globalSlider = document.getElementById('slider');
globalSliderX = globalSlider.getAttribute('x') * 1;
globalSliderXWindow = globalSliderX + globalMargin
globalThumb = document.getElementById('thumb');
globalThumbRadius = globalThumb.getAttribute('r') * 1;
globalSliderWidthMinusRadius = globalSlider.getAttribute('width') * 1 - globalThumbRadius;
globalSliderWidthMinusDiameter = globalSliderWidthMinusRadius - globalThumbRadius;
var allGroups = document.getElementsByTagName('g');
for (var i = 0; i < allGroups.length; i++) {
if (allGroups[i].id.indexOf('z:') == 0) {
globalLayers.push(allGroups[i]);
}
}
//Slider
layerControlBox = document.getElementById('layerControlBox');
layerControlBox.addEventListener('mouseup', sliderUp, false);
layerControlBox.addEventListener('mousemove', sliderMove, false);
globalSlider.addEventListener('mousedown', sliderDownMove, false);
globalThumb.addEventListener('mousedown', sliderDownMove, false);
//Observer
isoControlBox = document.getElementById('isoControlBox');
isoControlBox.addEventListener('mouseup', observerUp, false);
isoControlBox.addEventListener('mousemove', observerMove, false);
globe.addEventListener('mousedown', observerDownMove, false);
globalObserver.addEventListener('mousedown', observerDownMove, false);
//Control box data
setText('maxIndexLayer', globalLayers.length - 1);
changeScaleLayer(globalZoomScale);
}
function observerDown(event) {
globalObserving = true;
}
function observerDownMove(event) {
globalObserving = true;
observerMove(event);
}
function observerMove(event) {
if (!globalObserving) {
return;
}
observerX = event.clientX - globalGlobeCenterXWindow + window.pageXOffset;
observerY = event.clientY - globalGlobeCenterYWindow + window.pageYOffset;
distanceFromCenter = Math.sqrt(observerX * observerX + observerY * observerY);
latitudeRadians = (distanceFromCenter - globalGlobeInnerObserverRadius) / globalGlobeTravelRadian;
longitudeRadians = Math.atan2(observerX, -observerY);
displayIso(getDegrees(latitudeRadians), getDegrees(longitudeRadians));
}
function observerUp(event) {
globalObserving = false;
}
function placeThumb(value) {
if (globalLayers.length > 1) {
globalThumb.setAttribute('cx', globalSliderX + value);
}
}
function setScaleText(scaleID) {
setText(scaleID, ': ' + globalZoomScale);
}
function setSVG(width, height) {
rootSVG = document.getElementsByTagName('svg')[0];
svgMinWidth = globalMetadata.getAttribute('svgMinWidth') * 1;
height = Math.max(globalControlBoxHeight + globalMargin + globalMarginTop, height);
width = Math.max(svgMinWidth, width);
rootSVG.setAttributeNS(null, 'width', width + 'px')
rootSVG.setAttributeNS(null, 'height', height + 'px')
}
function setText(id, str) {
e = document.getElementById(id)
if (e != null)
e.firstChild.nodeValue = str;
}
function showElements(elementNames) {
for (var elementNameIndex in elementNames) {
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'visible');
}
}
function sliderDown(event) {
globalSliding = true;
}
function sliderDownMove(event) {
globalSliding = true;
sliderMove(event);
}
function sliderMove(event) {
if (!globalSliding) {
return;
}
value = event.clientX - globalSliderXWindow + window.pageXOffset;
if (value >= globalThumbRadius && value <= globalSliderWidthMinusRadius) {
placeThumb(value);
zoneWidth = globalSliderWidthMinusDiameter / (globalLayers.length);
newLayer = Math.round((value - globalThumbRadius - 0.5 * zoneWidth) / zoneWidth)
if (newLayer != globalLayerIndex) {
displayLayer(newLayer)
}
}
}
function sliderUp(event) {
globalSliding = false;
}
function viewIso() {
height = (globalDimensionMagnitude * globalScale) + globalYOffset;
setSVG((globalDimensionMagnitude * globalScale) + globalXOffset, height);
for (var i in globalLayers) {
// globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalMargin + ' ' + height + ')');
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', '');
}
}
//show control box
hideElements(['decreaseLayerIndex', 'increaseLayerIndex', 'isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollControlBox', 'scrollViewLabel']);
showElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollViewButton']);
displayIso(globalLatitude, globalLongitude);
setScaleText('scaleIso');
}
function viewLayer() {
//Set svg size and view port
height = (globalDimensionY * globalScale) + globalYOffset;
setSVG(getWidth(), height);
//move and hide all layers
for (var i in globalLayers) {
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalXOffset + ' ' + height + ')');
globalLayers[i].setAttributeNS(null, 'visibility', 'hidden');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
transform = getScaleTransformString(globalScale);
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
}
}
//show control box
hideElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
showElements(['isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
//show current layer
displayLayer(globalLayerIndex);
setScaleText('scaleLayer');
}
function viewScroll() {
//Set svg size and view port
yDimensionScale = globalDimensionY * globalScale
singleHeight = (globalMargin + yDimensionScale + globalTextHeight)
height = globalLayers.length * singleHeight + globalMargin + globalMargin + globalYOffset;
setSVG(getWidth(), height);
//move and show all layers
for (var i in globalLayers) {
x = globalXOffset;
y = i * singleHeight + yDimensionScale + globalYOffset;
transform = getScaleTransformString(globalScale);
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + x + ', ' + y + ')');
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
}
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'visible');
}
//show control box
hideElements(['isoControlBox', 'isoViewLabel', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
showElements(['isoViewButton', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
setScaleText('scaleScroll');
}
]]>
</script>
<title >belt_pulley3.stl - Slice Layers</title>
<!--Begin Layer Data -->
<g id='layerData' fill='#556B2F' fill-rule='evenodd' font-family='Arial' font-size='15px' font-weight='bold' inkscape:groupmode='layer' inkscape:label='Slice Layers' stroke='#00F' stroke-width='0.54px'>
<!--id='sliceElementTemplate' must be there or else the slice template will not be found-->
<g id='z:-1.8' inkscape:groupmode='layer' inkscape:label='Layer 0, z:-1.8' transform='translate(280.0, 168.2006)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate-1.8' fill='#000' stroke='none' y='15' >Layer 0, z:-1.8</text>
<path d='M -11.6336 1.4126 L -11.719 0.0 L -11.6336 -1.4126 L -11.3785 -2.8045 L -10.9575 -4.1556 L -10.3766 -5.4461 L -9.6445 -6.6571 L -8.7718 -7.7711 L -7.7711 -8.7718 L -6.6571 -9.6445 L -5.4461 -10.3766 L -4.1556 -10.9575 L -2.8045 -11.3785 L -1.4126 -11.6336 L 0.0 -11.719 L 1.4126 -11.6336 L 2.8045 -11.3785 L 4.1556 -10.9575 L 5.4461 -10.3766 L 6.6571 -9.6445 L 7.7711 -8.7718 L 8.7718 -7.7711 L 9.6445 -6.6571 L 10.3766 -5.4461 L 10.9575 -4.1556 L 11.3785 -2.8045 L 11.6336 -1.4126 L 11.719 0.0 L 11.6336 1.4126 L 11.3785 2.8045 L 10.9575 4.1556 L 10.3766 5.4461 L 9.6445 6.6571 L 8.7718 7.7711 L 7.7711 8.7718 L 6.6571 9.6445 L 5.4461 10.3766 L 4.1556 10.9575 L 2.8045 11.3785 L 1.4126 11.6336 L 0.0 11.719 L -1.4126 11.6336 L -2.8045 11.3785 L -4.1556 10.9575 L -5.4461 10.3766 L -6.6571 9.6445 L -7.7711 8.7718 L -8.7718 7.7711 L -9.6445 6.6571 L -10.3766 5.4461 L -10.9575 4.1556 L -11.3785 2.8045 z M -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8343 -1.5 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:-1.4' inkscape:groupmode='layer' inkscape:label='Layer 1, z:-1.4' transform='translate(280.0, 298.9012)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate-1.4' fill='#000' stroke='none' y='15' >Layer 1, z:-1.4</text>
<path d='M -11.2365 1.3644 L -11.319 0.0 L -11.2365 -1.3644 L -10.9901 -2.7088 L -10.5835 -4.0138 L -10.0224 -5.2602 L -9.3154 -6.4299 L -8.4724 -7.5059 L -7.5059 -8.4724 L -6.4299 -9.3154 L -5.2602 -10.0224 L -4.0138 -10.5835 L -2.7088 -10.9901 L -1.3644 -11.2365 L 0.0 -11.319 L 1.3644 -11.2365 L 2.7088 -10.9901 L 4.0138 -10.5835 L 5.2602 -10.0224 L 6.4299 -9.3154 L 7.5059 -8.4724 L 8.4724 -7.5059 L 9.3154 -6.4299 L 10.0224 -5.2602 L 10.5835 -4.0138 L 10.9901 -2.7088 L 11.2365 -1.3644 L 11.319 0.0 L 11.2365 1.3644 L 10.9901 2.7088 L 10.5835 4.0138 L 10.0224 5.2602 L 9.3154 6.4299 L 8.4724 7.5059 L 7.5059 8.4724 L 6.4299 9.3154 L 5.2602 10.0224 L 4.0138 10.5835 L 2.7088 10.9901 L 1.3644 11.2365 L 0.0 11.319 L -1.3644 11.2365 L -2.7088 10.9901 L -4.0138 10.5835 L -5.2602 10.0224 L -6.4299 9.3154 L -7.5059 8.4724 L -8.4724 7.5059 L -9.3154 6.4299 L -10.0224 5.2602 L -10.5835 4.0138 L -10.9901 2.7088 z M -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8343 -1.5 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:-1.0' inkscape:groupmode='layer' inkscape:label='Layer 2, z:-1.0' transform='translate(280.0, 429.6018)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate-1.0' fill='#000' stroke='none' y='15' >Layer 2, z:-1.0</text>
<path d='M -10.8394 1.3161 L -10.919 0.0 L -10.8394 -1.3161 L -10.6017 -2.6131 L -10.2095 -3.8719 L -9.6683 -5.0743 L -8.9862 -6.2027 L -8.173 -7.2406 L -7.2406 -8.173 L -6.2027 -8.9862 L -5.0743 -9.6683 L -3.8719 -10.2095 L -2.6131 -10.6017 L -1.3161 -10.8394 L 0.0 -10.919 L 1.3161 -10.8394 L 2.6131 -10.6017 L 3.8719 -10.2095 L 5.0743 -9.6683 L 6.2027 -8.9862 L 7.2406 -8.173 L 8.173 -7.2406 L 8.9862 -6.2027 L 9.6683 -5.0743 L 10.2095 -3.8719 L 10.6017 -2.6131 L 10.8394 -1.3161 L 10.919 0.0 L 10.8394 1.3161 L 10.6017 2.6131 L 10.2095 3.8719 L 9.6683 5.0743 L 8.9862 6.2027 L 8.173 7.2406 L 7.2406 8.173 L 6.2027 8.9862 L 5.0743 9.6683 L 3.8719 10.2095 L 2.6131 10.6017 L 1.3161 10.8394 L 0.0 10.919 L -1.3161 10.8394 L -2.6131 10.6017 L -3.8719 10.2095 L -5.0743 9.6683 L -6.2027 8.9862 L -7.2406 8.173 L -8.173 7.2406 L -8.9862 6.2027 L -9.6683 5.0743 L -10.2095 3.8719 L -10.6017 2.6131 z M -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8343 -1.5 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:-0.6' inkscape:groupmode='layer' inkscape:label='Layer 3, z:-0.6' transform='translate(280.0, 560.3024)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate-0.6' fill='#000' stroke='none' y='15' >Layer 3, z:-0.6</text>
<path d='M -10.4423 1.2679 L -10.519 0.0 L -10.4423 -1.2679 L -10.2133 -2.5174 L -9.8355 -3.7301 L -9.3141 -4.8884 L -8.657 -5.9755 L -7.8736 -6.9754 L -6.9754 -7.8736 L -5.9755 -8.657 L -4.8884 -9.3141 L -3.7301 -9.8355 L -2.5174 -10.2133 L -1.2679 -10.4423 L 0.0 -10.519 L 1.2679 -10.4423 L 2.5174 -10.2133 L 3.7301 -9.8355 L 4.8884 -9.3141 L 5.9755 -8.657 L 6.9754 -7.8736 L 7.8736 -6.9754 L 8.657 -5.9755 L 9.3141 -4.8884 L 9.8355 -3.7301 L 10.2133 -2.5174 L 10.4423 -1.2679 L 10.519 0.0 L 10.4423 1.2679 L 10.2133 2.5174 L 9.8355 3.7301 L 9.3141 4.8884 L 8.657 5.9755 L 7.8736 6.9754 L 6.9754 7.8736 L 5.9755 8.657 L 4.8884 9.3141 L 3.7301 9.8355 L 2.5174 10.2133 L 1.2679 10.4423 L 0.0 10.519 L -1.2679 10.4423 L -2.5174 10.2133 L -3.7301 9.8355 L -4.8884 9.3141 L -5.9755 8.657 L -6.9754 7.8736 L -7.8736 6.9754 L -8.657 5.9755 L -9.3141 4.8884 L -9.8355 3.7301 L -10.2133 2.5174 z M -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8343 -1.5 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:-0.2' inkscape:groupmode='layer' inkscape:label='Layer 4, z:-0.2' transform='translate(280.0, 691.003)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate-0.2' fill='#000' stroke='none' y='15' >Layer 4, z:-0.2</text>
<path d='M -10.0452 1.2197 L -10.119 0.0 L -10.0452 -1.2197 L -9.825 -2.4216 L -9.4614 -3.5883 L -8.9599 -4.7025 L -8.3278 -5.7482 L -7.5742 -6.7101 L -6.7101 -7.5742 L -5.7482 -8.3278 L -4.7025 -8.9599 L -3.5883 -9.4614 L -2.4216 -9.825 L -1.2197 -10.0452 L 0.0 -10.119 L 1.2197 -10.0452 L 2.4216 -9.825 L 3.5883 -9.4614 L 4.7025 -8.9599 L 5.7482 -8.3278 L 6.7101 -7.5742 L 7.5742 -6.7101 L 8.3278 -5.7482 L 8.9599 -4.7025 L 9.4614 -3.5883 L 9.825 -2.4216 L 10.0452 -1.2197 L 10.119 0.0 L 10.0452 1.2197 L 9.825 2.4216 L 9.4614 3.5883 L 8.9599 4.7025 L 8.3278 5.7482 L 7.5742 6.7101 L 6.7101 7.5742 L 5.7482 8.3278 L 4.7025 8.9599 L 3.5883 9.4614 L 2.4216 9.825 L 1.2197 10.0452 L 0.0 10.119 L -1.2197 10.0452 L -2.4216 9.825 L -3.5883 9.4614 L -4.7025 8.9599 L -5.7482 8.3278 L -6.7101 7.5742 L -7.5742 6.7101 L -8.3278 5.7482 L -8.9599 4.7025 L -9.4614 3.5883 L -9.825 2.4216 z M -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8343 -1.5 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:0.2' inkscape:groupmode='layer' inkscape:label='Layer 5, z:0.2' transform='translate(280.0, 821.7036)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate0.2' fill='#000' stroke='none' y='15' >Layer 5, z:0.2</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -6.8343 -1.5 L -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:0.6' inkscape:groupmode='layer' inkscape:label='Layer 6, z:0.6' transform='translate(280.0, 952.4042)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate0.6' fill='#000' stroke='none' y='15' >Layer 6, z:0.6</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -6.8343 -1.5 L -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:1.0' inkscape:groupmode='layer' inkscape:label='Layer 7, z:1.0' transform='translate(280.0, 1083.1048)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.0' fill='#000' stroke='none' y='15' >Layer 7, z:1.0</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -6.8343 -1.5 L -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:1.4' inkscape:groupmode='layer' inkscape:label='Layer 8, z:1.4' transform='translate(280.0, 1213.8054)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.4' fill='#000' stroke='none' y='15' >Layer 8, z:1.4</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -6.8343 -1.5 L -4.0 -1.5 L -4.0 1.5 L -6.8343 1.5 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5 6.8343 L -1.5 4.0 L 1.5 4.0 L 1.5 6.8343 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8343 1.5 L 4.0 1.5 L 4.0 -1.5 L 6.8343 -1.5 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5 -6.8343 L 1.5 -4.0 L -1.5 -4.0 L -1.5 -6.8343 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:1.8' inkscape:groupmode='layer' inkscape:label='Layer 9, z:1.8' transform='translate(280.0, 1344.506)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.8' fill='#000' stroke='none' y='15' >Layer 9, z:1.8</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:2.2' inkscape:groupmode='layer' inkscape:label='Layer 10, z:2.2' transform='translate(280.0, 1475.2066)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate2.2' fill='#000' stroke='none' y='15' >Layer 10, z:2.2</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:2.6' inkscape:groupmode='layer' inkscape:label='Layer 11, z:2.6' transform='translate(280.0, 1605.9072)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate2.6' fill='#000' stroke='none' y='15' >Layer 11, z:2.6</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:3.0' inkscape:groupmode='layer' inkscape:label='Layer 12, z:3.0' transform='translate(280.0, 1736.6078)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.0' fill='#000' stroke='none' y='15' >Layer 12, z:3.0</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:3.4' inkscape:groupmode='layer' inkscape:label='Layer 13, z:3.4' transform='translate(280.0, 1867.3084)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.4' fill='#000' stroke='none' y='15' >Layer 13, z:3.4</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:3.8' inkscape:groupmode='layer' inkscape:label='Layer 14, z:3.8' transform='translate(280.0, 1998.009)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.8' fill='#000' stroke='none' y='15' >Layer 14, z:3.8</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:4.2' inkscape:groupmode='layer' inkscape:label='Layer 15, z:4.2' transform='translate(280.0, 2128.7096)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate4.2' fill='#000' stroke='none' y='15' >Layer 15, z:4.2</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:4.6' inkscape:groupmode='layer' inkscape:label='Layer 16, z:4.6' transform='translate(280.0, 2259.4102)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate4.6' fill='#000' stroke='none' y='15' >Layer 16, z:4.6</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:5.0' inkscape:groupmode='layer' inkscape:label='Layer 17, z:5.0' transform='translate(280.0, 2390.1108)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.0' fill='#000' stroke='none' y='15' >Layer 17, z:5.0</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:5.4' inkscape:groupmode='layer' inkscape:label='Layer 18, z:5.4' transform='translate(280.0, 2520.8114)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.4' fill='#000' stroke='none' y='15' >Layer 18, z:5.4</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:5.8' inkscape:groupmode='layer' inkscape:label='Layer 19, z:5.8' transform='translate(280.0, 2651.512)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.8' fill='#000' stroke='none' y='15' >Layer 19, z:5.8</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:6.2' inkscape:groupmode='layer' inkscape:label='Layer 20, z:6.2' transform='translate(280.0, 2782.2126)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate6.2' fill='#000' stroke='none' y='15' >Layer 20, z:6.2</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:6.6' inkscape:groupmode='layer' inkscape:label='Layer 21, z:6.6' transform='translate(280.0, 2912.9132)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate6.6' fill='#000' stroke='none' y='15' >Layer 21, z:6.6</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:7.0' inkscape:groupmode='layer' inkscape:label='Layer 22, z:7.0' transform='translate(280.0, 3043.6138)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.0' fill='#000' stroke='none' y='15' >Layer 22, z:7.0</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:7.4' inkscape:groupmode='layer' inkscape:label='Layer 23, z:7.4' transform='translate(280.0, 3174.3144)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.4' fill='#000' stroke='none' y='15' >Layer 23, z:7.4</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:7.8' inkscape:groupmode='layer' inkscape:label='Layer 24, z:7.8' transform='translate(280.0, 3305.015)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.8' fill='#000' stroke='none' y='15' >Layer 24, z:7.8</text>
<path d='M 6.5465 -5.4316 L 7.4007 -4.1942 L 7.5077 -4.1115 L 7.6329 -4.0639 L 7.7683 -4.0565 L 8.631 -4.2685 L 8.7664 -4.2612 L 8.8915 -4.2135 L 8.9985 -4.1306 L 9.2745 -3.5174 L 9.4746 -2.8753 L 9.4495 -2.7423 L 9.3875 -2.6237 L 9.2909 -2.5283 L 8.5048 -2.1139 L 8.4081 -2.0197 L 8.3461 -1.901 L 8.3208 -1.7671 L 8.5021 -0.2745 L 8.5585 -0.1515 L 8.6471 -0.0512 L 8.7637 0.0182 L 9.626 0.2314 L 9.7426 0.3008 L 9.8312 0.4012 L 9.8874 0.5243 L 9.8468 1.1956 L 9.7256 1.8571 L 9.6415 1.9632 L 9.5314 2.0394 L 9.4017 2.079 L 8.513 2.0806 L 8.3836 2.1191 L 8.2735 2.1953 L 8.189 2.3022 L 7.6558 3.7081 L 7.6486 3.8432 L 7.6805 3.9732 L 7.7514 4.0888 L 8.4159 4.6783 L 8.4868 4.794 L 8.5186 4.924 L 8.5112 5.0592 L 8.1633 5.6347 L 7.7485 6.1641 L 7.6248 6.219 L 7.4919 6.2353 L 7.3586 6.21 L 6.571 5.7985 L 6.4385 5.7724 L 6.3056 5.7888 L 6.1811 5.8441 L 5.0556 6.8411 L 4.9865 6.9574 L 4.9543 7.0873 L 4.9633 7.2227 L 5.2778 8.0535 L 5.2868 8.1889 L 5.2546 8.3188 L 5.1852 8.435 L 4.6097 8.783 L 3.9964 9.059 L 3.8613 9.0501 L 3.7361 9.0028 L 3.6298 8.9184 L 3.1236 8.188 L 3.0184 8.1034 L 2.8932 8.0561 L 2.7572 8.0472 L 1.2973 8.407 L 1.1821 8.4778 L 1.0931 8.5779 L 1.0382 8.702 L 0.9306 9.5837 L 0.8757 9.7078 L 0.7868 9.8079 L 0.6713 9.8785 L 0.0 9.9191 L -0.6713 9.8785 L -0.7868 9.8079 L -0.8757 9.7078 L -0.9306 9.5837 L -1.0393 8.7017 L -1.0931 8.5779 L -1.1821 8.4778 L -1.2984 8.4067 L -2.7582 8.0469 L -2.8932 8.0561 L -3.0184 8.1034 L -3.1247 8.1877 L -3.6298 8.9184 L -3.7361 9.0028 L -3.8613 9.0501 L -3.9964 9.059 L -4.6097 8.783 L -5.1852 8.435 L -5.2546 8.3188 L -5.2868 8.1889 L -5.2778 8.0535 L -4.9641 7.222 L -4.9543 7.0873 L -4.9865 6.9574 L -5.0564 6.8404 L -6.1819 5.8434 L -6.3056 5.7888 L -6.4385 5.7724 L -6.5718 5.7977 L -7.3586 6.21 L -7.4919 6.2353 L -7.6248 6.219 L -7.7485 6.1641 L -8.1633 5.6347 L -8.5112 5.0592 L -8.5186 4.924 L -8.4868 4.794 L -8.4159 4.6783 L -7.7518 4.0878 L -7.6805 3.9732 L -7.6486 3.8432 L -7.6562 3.7071 L -8.1893 2.3012 L -8.2735 2.1953 L -8.3836 2.1191 L -8.5134 2.0796 L -9.4017 2.079 L -9.5314 2.0394 L -9.6415 1.9632 L -9.7256 1.8571 L -9.8468 1.1956 L -9.8874 0.5243 L -9.8312 0.4012 L -9.7426 0.3008 L -9.626 0.2314 L -8.7635 0.0171 L -8.6471 -0.0512 L -8.5585 -0.1515 L -8.502 -0.2756 L -8.3207 -1.7682 L -8.3461 -1.901 L -8.4081 -2.0197 L -8.5046 -2.115 L -9.2909 -2.5283 L -9.3875 -2.6237 L -9.4495 -2.7423 L -9.4746 -2.8753 L -9.2745 -3.5174 L -8.9985 -4.1306 L -8.8915 -4.2135 L -8.7664 -4.2612 L -8.631 -4.2685 L -7.7677 -4.0574 L -7.6329 -4.0639 L -7.5077 -4.1115 L -7.4 -4.1951 L -6.5459 -5.4325 L -6.5066 -5.5619 L -6.5064 -5.6958 L -6.5476 -5.825 L -7.0517 -6.5564 L -7.0929 -6.6857 L -7.0927 -6.8196 L -7.0531 -6.949 L -6.5776 -7.4246 L -6.0482 -7.8393 L -5.9149 -7.863 L -5.782 -7.8471 L -5.6586 -7.7906 L -4.9924 -7.2025 L -4.87 -7.1455 L -4.7371 -7.1296 L -4.6029 -7.1535 L -3.2715 -7.8522 L -3.1766 -7.9486 L -3.1142 -8.067 L -3.0906 -8.2006 L -3.1971 -9.0825 L -3.1735 -9.2161 L -3.1111 -9.3346 L -3.0159 -9.4308 L -2.3738 -9.6309 L -1.7123 -9.7521 L -1.5833 -9.7111 L -1.473 -9.6353 L -1.39 -9.5279 L -1.0734 -8.6976 L -0.9915 -8.5902 L -0.8812 -8.5144 L -0.7512 -8.4732 L 0.7523 -8.4732 L 0.8812 -8.5144 L 0.9915 -8.5902 L 1.0744 -8.6976 L 1.39 -9.5279 L 1.473 -9.6353 L 1.5833 -9.7111 L 1.7123 -9.7521 L 2.3738 -9.6309 L 3.0159 -9.4308 L 3.1111 -9.3346 L 3.1735 -9.2161 L 3.1971 -9.0825 L 3.0916 -8.2001 L 3.1142 -8.067 L 3.1766 -7.9486 L 3.2725 -7.8517 L 4.6038 -7.153 L 4.7371 -7.1296 L 4.87 -7.1455 L 4.9933 -7.202 L 5.6586 -7.7906 L 5.782 -7.8471 L 5.9149 -7.863 L 6.0482 -7.8393 L 6.5776 -7.4246 L 7.0531 -6.949 L 7.0927 -6.8196 L 7.0929 -6.6857 L 7.0517 -6.5564 L 6.5482 -5.8241 L 6.5064 -5.6958 L 6.5066 -5.5619 z M -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 L -6.956 -0.7838 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:8.2' inkscape:groupmode='layer' inkscape:label='Layer 25, z:8.2' transform='translate(280.0, 3435.7156)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate8.2' fill='#000' stroke='none' y='15' >Layer 25, z:8.2</text>
<path d='M 3.5883 9.4614 L 2.4216 9.825 L 1.2197 10.0452 L 0.0 10.119 L -1.2197 10.0452 L -2.4216 9.825 L -3.5883 9.4614 L -4.7025 8.9599 L -5.7482 8.3278 L -6.7101 7.5742 L -7.5742 6.7101 L -8.3278 5.7482 L -8.9599 4.7025 L -9.4614 3.5883 L -9.825 2.4216 L -10.0452 1.2197 L -10.119 0.0 L -10.0452 -1.2197 L -9.825 -2.4216 L -9.4614 -3.5883 L -8.9599 -4.7025 L -8.3278 -5.7482 L -7.5742 -6.7101 L -6.7101 -7.5742 L -5.7482 -8.3278 L -4.7025 -8.9599 L -3.5883 -9.4614 L -2.4216 -9.825 L -1.2197 -10.0452 L 0.0 -10.119 L 1.2197 -10.0452 L 2.4216 -9.825 L 3.5883 -9.4614 L 4.7025 -8.9599 L 5.7482 -8.3278 L 6.7101 -7.5742 L 7.5742 -6.7101 L 8.3278 -5.7482 L 8.9599 -4.7025 L 9.4614 -3.5883 L 9.825 -2.4216 L 10.0452 -1.2197 L 10.119 0.0 L 10.0452 1.2197 L 9.825 2.4216 L 9.4614 3.5883 L 8.9599 4.7025 L 8.3278 5.7482 L 7.5742 6.7101 L 6.7101 7.5742 L 5.7482 8.3278 L 4.7025 8.9599 z M -6.956 -0.7838 L -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:8.6' inkscape:groupmode='layer' inkscape:label='Layer 26, z:8.6' transform='translate(280.0, 3566.4162)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate8.6' fill='#000' stroke='none' y='15' >Layer 26, z:8.6</text>
<path d='M 3.7301 9.8355 L 2.5174 10.2133 L 1.2679 10.4423 L 0.0 10.519 L -1.2679 10.4423 L -2.5174 10.2133 L -3.7301 9.8355 L -4.8884 9.3141 L -5.9755 8.657 L -6.9754 7.8736 L -7.8736 6.9754 L -8.657 5.9755 L -9.3141 4.8884 L -9.8355 3.7301 L -10.2133 2.5174 L -10.4423 1.2679 L -10.519 0.0 L -10.4423 -1.2679 L -10.2133 -2.5174 L -9.8355 -3.7301 L -9.3141 -4.8884 L -8.657 -5.9755 L -7.8736 -6.9754 L -6.9754 -7.8736 L -5.9755 -8.657 L -4.8884 -9.3141 L -3.7301 -9.8355 L -2.5174 -10.2133 L -1.2679 -10.4423 L 0.0 -10.519 L 1.2679 -10.4423 L 2.5174 -10.2133 L 3.7301 -9.8355 L 4.8884 -9.3141 L 5.9755 -8.657 L 6.9754 -7.8736 L 7.8736 -6.9754 L 8.657 -5.9755 L 9.3141 -4.8884 L 9.8355 -3.7301 L 10.2133 -2.5174 L 10.4423 -1.2679 L 10.519 0.0 L 10.4423 1.2679 L 10.2133 2.5174 L 9.8355 3.7301 L 9.3141 4.8884 L 8.657 5.9755 L 7.8736 6.9754 L 6.9754 7.8736 L 5.9755 8.657 L 4.8884 9.3141 z M -6.956 -0.7838 L -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:9.0' inkscape:groupmode='layer' inkscape:label='Layer 27, z:9.0' transform='translate(280.0, 3697.1168)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.0' fill='#000' stroke='none' y='15' >Layer 27, z:9.0</text>
<path d='M 3.8719 10.2095 L 2.6131 10.6017 L 1.3161 10.8394 L 0.0 10.919 L -1.3161 10.8394 L -2.6131 10.6017 L -3.8719 10.2095 L -5.0743 9.6683 L -6.2027 8.9862 L -7.2406 8.173 L -8.173 7.2406 L -8.9862 6.2027 L -9.6683 5.0743 L -10.2095 3.8719 L -10.6017 2.6131 L -10.8394 1.3161 L -10.919 0.0 L -10.8394 -1.3161 L -10.6017 -2.6131 L -10.2095 -3.8719 L -9.6683 -5.0743 L -8.9862 -6.2027 L -8.173 -7.2406 L -7.2406 -8.173 L -6.2027 -8.9862 L -5.0743 -9.6683 L -3.8719 -10.2095 L -2.6131 -10.6017 L -1.3161 -10.8394 L 0.0 -10.919 L 1.3161 -10.8394 L 2.6131 -10.6017 L 3.8719 -10.2095 L 5.0743 -9.6683 L 6.2027 -8.9862 L 7.2406 -8.173 L 8.173 -7.2406 L 8.9862 -6.2027 L 9.6683 -5.0743 L 10.2095 -3.8719 L 10.6017 -2.6131 L 10.8394 -1.3161 L 10.919 0.0 L 10.8394 1.3161 L 10.6017 2.6131 L 10.2095 3.8719 L 9.6683 5.0743 L 8.9862 6.2027 L 8.173 7.2406 L 7.2406 8.173 L 6.2027 8.9862 L 5.0743 9.6683 z M -6.956 -0.7838 L -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:9.4' inkscape:groupmode='layer' inkscape:label='Layer 28, z:9.4' transform='translate(280.0, 3827.8174)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.4' fill='#000' stroke='none' y='15' >Layer 28, z:9.4</text>
<path d='M 4.0138 10.5835 L 2.7088 10.9901 L 1.3644 11.2365 L 0.0 11.319 L -1.3644 11.2365 L -2.7088 10.9901 L -4.0138 10.5835 L -5.2602 10.0224 L -6.4299 9.3154 L -7.5059 8.4724 L -8.4724 7.5059 L -9.3154 6.4299 L -10.0224 5.2602 L -10.5835 4.0138 L -10.9901 2.7088 L -11.2365 1.3644 L -11.319 0.0 L -11.2365 -1.3644 L -10.9901 -2.7088 L -10.5835 -4.0138 L -10.0224 -5.2602 L -9.3154 -6.4299 L -8.4724 -7.5059 L -7.5059 -8.4724 L -6.4299 -9.3154 L -5.2602 -10.0224 L -4.0138 -10.5835 L -2.7088 -10.9901 L -1.3644 -11.2365 L 0.0 -11.319 L 1.3644 -11.2365 L 2.7088 -10.9901 L 4.0138 -10.5835 L 5.2602 -10.0224 L 6.4299 -9.3154 L 7.5059 -8.4724 L 8.4724 -7.5059 L 9.3154 -6.4299 L 10.0224 -5.2602 L 10.5835 -4.0138 L 10.9901 -2.7088 L 11.2365 -1.3644 L 11.319 0.0 L 11.2365 1.3644 L 10.9901 2.7088 L 10.5835 4.0138 L 10.0224 5.2602 L 9.3154 6.4299 L 8.4724 7.5059 L 7.5059 8.4724 L 6.4299 9.3154 L 5.2602 10.0224 z M -6.956 -0.7838 L -7.0 0.0 L -6.956 0.7838 L -6.8245 1.5576 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5576 6.8245 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8245 1.5576 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8245 -1.5576 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5576 -6.8245 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8245 -1.5576 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
<g id='z:9.8' inkscape:groupmode='layer' inkscape:label='Layer 29, z:9.8' transform='translate(280.0, 3958.518)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.8' fill='#000' stroke='none' y='15' >Layer 29, z:9.8</text>
<path d='M 4.1556 10.9575 L 2.8045 11.3785 L 1.4126 11.6336 L 0.0 11.719 L -1.4126 11.6336 L -2.8045 11.3785 L -4.1556 10.9575 L -5.4461 10.3766 L -6.6571 9.6445 L -7.7711 8.7718 L -8.7718 7.7711 L -9.6445 6.6571 L -10.3766 5.4461 L -10.9575 4.1556 L -11.3785 2.8045 L -11.6336 1.4126 L -11.719 0.0 L -11.6336 -1.4126 L -11.3785 -2.8045 L -10.9575 -4.1556 L -10.3766 -5.4461 L -9.6445 -6.6571 L -8.7718 -7.7711 L -7.7711 -8.7718 L -6.6571 -9.6445 L -5.4461 -10.3766 L -4.1556 -10.9575 L -2.8045 -11.3785 L -1.4126 -11.6336 L 0.0 -11.719 L 1.4126 -11.6336 L 2.8045 -11.3785 L 4.1556 -10.9575 L 5.4461 -10.3766 L 6.6571 -9.6445 L 7.7711 -8.7718 L 8.7718 -7.7711 L 9.6445 -6.6571 L 10.3766 -5.4461 L 10.9575 -4.1556 L 11.3785 -2.8045 L 11.6336 -1.4126 L 11.719 0.0 L 11.6336 1.4126 L 11.3785 2.8045 L 10.9575 4.1556 L 10.3766 5.4461 L 9.6445 6.6571 L 8.7718 7.7711 L 7.7711 8.7718 L 6.6571 9.6445 L 5.4461 10.3766 z M -6.956 -0.7838 L -7.0 0.0 L -6.956 0.7838 L -6.8247 1.5563 L -6.6072 2.3119 L -6.3068 3.0372 L -5.9271 3.7242 L -5.4728 4.3644 L -4.9497 4.9497 L -4.3644 5.4728 L -3.7242 5.9271 L -3.0372 6.3068 L -2.3119 6.6072 L -1.5567 6.8247 L -0.7838 6.956 L 0.0 7.0 L 0.7838 6.956 L 1.5576 6.8245 L 2.3119 6.6072 L 3.0372 6.3068 L 3.7242 5.9271 L 4.3644 5.4728 L 4.9497 4.9497 L 5.4728 4.3644 L 5.9271 3.7242 L 6.3068 3.0372 L 6.6072 2.3119 L 6.8247 1.5563 L 6.956 0.7838 L 7.0 0.0 L 6.956 -0.7838 L 6.8247 -1.5563 L 6.6072 -2.3119 L 6.3068 -3.0372 L 5.9271 -3.7242 L 5.4728 -4.3644 L 4.9497 -4.9497 L 4.3644 -5.4728 L 3.7242 -5.9271 L 3.0372 -6.3068 L 2.3119 -6.6072 L 1.5576 -6.8245 L 0.7838 -6.956 L 0.0 -7.0 L -0.7838 -6.956 L -1.5567 -6.8247 L -2.3119 -6.6072 L -3.0372 -6.3068 L -3.7242 -5.9271 L -4.3644 -5.4728 L -4.9497 -4.9497 L -5.4728 -4.3644 L -5.9271 -3.7242 L -6.3068 -3.0372 L -6.6072 -2.3119 L -6.8247 -1.5563 z' transform='scale(3.7, -3.7) translate(11.919, 11.919)' />
</g>
</g>
<!--End Layer Data-->
<!--beginningOfControlSection='true' must be there or else the control boxes will be carved-->
<g id='controls' beginningOfControlSection='true' inkscape:groupmode='layer' inkscape:label='Controls'>
<!--id='isoControlBox' must be there so that the controls could be removed if necessary-->
<g id='isoControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<circle id='globe' cx='120' cy='120' fill='gray' r='100' />
<circle id='cover' cx='120' cy='120' fill='silver' r='33' />
<circle id='observer' fill='darkslateblue' r='12' />
<text id='latitudeIso' x='20' y='260' >Latitude</text>
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude-1.0)' x='198' y='260' >&lt;</text>
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude+1.0)' x='213' y='260' >&gt;</text>
<text id='longitudeIso' x='20' y='280' >Longitude</text>
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude-1.0)' x='198' y='280' >&lt;</text>
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude+1.0)' x='213' y='280' >&gt;</text>
<text x='20' y='300' >Scale</text>
<text id='scaleIso' x='65' y='300' >1</text>
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXIso' y='20' >X: -11.919 mm</text>
<text id='minYIso' y='40' >Y: -11.919 mm</text>
<text id='minZIso' y='60' >Z: -2.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXIso' y='20' >X: 11.919 mm</text>
<text id='maxYIso' y='40' >Y: 11.919 mm</text>
<text id='maxZIso' y='60' >Z: 10.0 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXIso' y='20' >X: 23.838 mm</text>
<text id='dimYIso' y='40' >Y: 23.838 mm</text>
<text id='dimZIso' y='60' >Z: 12.0 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerHeightIso' y='20' >Layer Height: 0.4 mm</text>
<text id='numberOfLayersIso' y='40' >Number of Layers: 30</text>
<text id='volumeIso' y='60' >Volume: 1.8836 cm3</text>
</g>
</g>
<!--id='layerControlBox' must be there so that the controls could be removed if necessary-->
<g id='layerControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
<!--<path stroke='#000' stroke-width='3' d='M 20 20 h5 l-5 -10 l-5 10 h5 v35 h35 v-5 l10 5 l-10 5 v-5 h-35 z'/>-->
<text text-anchor='middle' x='68' y='64' >Y</text>
<text x='165' y='166' >X</text>
<text id='minIndexLayer' x='20' y='245' >0</text>
<rect id='slider' fill='gray' height='24' width='170' x='32' y='230' />
<circle id='thumb' cx='42' cy='242' fill='darkslateblue' r='12' />
<text id='maxIndexLayer' x='203' y='245' >1</text>
<text id='currentIndexLayer' x='20' y='280' >Layer</text>
<text id='decreaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex-1)' x='198' y='280' >&lt;</text>
<text id='increaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex+1)' x='213' y='280' >&gt;</text>
<text x='20' y='300' >Scale</text>
<text id='scaleLayer' x='65' y='300' >1</text>
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXLayer' y='20' >X: -11.919 mm</text>
<text id='minYLayer' y='40' >Y: -11.919 mm</text>
<text id='minZLayer' y='60' >Z: -2.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXLayer' y='20' >X: 11.919 mm</text>
<text id='maxYLayer' y='40' >Y: 11.919 mm</text>
<text id='maxZLayer' y='60' >Z: 10.0 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXLayer' y='20' >X: 23.838 mm</text>
<text id='dimYLayer' y='40' >Y: 23.838 mm</text>
<text id='dimZLayer' y='60' >Z: 12.0 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerHeightLayer' y='20' >Layer Height: 0.4 mm</text>
<text id='numberOfLayersLayer' y='40' >Number of Layers: 30</text>
<text id='volumeLayer' y='60' >Volume: 1.8836 cm3</text>
</g>
</g>
<!--id='scrollControlBox' must be there so that the controls could be removed if necessary-->
<g id='scrollControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='visible'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
<text text-anchor='middle' x='68' y='64' >Y</text>
<text x='165' y='166' >X</text>
<text x='20' y='300' >Scale</text>
<text id='scaleScroll' x='65' y='300' >: 1</text>
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXScroll' y='20' >X: -11.919 mm</text>
<text id='minYScroll' y='40' >Y: -11.919 mm</text>
<text id='minZScroll' y='60' >Z: -2.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXScroll' y='20' >X: 11.919 mm</text>
<text id='maxYScroll' y='40' >Y: 11.919 mm</text>
<text id='maxZScroll' y='60' >Z: 10.0 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXScroll' y='20' >X: 23.838 mm</text>
<text id='dimYScroll' y='40' >Y: 23.838 mm</text>
<text id='dimZScroll' y='60' >Z: 12.0 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerHeightScroll' y='20' >Layer Height: 0.4 mm</text>
<text id='numberOfLayersScroll' y='40' >Number of Layers: 30</text>
<text id='volumeScroll' y='60' >Volume: 1.8836 cm3</text>
</g>
</g>
<text id='isoViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewIso()' text-anchor='middle' visibility='visible' x='80' y='30' >[Iso View]</text>
<text id='isoViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='76' y='30' >Iso View</text>
<text id='layerViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewLayer()' text-anchor='middle' visibility='visible' x='240' y='30' >[Layer View]</text>
<text id='layerViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='236' y='30' >Layer View</text>
<text id='scrollViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewScroll()' text-anchor='middle' visibility='hidden' x='400' y='30' >[Scroll View]</text>
<text id='scrollViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='visible' x='396' y='30' >Scroll View</text>
</g>
</svg>