1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

OP-1435 V/A/Consumed displayed on top if Battery module enabled and no PathPlan

This commit is contained in:
Laurent Lalanne 2014-09-19 22:45:53 +02:00
parent 0742eb6b77
commit d31c8bff9c
2 changed files with 1119 additions and 642 deletions

View File

@ -4,6 +4,9 @@ Item {
id: info
property variant sceneSize
// Uninitialised, Ok, Warning, Critical, Error
property variant batColors : ["black", "green", "orange", "red", "red"]
//
// Waypoint functions
//
@ -11,6 +14,8 @@ Item {
property real posEast_old
property real posNorth_old
property real total_distance
property real total_distance_km
property bool init_dist: false
property real home_heading: 180/3.1415 * Math.atan2(TakeOffLocation.East - PositionState.East,
@ -44,7 +49,8 @@ Item {
function compute_distance(posEast,posNorth) {
if (total_distance == 0 && !init_dist){init_dist = "true"; posEast_old = posEast; posNorth_old = posNorth;}
if (posEast > posEast_old+3 || posEast < posEast_old-3 || posNorth > posNorth_old+3 || posNorth < posNorth_old-3) {
total_distance += Math.sqrt(Math.pow((posEast - posEast_old ),2) + Math.pow((posNorth - posNorth_old),2));
total_distance += Math.sqrt(Math.pow((posEast - posEast_old ),2) + Math.pow((posNorth - posNorth_old),2));
total_distance_km = total_distance / 1000;
posEast_old = posEast;
posNorth_old = posNorth;
@ -107,7 +113,16 @@ Item {
//
// Waypoint Info (Top)
//
// Only visible when PathPlan is active (WP loaded)
SvgElementImage {
sceneSize: info.sceneSize
elementName: "waypoint-labels"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: SystemAlarms.Alarm_PathPlan == 1
}
SvgElementPositionItem {
sceneSize: info.sceneSize
@ -157,6 +172,7 @@ Item {
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: SystemAlarms.Alarm_PathPlan == 1
MouseArea { id: total_dist_mouseArea; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
@ -242,6 +258,153 @@ Item {
}
}
//
// Battery Info (Top)
// Only visible when PathPlan not active and Battery module enabled
SvgElementImage {
sceneSize: info.sceneSize
elementName: "topbattery-labels"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
}
SvgElementPositionItem {
id: topbattery_volt
sceneSize: info.sceneSize
elementName: "topbattery-volt-text"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
Rectangle {
anchors.fill: parent
color: info.batColors[SystemAlarms.Alarm_Battery]
border.color: info.batColors[SystemAlarms.Alarm_Battery]
border.width: topbattery_volt.width * 0.02
Text {
text: FlightBatteryState.Voltage.toFixed(2)
anchors.centerIn: parent
color: "white"
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.6)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
id: topbattery_amp
sceneSize: info.sceneSize
elementName: "topbattery-amp-text"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
Rectangle {
anchors.fill: parent
color: info.batColors[SystemAlarms.Alarm_Battery]
border.color: info.batColors[SystemAlarms.Alarm_Battery]
border.width: topbattery_volt.width * 0.02
Text {
text: FlightBatteryState.Current.toFixed(2)
anchors.centerIn: parent
color: "white"
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.6)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
id: topbattery_milliamp
sceneSize: info.sceneSize
elementName: "topbattery-milliamp-text"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
Rectangle {
anchors.fill: parent
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
border.color: "white"
border.width: topbattery_volt.width * 0.01
radius: border.width * 4
Text {
text: FlightBatteryState.ConsumedEnergy.toFixed(0)
anchors.centerIn: parent
color: "white"
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.6)
weight: Font.DemiBold
}
}
}
}
//
// Default counter
// Only visible when PathPlan not active
SvgElementImage {
sceneSize: info.sceneSize
elementName: "topbattery-total-distance-label"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: SystemAlarms.Alarm_PathPlan != 1
}
SvgElementPositionItem {
sceneSize: info.sceneSize
elementName: "topbattery-total-distance-text"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: SystemAlarms.Alarm_PathPlan != 1
MouseArea { id: total_dist_mouseArea2; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
Text {
text: total_distance > 1000 ? total_distance_km.toFixed(2) +" Km" : total_distance.toFixed(0)+" m"
anchors.right: parent.right
color: "cyan"
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 1)
weight: Font.DemiBold
}
}
Timer {
interval: 1000; running: true; repeat: true;
onTriggered: {if (GPSPositionSensor.Status == 3) compute_distance(PositionState.East,PositionState.North)}
}
}
SvgElementImage {
id: mask_SatBar
elementName: "satbar-mask"

View File

@ -22,6 +22,32 @@
inkscape:export-ydpi="72">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Send"
style="overflow:visible;">
<path
id="path6885"
style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.3) rotate(180) translate(-2.3,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Mend"
style="overflow:visible;">
<path
id="path6879"
style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.6) rotate(180) translate(0,0)" />
</marker>
<linearGradient
id="linearGradient5144">
<stop
@ -281,11 +307,11 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.0264863"
inkscape:cx="102.91059"
inkscape:cy="114.5056"
inkscape:zoom="3.0375"
inkscape:cx="345.75598"
inkscape:cy="354.61232"
inkscape:document-units="px"
inkscape:current-layer="layer76"
inkscape:current-layer="layer98"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
@ -298,7 +324,7 @@
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:object-nodes="false"
inkscape:object-nodes="true"
inkscape:object-paths="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="false"
@ -309,7 +335,7 @@
inkscape:bbox-paths="true"
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="false"
inkscape:snap-bbox-edge-midpoints="false">
<sodipodi:guide
@ -382,12 +408,12 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="center-line"
d="m -179.5,169.08132 l 997,0"
d="M -179.5,169.08132 L 817.5,169.08132"
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="pitch0"
d="m 266,169.08132 l 106,0"
d="M 266,169.08132 L 372,169.08132"
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
</g>
@ -440,11 +466,11 @@
<path
inkscape:connector-curvature="0"
id="path6182"
d="m 303.37607,149 l 32.7768,0"
d="M 303.37607,149 L 336.15287,149"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 285.77784,129 l 67.97326,0"
d="M 285.77784,129 L 353.7511,129"
id="path6190"
inkscape:connector-curvature="0" />
<g
@ -452,12 +478,12 @@
id="pitch_label10L"
inkscape:label="#pitch_label10L">
<path
d="m 269.90234,132.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
d="M 269.90234,132.49326 L 271.83594,132.49326 L 271.83594,125.81943 L 269.73242,126.2413 L 269.73242,125.16318 L 271.82422,124.7413 L 273.00781,124.7413 L 273.00781,132.49326 L 274.94141,132.49326 L 274.94141,133.48935 L 269.90234,133.48935 L 269.90234,132.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6614"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,125.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,125.5206 C 279.25976,125.52061 278.80078,125.82139 278.49219,126.42294 C 278.1875,127.02061 278.03515,127.921 278.03516,129.12411 C 278.03515,130.32334 278.1875,131.22373 278.49219,131.82529 C 278.80078,132.42294 279.25976,132.72177 279.86914,132.72177 C 280.48242,132.72177 280.9414,132.42294 281.24609,131.82529 C 281.55468,131.22373 281.70898,130.32334 281.70898,129.12411 C 281.70898,127.921 281.55468,127.02061 281.24609,126.42294 C 280.9414,125.82139 280.48242,125.52061 279.86914,125.5206 M 279.86914,124.5831 C 280.8496,124.58311 281.59765,124.97178 282.11328,125.74911 C 282.63281,126.52256 282.89257,127.64756 282.89258,129.12411 C 282.89257,130.59677 282.63281,131.72177 282.11328,132.49911 C 281.59765,133.27255 280.8496,133.65927 279.86914,133.65927 C 278.88867,133.65927 278.13867,133.27255 277.61914,132.49911 C 277.10351,131.72177 276.8457,130.59677 276.8457,129.12411 C 276.8457,127.64756 277.10351,126.52256 277.61914,125.74911 C 278.13867,124.97178 278.88867,124.58311 279.86914,124.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6616"
inkscape:connector-curvature="0" />
@ -466,37 +492,37 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label10R">
<path
d="m 357.90234,132.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
d="M 357.90234,132.49326 L 359.83594,132.49326 L 359.83594,125.81943 L 357.73242,126.2413 L 357.73242,125.16318 L 359.82422,124.7413 L 361.00781,124.7413 L 361.00781,132.49326 L 362.94141,132.49326 L 362.94141,133.48935 L 357.90234,133.48935 L 357.90234,132.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6792"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,125.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,125.5206 C 367.25976,125.52061 366.80078,125.82139 366.49219,126.42294 C 366.1875,127.02061 366.03515,127.921 366.03516,129.12411 C 366.03515,130.32334 366.1875,131.22373 366.49219,131.82529 C 366.80078,132.42294 367.25976,132.72177 367.86914,132.72177 C 368.48242,132.72177 368.9414,132.42294 369.24609,131.82529 C 369.55468,131.22373 369.70898,130.32334 369.70898,129.12411 C 369.70898,127.921 369.55468,127.02061 369.24609,126.42294 C 368.9414,125.82139 368.48242,125.52061 367.86914,125.5206 M 367.86914,124.5831 C 368.8496,124.58311 369.59765,124.97178 370.11328,125.74911 C 370.63281,126.52256 370.89257,127.64756 370.89258,129.12411 C 370.89257,130.59677 370.63281,131.72177 370.11328,132.49911 C 369.59765,133.27255 368.8496,133.65927 367.86914,133.65927 C 366.88867,133.65927 366.13867,133.27255 365.61914,132.49911 C 365.10351,131.72177 364.8457,130.59677 364.8457,129.12411 C 364.8457,127.64756 365.10351,126.52256 365.61914,125.74911 C 366.13867,124.97178 366.88867,124.58311 367.86914,124.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6794"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 303.37607,109 l 32.7768,0"
d="M 303.37607,109 L 336.15287,109"
id="path6304"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path6306"
d="m 285.77784,89 l 67.97326,0"
d="M 285.77784,89 L 353.7511,89"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label20L"
inkscape:label="#pitch_label20L">
<path
d="m 270.7168,92.493256 l 4.13086,0 l 0,0.996093 l -5.55469,0 l 0,-0.996093 c 0.44922,-0.464843 1.06054,-1.087889 1.83398,-1.869141 c 0.77734,-0.785153 1.26562,-1.291011 1.46485,-1.517578 c 0.3789,-0.425777 0.64257,-0.785151 0.79101,-1.078125 c 0.15234,-0.296869 0.22851,-0.587885 0.22852,-0.873047 c -1e-5,-0.464837 -0.16407,-0.843743 -0.49219,-1.136719 c -0.32422,-0.292961 -0.74805,-0.439445 -1.27148,-0.439453 c -0.3711,8e-6 -0.76368,0.06446 -1.17774,0.193359 c -0.41016,0.128914 -0.84961,0.324227 -1.31836,0.585938 l 0,-1.195313 c 0.47656,-0.191397 0.92188,-0.335928 1.33594,-0.433593 c 0.41406,-0.09765 0.79297,-0.146476 1.13672,-0.146485 c 0.90624,9e-6 1.6289,0.226572 2.16797,0.679688 c 0.53905,0.453133 0.80858,1.058601 0.80859,1.816406 c -10e-6,0.359381 -0.0684,0.701178 -0.20508,1.025391 c -0.13282,0.320317 -0.37696,0.699223 -0.73242,1.136718 c -0.0977,0.113286 -0.40821,0.441411 -0.93164,0.984375 c -0.52344,0.539066 -1.26172,1.294924 -2.21484,2.267579"
d="M 270.7168,92.493256 L 274.84766,92.493256 L 274.84766,93.489349 L 269.29297,93.489349 L 269.29297,92.493256 C 269.74219,92.028413 270.35351,91.405367 271.12695,90.624115 C 271.90429,89.838962 272.39257,89.333104 272.5918,89.106537 C 272.9707,88.68076 273.23437,88.321386 273.38281,88.028412 C 273.53515,87.731543 273.61132,87.440527 273.61133,87.155365 C 273.61132,86.690528 273.44726,86.311622 273.11914,86.018646 C 272.79492,85.725685 272.37109,85.579201 271.84766,85.579193 C 271.47656,85.579201 271.08398,85.643653 270.66992,85.772552 C 270.25976,85.901466 269.82031,86.096779 269.35156,86.35849 L 269.35156,85.163177 C 269.82812,84.97178 270.27344,84.827249 270.6875,84.729584 C 271.10156,84.631934 271.48047,84.583108 271.82422,84.583099 C 272.73046,84.583108 273.45312,84.809671 273.99219,85.262787 C 274.53124,85.71592 274.80077,86.321388 274.80078,87.079193 C 274.80077,87.438574 274.73238,87.780371 274.5957,88.104584 C 274.46288,88.424901 274.21874,88.803807 273.86328,89.241302 C 273.76558,89.354588 273.45507,89.682713 272.93164,90.225677 C 272.4082,90.764743 271.66992,91.520601 270.7168,92.493256"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6609"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,85.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 279.86914,85.520599 C 279.25976,85.520607 278.80078,85.821388 278.49219,86.422943 C 278.1875,87.020606 278.03515,87.920996 278.03516,89.124115 C 278.03515,90.323337 278.1875,91.223727 278.49219,91.825287 C 278.80078,92.422944 279.25976,92.721772 279.86914,92.721771 C 280.48242,92.721772 280.9414,92.422944 281.24609,91.825287 C 281.55468,91.223727 281.70898,90.323337 281.70898,89.124115 C 281.70898,87.920996 281.55468,87.020606 281.24609,86.422943 C 280.9414,85.821388 280.48242,85.520607 279.86914,85.520599 M 279.86914,84.583099 C 280.8496,84.583108 281.59765,84.97178 282.11328,85.749115 C 282.63281,86.522559 282.89257,87.647558 282.89258,89.124115 C 282.89257,90.596774 282.63281,91.721773 282.11328,92.499115 C 281.59765,93.272553 280.8496,93.659271 279.86914,93.659271 C 278.88867,93.659271 278.13867,93.272553 277.61914,92.499115 C 277.10351,91.721773 276.8457,90.596774 276.8457,89.124115 C 276.8457,87.647558 277.10351,86.522559 277.61914,85.749115 C 278.13867,84.97178 278.88867,84.583108 279.86914,84.583099"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6611"
inkscape:connector-curvature="0" />
@ -505,36 +531,36 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label20R">
<path
d="m 358.7168,92.493256 l 4.13086,0 l 0,0.996093 l -5.55469,0 l 0,-0.996093 c 0.44922,-0.464843 1.06054,-1.087889 1.83398,-1.869141 c 0.77734,-0.785153 1.26562,-1.291011 1.46485,-1.517578 c 0.3789,-0.425777 0.64257,-0.785151 0.79101,-1.078125 c 0.15234,-0.296869 0.22851,-0.587885 0.22852,-0.873047 c -1e-5,-0.464837 -0.16407,-0.843743 -0.49219,-1.136719 c -0.32422,-0.292961 -0.74805,-0.439445 -1.27148,-0.439453 c -0.3711,8e-6 -0.76368,0.06446 -1.17774,0.193359 c -0.41016,0.128914 -0.84961,0.324227 -1.31836,0.585938 l 0,-1.195313 c 0.47656,-0.191397 0.92188,-0.335928 1.33594,-0.433593 c 0.41406,-0.09765 0.79297,-0.146476 1.13672,-0.146485 c 0.90624,9e-6 1.6289,0.226572 2.16797,0.679688 c 0.53905,0.453133 0.80858,1.058601 0.80859,1.816406 c -10e-6,0.359381 -0.0684,0.701178 -0.20508,1.025391 c -0.13282,0.320317 -0.37696,0.699223 -0.73242,1.136718 c -0.0977,0.113286 -0.40821,0.441411 -0.93164,0.984375 c -0.52344,0.539066 -1.26172,1.294924 -2.21484,2.267579"
d="M 358.7168,92.493256 L 362.84766,92.493256 L 362.84766,93.489349 L 357.29297,93.489349 L 357.29297,92.493256 C 357.74219,92.028413 358.35351,91.405367 359.12695,90.624115 C 359.90429,89.838962 360.39257,89.333104 360.5918,89.106537 C 360.9707,88.68076 361.23437,88.321386 361.38281,88.028412 C 361.53515,87.731543 361.61132,87.440527 361.61133,87.155365 C 361.61132,86.690528 361.44726,86.311622 361.11914,86.018646 C 360.79492,85.725685 360.37109,85.579201 359.84766,85.579193 C 359.47656,85.579201 359.08398,85.643653 358.66992,85.772552 C 358.25976,85.901466 357.82031,86.096779 357.35156,86.35849 L 357.35156,85.163177 C 357.82812,84.97178 358.27344,84.827249 358.6875,84.729584 C 359.10156,84.631934 359.48047,84.583108 359.82422,84.583099 C 360.73046,84.583108 361.45312,84.809671 361.99219,85.262787 C 362.53124,85.71592 362.80077,86.321388 362.80078,87.079193 C 362.80077,87.438574 362.73238,87.780371 362.5957,88.104584 C 362.46288,88.424901 362.21874,88.803807 361.86328,89.241302 C 361.76558,89.354588 361.45507,89.682713 360.93164,90.225677 C 360.4082,90.764743 359.66992,91.520601 358.7168,92.493256"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6787"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,85.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 367.86914,85.520599 C 367.25976,85.520607 366.80078,85.821388 366.49219,86.422943 C 366.1875,87.020606 366.03515,87.920996 366.03516,89.124115 C 366.03515,90.323337 366.1875,91.223727 366.49219,91.825287 C 366.80078,92.422944 367.25976,92.721772 367.86914,92.721771 C 368.48242,92.721772 368.9414,92.422944 369.24609,91.825287 C 369.55468,91.223727 369.70898,90.323337 369.70898,89.124115 C 369.70898,87.920996 369.55468,87.020606 369.24609,86.422943 C 368.9414,85.821388 368.48242,85.520607 367.86914,85.520599 M 367.86914,84.583099 C 368.8496,84.583108 369.59765,84.97178 370.11328,85.749115 C 370.63281,86.522559 370.89257,87.647558 370.89258,89.124115 C 370.89257,90.596774 370.63281,91.721773 370.11328,92.499115 C 369.59765,93.272553 368.8496,93.659271 367.86914,93.659271 C 366.88867,93.659271 366.13867,93.272553 365.61914,92.499115 C 365.10351,91.721773 364.8457,90.596774 364.8457,89.124115 C 364.8457,87.647558 365.10351,86.522559 365.61914,85.749115 C 366.13867,84.97178 366.88867,84.583108 367.86914,84.583099"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6789"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 303.37607,189 l 32.7768,0"
d="M 303.37607,189 L 336.15287,189"
id="path7556"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7642"
d="m 285.77784,249 l 67.97326,0"
d="M 285.77784,249 L 353.7511,249"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-20L">
<path
d="m 270.7168,252.49326 l 4.13086,0 l 0,0.99609 l -5.55469,0 l 0,-0.99609 c 0.44922,-0.46485 1.06054,-1.08789 1.83398,-1.86915 c 0.77734,-0.78515 1.26562,-1.29101 1.46485,-1.51757 c 0.3789,-0.42578 0.64257,-0.78515 0.79101,-1.07813 c 0.15234,-0.29687 0.22851,-0.58788 0.22852,-0.87305 c -1e-5,-0.46483 -0.16407,-0.84374 -0.49219,-1.13671 c -0.32422,-0.29296 -0.74805,-0.43945 -1.27148,-0.43946 c -0.3711,10e-6 -0.76368,0.0645 -1.17774,0.19336 c -0.41016,0.12892 -0.84961,0.32423 -1.31836,0.58594 l 0,-1.19531 c 0.47656,-0.1914 0.92188,-0.33593 1.33594,-0.4336 c 0.41406,-0.0976 0.79297,-0.14647 1.13672,-0.14648 c 0.90624,1e-5 1.6289,0.22657 2.16797,0.67969 c 0.53905,0.45313 0.80858,1.0586 0.80859,1.8164 c -10e-6,0.35938 -0.0684,0.70118 -0.20508,1.02539 c -0.13282,0.32032 -0.37696,0.69923 -0.73242,1.13672 c -0.0977,0.11329 -0.40821,0.44141 -0.93164,0.98438 c -0.52344,0.53906 -1.26172,1.29492 -2.21484,2.26758"
d="M 270.7168,252.49326 L 274.84766,252.49326 L 274.84766,253.48935 L 269.29297,253.48935 L 269.29297,252.49326 C 269.74219,252.02841 270.35351,251.40537 271.12695,250.62411 C 271.90429,249.83896 272.39257,249.3331 272.5918,249.10654 C 272.9707,248.68076 273.23437,248.32139 273.38281,248.02841 C 273.53515,247.73154 273.61132,247.44053 273.61133,247.15536 C 273.61132,246.69053 273.44726,246.31162 273.11914,246.01865 C 272.79492,245.72569 272.37109,245.5792 271.84766,245.57919 C 271.47656,245.5792 271.08398,245.64369 270.66992,245.77255 C 270.25976,245.90147 269.82031,246.09678 269.35156,246.35849 L 269.35156,245.16318 C 269.82812,244.97178 270.27344,244.82725 270.6875,244.72958 C 271.10156,244.63198 271.48047,244.58311 271.82422,244.5831 C 272.73046,244.58311 273.45312,244.80967 273.99219,245.26279 C 274.53124,245.71592 274.80077,246.32139 274.80078,247.07919 C 274.80077,247.43857 274.73238,247.78037 274.5957,248.10458 C 274.46288,248.4249 274.21874,248.80381 273.86328,249.2413 C 273.76558,249.35459 273.45507,249.68271 272.93164,250.22568 C 272.4082,250.76474 271.66992,251.5206 270.7168,252.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6689"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,245.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,245.5206 C 279.25976,245.52061 278.80078,245.82139 278.49219,246.42294 C 278.1875,247.02061 278.03515,247.921 278.03516,249.12411 C 278.03515,250.32334 278.1875,251.22373 278.49219,251.82529 C 278.80078,252.42294 279.25976,252.72177 279.86914,252.72177 C 280.48242,252.72177 280.9414,252.42294 281.24609,251.82529 C 281.55468,251.22373 281.70898,250.32334 281.70898,249.12411 C 281.70898,247.921 281.55468,247.02061 281.24609,246.42294 C 280.9414,245.82139 280.48242,245.52061 279.86914,245.5206 M 279.86914,244.5831 C 280.8496,244.58311 281.59765,244.97178 282.11328,245.74911 C 282.63281,246.52256 282.89257,247.64756 282.89258,249.12411 C 282.89257,250.59677 282.63281,251.72177 282.11328,252.49911 C 281.59765,253.27255 280.8496,253.65927 279.86914,253.65927 C 278.88867,253.65927 278.13867,253.27255 277.61914,252.49911 C 277.10351,251.72177 276.8457,250.59677 276.8457,249.12411 C 276.8457,247.64756 277.10351,246.52256 277.61914,245.74911 C 278.13867,244.97178 278.88867,244.58311 279.86914,244.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6691"
inkscape:connector-curvature="0" />
@ -543,12 +569,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-20R">
<path
d="m 358.7168,252.49326 l 4.13086,0 l 0,0.99609 l -5.55469,0 l 0,-0.99609 c 0.44922,-0.46485 1.06054,-1.08789 1.83398,-1.86915 c 0.77734,-0.78515 1.26562,-1.29101 1.46485,-1.51757 c 0.3789,-0.42578 0.64257,-0.78515 0.79101,-1.07813 c 0.15234,-0.29687 0.22851,-0.58788 0.22852,-0.87305 c -1e-5,-0.46483 -0.16407,-0.84374 -0.49219,-1.13671 c -0.32422,-0.29296 -0.74805,-0.43945 -1.27148,-0.43946 c -0.3711,10e-6 -0.76368,0.0645 -1.17774,0.19336 c -0.41016,0.12892 -0.84961,0.32423 -1.31836,0.58594 l 0,-1.19531 c 0.47656,-0.1914 0.92188,-0.33593 1.33594,-0.4336 c 0.41406,-0.0976 0.79297,-0.14647 1.13672,-0.14648 c 0.90624,1e-5 1.6289,0.22657 2.16797,0.67969 c 0.53905,0.45313 0.80858,1.0586 0.80859,1.8164 c -10e-6,0.35938 -0.0684,0.70118 -0.20508,1.02539 c -0.13282,0.32032 -0.37696,0.69923 -0.73242,1.13672 c -0.0977,0.11329 -0.40821,0.44141 -0.93164,0.98438 c -0.52344,0.53906 -1.26172,1.29492 -2.21484,2.26758"
d="M 358.7168,252.49326 L 362.84766,252.49326 L 362.84766,253.48935 L 357.29297,253.48935 L 357.29297,252.49326 C 357.74219,252.02841 358.35351,251.40537 359.12695,250.62411 C 359.90429,249.83896 360.39257,249.3331 360.5918,249.10654 C 360.9707,248.68076 361.23437,248.32139 361.38281,248.02841 C 361.53515,247.73154 361.61132,247.44053 361.61133,247.15536 C 361.61132,246.69053 361.44726,246.31162 361.11914,246.01865 C 360.79492,245.72569 360.37109,245.5792 359.84766,245.57919 C 359.47656,245.5792 359.08398,245.64369 358.66992,245.77255 C 358.25976,245.90147 357.82031,246.09678 357.35156,246.35849 L 357.35156,245.16318 C 357.82812,244.97178 358.27344,244.82725 358.6875,244.72958 C 359.10156,244.63198 359.48047,244.58311 359.82422,244.5831 C 360.73046,244.58311 361.45312,244.80967 361.99219,245.26279 C 362.53124,245.71592 362.80077,246.32139 362.80078,247.07919 C 362.80077,247.43857 362.73238,247.78037 362.5957,248.10458 C 362.46288,248.4249 362.21874,248.80381 361.86328,249.2413 C 361.76558,249.35459 361.45507,249.68271 360.93164,250.22568 C 360.4082,250.76474 359.66992,251.5206 358.7168,252.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6694"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,245.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,245.5206 C 367.25976,245.52061 366.80078,245.82139 366.49219,246.42294 C 366.1875,247.02061 366.03515,247.921 366.03516,249.12411 C 366.03515,250.32334 366.1875,251.22373 366.49219,251.82529 C 366.80078,252.42294 367.25976,252.72177 367.86914,252.72177 C 368.48242,252.72177 368.9414,252.42294 369.24609,251.82529 C 369.55468,251.22373 369.70898,250.32334 369.70898,249.12411 C 369.70898,247.921 369.55468,247.02061 369.24609,246.42294 C 368.9414,245.82139 368.48242,245.52061 367.86914,245.5206 M 367.86914,244.5831 C 368.8496,244.58311 369.59765,244.97178 370.11328,245.74911 C 370.63281,246.52256 370.89257,247.64756 370.89258,249.12411 C 370.89257,250.59677 370.63281,251.72177 370.11328,252.49911 C 369.59765,253.27255 368.8496,253.65927 367.86914,253.65927 C 366.88867,253.65927 366.13867,253.27255 365.61914,252.49911 C 365.10351,251.72177 364.8457,250.59677 364.8457,249.12411 C 364.8457,247.64756 365.10351,246.52256 365.61914,245.74911 C 366.13867,244.97178 366.88867,244.58311 367.86914,244.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6696"
inkscape:connector-curvature="0" />
@ -556,23 +582,23 @@
<path
inkscape:connector-curvature="0"
id="path7652"
d="m 303.37607,229 l 32.7768,0"
d="M 303.37607,229 L 336.15287,229"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 285.77784,209 l 67.97326,0"
d="M 285.77784,209 L 353.7511,209"
id="path7654"
inkscape:connector-curvature="0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-10L">
<path
d="m 269.90234,212.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
d="M 269.90234,212.49326 L 271.83594,212.49326 L 271.83594,205.81943 L 269.73242,206.2413 L 269.73242,205.16318 L 271.82422,204.7413 L 273.00781,204.7413 L 273.00781,212.49326 L 274.94141,212.49326 L 274.94141,213.48935 L 269.90234,213.48935 L 269.90234,212.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6699"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,205.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,205.5206 C 279.25976,205.52061 278.80078,205.82139 278.49219,206.42294 C 278.1875,207.02061 278.03515,207.921 278.03516,209.12411 C 278.03515,210.32334 278.1875,211.22373 278.49219,211.82529 C 278.80078,212.42294 279.25976,212.72177 279.86914,212.72177 C 280.48242,212.72177 280.9414,212.42294 281.24609,211.82529 C 281.55468,211.22373 281.70898,210.32334 281.70898,209.12411 C 281.70898,207.921 281.55468,207.02061 281.24609,206.42294 C 280.9414,205.82139 280.48242,205.52061 279.86914,205.5206 M 279.86914,204.5831 C 280.8496,204.58311 281.59765,204.97178 282.11328,205.74911 C 282.63281,206.52256 282.89257,207.64756 282.89258,209.12411 C 282.89257,210.59677 282.63281,211.72177 282.11328,212.49911 C 281.59765,213.27255 280.8496,213.65927 279.86914,213.65927 C 278.88867,213.65927 278.13867,213.27255 277.61914,212.49911 C 277.10351,211.72177 276.8457,210.59677 276.8457,209.12411 C 276.8457,207.64756 277.10351,206.52256 277.61914,205.74911 C 278.13867,204.97178 278.88867,204.58311 279.86914,204.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6701"
inkscape:connector-curvature="0" />
@ -581,37 +607,37 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-10R">
<path
d="m 357.90234,212.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
d="M 357.90234,212.49326 L 359.83594,212.49326 L 359.83594,205.81943 L 357.73242,206.2413 L 357.73242,205.16318 L 359.82422,204.7413 L 361.00781,204.7413 L 361.00781,212.49326 L 362.94141,212.49326 L 362.94141,213.48935 L 357.90234,213.48935 L 357.90234,212.49326"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6704"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,205.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,205.5206 C 367.25976,205.52061 366.80078,205.82139 366.49219,206.42294 C 366.1875,207.02061 366.03515,207.921 366.03516,209.12411 C 366.03515,210.32334 366.1875,211.22373 366.49219,211.82529 C 366.80078,212.42294 367.25976,212.72177 367.86914,212.72177 C 368.48242,212.72177 368.9414,212.42294 369.24609,211.82529 C 369.55468,211.22373 369.70898,210.32334 369.70898,209.12411 C 369.70898,207.921 369.55468,207.02061 369.24609,206.42294 C 368.9414,205.82139 368.48242,205.52061 367.86914,205.5206 M 367.86914,204.5831 C 368.8496,204.58311 369.59765,204.97178 370.11328,205.74911 C 370.63281,206.52256 370.89257,207.64756 370.89258,209.12411 C 370.89257,210.59677 370.63281,211.72177 370.11328,212.49911 C 369.59765,213.27255 368.8496,213.65927 367.86914,213.65927 C 366.88867,213.65927 366.13867,213.27255 365.61914,212.49911 C 365.10351,211.72177 364.8457,210.59677 364.8457,209.12411 C 364.8457,207.64756 365.10351,206.52256 365.61914,205.74911 C 366.13867,204.97178 366.88867,204.58311 367.86914,204.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6706"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 303.37607,69 l 32.7768,0"
d="M 303.37607,69 L 336.15287,69"
id="path4493"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4495"
d="m 285.77784,49 l 67.97326,0"
d="M 285.77784,49 L 353.7511,49"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label30L"
inkscape:label="#pitch_label30L">
<path
d="m 273.2832,48.772552 c 0.5664,0.121099 1.00781,0.373052 1.32422,0.75586 c 0.32031,0.382816 0.48046,0.855472 0.48047,1.417969 c -1e-5,0.863283 -0.29688,1.531251 -0.89062,2.003906 c -0.59376,0.472656 -1.43751,0.708984 -2.53125,0.708984 c -0.36719,0 -0.7461,-0.03711 -1.13672,-0.111328 c -0.38672,-0.07031 -0.78711,-0.177734 -1.20118,-0.322266 l 0,-1.142578 c 0.32813,0.191408 0.6875,0.335939 1.07813,0.433594 c 0.39062,0.09766 0.79883,0.146485 1.22461,0.146484 c 0.74218,1e-6 1.30664,-0.146483 1.69336,-0.439453 c 0.39062,-0.292967 0.58593,-0.718748 0.58594,-1.277343 c -1e-5,-0.515622 -0.18165,-0.917966 -0.54493,-1.207032 c -0.35938,-0.292964 -0.86133,-0.439449 -1.50586,-0.439453 l -1.01953,0 l 0,-0.972656 l 1.06641,0 c 0.58203,5e-6 1.02734,-0.115229 1.33594,-0.345703 c 0.30859,-0.234369 0.46288,-0.570307 0.46289,-1.007813 c -1e-5,-0.449211 -0.16016,-0.792961 -0.48047,-1.03125 c -0.31641,-0.242179 -0.77149,-0.363273 -1.36524,-0.363281 c -0.32422,8e-6 -0.67187,0.03516 -1.04296,0.105469 c -0.3711,0.07032 -0.7793,0.179695 -1.22461,0.328125 l 0,-1.054688 c 0.44921,-0.124991 0.86914,-0.218741 1.25976,-0.28125 c 0.39453,-0.06249 0.76562,-0.09374 1.11328,-0.09375 c 0.89844,9e-6 1.60937,0.205087 2.13282,0.615235 c 0.52343,0.406258 0.78515,0.957038 0.78515,1.652343 c 0,0.484382 -0.13868,0.894537 -0.41601,1.230469 c -0.27735,0.332037 -0.67188,0.562505 -1.1836,0.691406"
d="M 273.2832,48.772552 C 273.8496,48.893651 274.29101,49.145604 274.60742,49.528412 C 274.92773,49.911228 275.08788,50.383884 275.08789,50.946381 C 275.08788,51.809664 274.79101,52.477632 274.19727,52.950287 C 273.60351,53.422943 272.75976,53.659271 271.66602,53.659271 C 271.29883,53.659271 270.91992,53.622161 270.5293,53.547943 C 270.14258,53.477633 269.74219,53.370209 269.32812,53.225677 L 269.32812,52.083099 C 269.65625,52.274507 270.01562,52.419038 270.40625,52.516693 C 270.79687,52.614353 271.20508,52.663178 271.63086,52.663177 C 272.37304,52.663178 272.9375,52.516694 273.32422,52.223724 C 273.71484,51.930757 273.91015,51.504976 273.91016,50.946381 C 273.91015,50.430759 273.72851,50.028415 273.36523,49.739349 C 273.00585,49.446385 272.5039,49.2999 271.85937,49.299896 L 270.83984,49.299896 L 270.83984,48.32724 L 271.90625,48.32724 C 272.48828,48.327245 272.93359,48.212011 273.24219,47.981537 C 273.55078,47.747168 273.70507,47.41123 273.70508,46.973724 C 273.70507,46.524513 273.54492,46.180763 273.22461,45.942474 C 272.9082,45.700295 272.45312,45.579201 271.85937,45.579193 C 271.53515,45.579201 271.1875,45.614353 270.81641,45.684662 C 270.44531,45.754982 270.03711,45.864357 269.5918,46.012787 L 269.5918,44.958099 C 270.04101,44.833108 270.46094,44.739358 270.85156,44.676849 C 271.24609,44.614359 271.61718,44.583109 271.96484,44.583099 C 272.86328,44.583108 273.57421,44.788186 274.09766,45.198334 C 274.62109,45.604592 274.88281,46.155372 274.88281,46.850677 C 274.88281,47.335059 274.74413,47.745214 274.4668,48.081146 C 274.18945,48.413183 273.79492,48.643651 273.2832,48.772552"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6604"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,45.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 279.86914,45.520599 C 279.25976,45.520607 278.80078,45.821388 278.49219,46.422943 C 278.1875,47.020606 278.03515,47.920996 278.03516,49.124115 C 278.03515,50.323337 278.1875,51.223727 278.49219,51.825287 C 278.80078,52.422944 279.25976,52.721772 279.86914,52.721771 C 280.48242,52.721772 280.9414,52.422944 281.24609,51.825287 C 281.55468,51.223727 281.70898,50.323337 281.70898,49.124115 C 281.70898,47.920996 281.55468,47.020606 281.24609,46.422943 C 280.9414,45.821388 280.48242,45.520607 279.86914,45.520599 M 279.86914,44.583099 C 280.8496,44.583108 281.59765,44.97178 282.11328,45.749115 C 282.63281,46.522559 282.89257,47.647558 282.89258,49.124115 C 282.89257,50.596774 282.63281,51.721773 282.11328,52.499115 C 281.59765,53.272553 280.8496,53.659271 279.86914,53.659271 C 278.88867,53.659271 278.13867,53.272553 277.61914,52.499115 C 277.10351,51.721773 276.8457,50.596774 276.8457,49.124115 C 276.8457,47.647558 277.10351,46.522559 277.61914,45.749115 C 278.13867,44.97178 278.88867,44.583108 279.86914,44.583099"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6606"
inkscape:connector-curvature="0" />
@ -620,12 +646,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label30R">
<path
d="m 361.2832,48.772552 c 0.5664,0.121099 1.00781,0.373052 1.32422,0.75586 c 0.32031,0.382816 0.48046,0.855472 0.48047,1.417969 c -1e-5,0.863283 -0.29688,1.531251 -0.89062,2.003906 c -0.59376,0.472656 -1.43751,0.708984 -2.53125,0.708984 c -0.36719,0 -0.7461,-0.03711 -1.13672,-0.111328 c -0.38672,-0.07031 -0.78711,-0.177734 -1.20118,-0.322266 l 0,-1.142578 c 0.32813,0.191408 0.6875,0.335939 1.07813,0.433594 c 0.39062,0.09766 0.79883,0.146485 1.22461,0.146484 c 0.74218,1e-6 1.30664,-0.146483 1.69336,-0.439453 c 0.39062,-0.292967 0.58593,-0.718748 0.58594,-1.277343 c -1e-5,-0.515622 -0.18165,-0.917966 -0.54493,-1.207032 c -0.35938,-0.292964 -0.86133,-0.439449 -1.50586,-0.439453 l -1.01953,0 l 0,-0.972656 l 1.06641,0 c 0.58203,5e-6 1.02734,-0.115229 1.33594,-0.345703 c 0.30859,-0.234369 0.46288,-0.570307 0.46289,-1.007813 c -1e-5,-0.449211 -0.16016,-0.792961 -0.48047,-1.03125 c -0.31641,-0.242179 -0.77149,-0.363273 -1.36524,-0.363281 c -0.32422,8e-6 -0.67187,0.03516 -1.04296,0.105469 c -0.3711,0.07032 -0.7793,0.179695 -1.22461,0.328125 l 0,-1.054688 c 0.44921,-0.124991 0.86914,-0.218741 1.25976,-0.28125 c 0.39453,-0.06249 0.76562,-0.09374 1.11328,-0.09375 c 0.89844,9e-6 1.60937,0.205087 2.13282,0.615235 c 0.52343,0.406258 0.78515,0.957038 0.78515,1.652343 c 0,0.484382 -0.13868,0.894537 -0.41601,1.230469 c -0.27735,0.332037 -0.67188,0.562505 -1.1836,0.691406"
d="M 361.2832,48.772552 C 361.8496,48.893651 362.29101,49.145604 362.60742,49.528412 C 362.92773,49.911228 363.08788,50.383884 363.08789,50.946381 C 363.08788,51.809664 362.79101,52.477632 362.19727,52.950287 C 361.60351,53.422943 360.75976,53.659271 359.66602,53.659271 C 359.29883,53.659271 358.91992,53.622161 358.5293,53.547943 C 358.14258,53.477633 357.74219,53.370209 357.32812,53.225677 L 357.32812,52.083099 C 357.65625,52.274507 358.01562,52.419038 358.40625,52.516693 C 358.79687,52.614353 359.20508,52.663178 359.63086,52.663177 C 360.37304,52.663178 360.9375,52.516694 361.32422,52.223724 C 361.71484,51.930757 361.91015,51.504976 361.91016,50.946381 C 361.91015,50.430759 361.72851,50.028415 361.36523,49.739349 C 361.00585,49.446385 360.5039,49.2999 359.85937,49.299896 L 358.83984,49.299896 L 358.83984,48.32724 L 359.90625,48.32724 C 360.48828,48.327245 360.93359,48.212011 361.24219,47.981537 C 361.55078,47.747168 361.70507,47.41123 361.70508,46.973724 C 361.70507,46.524513 361.54492,46.180763 361.22461,45.942474 C 360.9082,45.700295 360.45312,45.579201 359.85937,45.579193 C 359.53515,45.579201 359.1875,45.614353 358.81641,45.684662 C 358.44531,45.754982 358.03711,45.864357 357.5918,46.012787 L 357.5918,44.958099 C 358.04101,44.833108 358.46094,44.739358 358.85156,44.676849 C 359.24609,44.614359 359.61718,44.583109 359.96484,44.583099 C 360.86328,44.583108 361.57421,44.788186 362.09766,45.198334 C 362.62109,45.604592 362.88281,46.155372 362.88281,46.850677 C 362.88281,47.335059 362.74413,47.745214 362.4668,48.081146 C 362.18945,48.413183 361.79492,48.643651 361.2832,48.772552"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6782"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,45.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 367.86914,45.520599 C 367.25976,45.520607 366.80078,45.821388 366.49219,46.422943 C 366.1875,47.020606 366.03515,47.920996 366.03516,49.124115 C 366.03515,50.323337 366.1875,51.223727 366.49219,51.825287 C 366.80078,52.422944 367.25976,52.721772 367.86914,52.721771 C 368.48242,52.721772 368.9414,52.422944 369.24609,51.825287 C 369.55468,51.223727 369.70898,50.323337 369.70898,49.124115 C 369.70898,47.920996 369.55468,47.020606 369.24609,46.422943 C 368.9414,45.821388 368.48242,45.520607 367.86914,45.520599 M 367.86914,44.583099 C 368.8496,44.583108 369.59765,44.97178 370.11328,45.749115 C 370.63281,46.522559 370.89257,47.647558 370.89258,49.124115 C 370.89257,50.596774 370.63281,51.721773 370.11328,52.499115 C 369.59765,53.272553 368.8496,53.659271 367.86914,53.659271 C 366.88867,53.659271 366.13867,53.272553 365.61914,52.499115 C 365.10351,51.721773 364.8457,50.596774 364.8457,49.124115 C 364.8457,47.647558 365.10351,46.522559 365.61914,45.749115 C 366.13867,44.97178 366.88867,44.583108 367.86914,44.583099"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6784"
inkscape:connector-curvature="0" />
@ -633,7 +659,7 @@
<path
inkscape:connector-curvature="0"
id="path4505"
d="m 303.37607,29 l 32.7768,0"
d="M 303.37607,29 L 336.15287,29"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -645,12 +671,12 @@
id="pitch_label40L"
inkscape:label="#pitch_label40L">
<path
d="m 272.94922,5.7725525 l -2.98828,4.6699215 l 2.98828,0 l 0,-4.6699215 m -0.31055,-1.03125 l 1.48828,0 l 0,5.7011715 l 1.24805,0 l 0,0.984375 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.142578 l 3.63867,-5.5429685"
d="M 272.94922,5.7725525 L 269.96094,10.442474 L 272.94922,10.442474 L 272.94922,5.7725525 M 272.63867,4.7413025 L 274.12695,4.7413025 L 274.12695,10.442474 L 275.375,10.442474 L 275.375,11.426849 L 274.12695,11.426849 L 274.12695,13.489349 L 272.94922,13.489349 L 272.94922,11.426849 L 269,11.426849 L 269,10.284271 L 272.63867,4.7413025"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6599"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,5.5205994 c -0.60938,7.9e-6 -1.06836,0.3007889 -1.37695,0.9023437 c -0.30469,0.5976627 -0.45704,1.4980525 -0.45703,2.7011719 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.2031194 -0.1543,-2.1035092 -0.46289,-2.7011719 C 280.9414,5.8213883 280.48242,5.5206073 279.86914,5.5205994 m 0,-0.9375 c 0.98046,8.9e-6 1.72851,0.3886804 2.24414,1.1660156 c 0.51953,0.7734445 0.77929,1.8984433 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.4765567 0.25781,-2.6015555 0.77344,-3.375 c 0.51953,-0.7773352 1.26953,-1.1660067 2.25,-1.1660156"
d="M 279.86914,5.5205994 C 279.25976,5.5206073 278.80078,5.8213883 278.49219,6.4229431 C 278.1875,7.0206058 278.03515,7.9209956 278.03516,9.124115 C 278.03515,10.323337 278.1875,11.223727 278.49219,11.825287 C 278.80078,12.422944 279.25976,12.721772 279.86914,12.721771 C 280.48242,12.721772 280.9414,12.422944 281.24609,11.825287 C 281.55468,11.223727 281.70898,10.323337 281.70898,9.124115 C 281.70898,7.9209956 281.55468,7.0206058 281.24609,6.4229431 C 280.9414,5.8213883 280.48242,5.5206073 279.86914,5.5205994 M 279.86914,4.5830994 C 280.8496,4.5831083 281.59765,4.9717798 282.11328,5.749115 C 282.63281,6.5225595 282.89257,7.6475583 282.89258,9.124115 C 282.89257,10.596774 282.63281,11.721773 282.11328,12.499115 C 281.59765,13.272553 280.8496,13.659271 279.86914,13.659271 C 278.88867,13.659271 278.13867,13.272553 277.61914,12.499115 C 277.10351,11.721773 276.8457,10.596774 276.8457,9.124115 C 276.8457,7.6475583 277.10351,6.5225595 277.61914,5.749115 C 278.13867,4.9717798 278.88867,4.5831083 279.86914,4.5830994"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6601"
inkscape:connector-curvature="0" />
@ -659,12 +685,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label40R">
<path
d="m 360.94922,5.7725525 l -2.98828,4.6699215 l 2.98828,0 l 0,-4.6699215 m -0.31055,-1.03125 l 1.48828,0 l 0,5.7011715 l 1.24805,0 l 0,0.984375 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.142578 l 3.63867,-5.5429685"
d="M 360.94922,5.7725525 L 357.96094,10.442474 L 360.94922,10.442474 L 360.94922,5.7725525 M 360.63867,4.7413025 L 362.12695,4.7413025 L 362.12695,10.442474 L 363.375,10.442474 L 363.375,11.426849 L 362.12695,11.426849 L 362.12695,13.489349 L 360.94922,13.489349 L 360.94922,11.426849 L 357,11.426849 L 357,10.284271 L 360.63867,4.7413025"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6777"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,5.5205994 c -0.60938,7.9e-6 -1.06836,0.3007889 -1.37695,0.9023437 c -0.30469,0.5976627 -0.45704,1.4980525 -0.45703,2.7011719 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.2031194 -0.1543,-2.1035092 -0.46289,-2.7011719 C 368.9414,5.8213883 368.48242,5.5206073 367.86914,5.5205994 m 0,-0.9375 c 0.98046,8.9e-6 1.72851,0.3886804 2.24414,1.1660156 c 0.51953,0.7734445 0.77929,1.8984433 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.4765567 0.25781,-2.6015555 0.77344,-3.375 c 0.51953,-0.7773352 1.26953,-1.1660067 2.25,-1.1660156"
d="M 367.86914,5.5205994 C 367.25976,5.5206073 366.80078,5.8213883 366.49219,6.4229431 C 366.1875,7.0206058 366.03515,7.9209956 366.03516,9.124115 C 366.03515,10.323337 366.1875,11.223727 366.49219,11.825287 C 366.80078,12.422944 367.25976,12.721772 367.86914,12.721771 C 368.48242,12.721772 368.9414,12.422944 369.24609,11.825287 C 369.55468,11.223727 369.70898,10.323337 369.70898,9.124115 C 369.70898,7.9209956 369.55468,7.0206058 369.24609,6.4229431 C 368.9414,5.8213883 368.48242,5.5206073 367.86914,5.5205994 M 367.86914,4.5830994 C 368.8496,4.5831083 369.59765,4.9717798 370.11328,5.749115 C 370.63281,6.5225595 370.89257,7.6475583 370.89258,9.124115 C 370.89257,10.596774 370.63281,11.721773 370.11328,12.499115 C 369.59765,13.272553 368.8496,13.659271 367.86914,13.659271 C 366.88867,13.659271 366.13867,13.272553 365.61914,12.499115 C 365.10351,11.721773 364.8457,10.596774 364.8457,9.124115 C 364.8457,7.6475583 365.10351,6.5225595 365.61914,5.749115 C 366.13867,4.9717798 366.88867,4.5831083 367.86914,4.5830994"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6779"
inkscape:connector-curvature="0" />
@ -672,11 +698,11 @@
<path
inkscape:connector-curvature="0"
id="path4517"
d="m 303.37607,-11 l 32.7768,0"
d="M 303.37607,-11 L 336.15287,-11"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 285.77784,-31 l 67.97326,0"
d="M 285.77784,-31 L 353.7511,-31"
id="path4519"
inkscape:connector-curvature="0" />
<g
@ -684,12 +710,12 @@
id="pitch_label50L"
inkscape:label="#pitch_label50L">
<path
d="m 269.70898,-35.258698 l 4.64649,0 l 0,0.996094 l -3.5625,0 l 0,2.144531 c 0.17187,-0.05859 0.34375,-0.101556 0.51562,-0.128906 c 0.17188,-0.03124 0.34375,-0.04687 0.51563,-0.04687 c 0.97656,6e-6 1.74999,0.267584 2.32031,0.802735 c 0.57031,0.53516 0.85546,1.259769 0.85547,2.173828 c -10e-6,0.941408 -0.29298,1.673829 -0.87891,2.197265 c -0.58594,0.519532 -1.41211,0.779297 -2.47851,0.779297 c -0.36719,0 -0.74219,-0.03125 -1.125,-0.09375 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.189453 c 0.35156,0.191408 0.71485,0.333986 1.08985,0.427734 c 0.375,0.09375 0.77148,0.140626 1.18945,0.140625 c 0.67578,1e-6 1.21093,-0.177733 1.60547,-0.533203 c 0.39453,-0.355467 0.59179,-0.837888 0.5918,-1.447265 c -1e-5,-0.609372 -0.19727,-1.091793 -0.5918,-1.447266 c -0.39454,-0.355464 -0.92969,-0.533198 -1.60547,-0.533203 c -0.31641,5e-6 -0.63281,0.03516 -0.94922,0.105469 c -0.3125,0.07032 -0.63281,0.179692 -0.96094,0.328125 l 0,-4.394532"
d="M 269.70898,-35.258698 L 274.35547,-35.258698 L 274.35547,-34.262604 L 270.79297,-34.262604 L 270.79297,-32.118073 C 270.96484,-32.176663 271.13672,-32.219629 271.30859,-32.246979 C 271.48047,-32.278219 271.65234,-32.293849 271.82422,-32.293849 C 272.80078,-32.293843 273.57421,-32.026265 274.14453,-31.491114 C 274.71484,-30.955954 274.99999,-30.231345 275,-29.317286 C 274.99999,-28.375878 274.70702,-27.643457 274.12109,-27.120021 C 273.53515,-26.600489 272.70898,-26.340724 271.64258,-26.340724 C 271.27539,-26.340724 270.90039,-26.371974 270.51758,-26.434474 C 270.13867,-26.496974 269.74609,-26.590724 269.33984,-26.715724 L 269.33984,-27.905177 C 269.6914,-27.713769 270.05469,-27.571191 270.42969,-27.477443 C 270.80469,-27.383693 271.20117,-27.336817 271.61914,-27.336818 C 272.29492,-27.336817 272.83007,-27.514551 273.22461,-27.870021 C 273.61914,-28.225488 273.8164,-28.707909 273.81641,-29.317286 C 273.8164,-29.926658 273.61914,-30.409079 273.22461,-30.764552 C 272.83007,-31.120016 272.29492,-31.29775 271.61914,-31.297755 C 271.30273,-31.29775 270.98633,-31.262595 270.66992,-31.192286 C 270.35742,-31.121966 270.03711,-31.012594 269.70898,-30.864161 L 269.70898,-35.258693"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6594"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,-34.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 279.86914,-34.479401 C 279.25976,-34.479393 278.80078,-34.178612 278.49219,-33.577057 C 278.1875,-32.979394 278.03515,-32.079004 278.03516,-30.875885 C 278.03515,-29.676663 278.1875,-28.776273 278.49219,-28.174713 C 278.80078,-27.577056 279.25976,-27.278228 279.86914,-27.278229 C 280.48242,-27.278228 280.9414,-27.577056 281.24609,-28.174713 C 281.55468,-28.776273 281.70898,-29.676663 281.70898,-30.875885 C 281.70898,-32.079004 281.55468,-32.979394 281.24609,-33.577057 C 280.9414,-34.178612 280.48242,-34.479393 279.86914,-34.479401 M 279.86914,-35.416901 C 280.8496,-35.416892 281.59765,-35.02822 282.11328,-34.250885 C 282.63281,-33.477441 282.89257,-32.352442 282.89258,-30.875885 C 282.89257,-29.403226 282.63281,-28.278227 282.11328,-27.500885 C 281.59765,-26.727447 280.8496,-26.340729 279.86914,-26.340729 C 278.88867,-26.340729 278.13867,-26.727447 277.61914,-27.500885 C 277.10351,-28.278227 276.8457,-29.403226 276.8457,-30.875885 C 276.8457,-32.352442 277.10351,-33.477441 277.61914,-34.250885 C 278.13867,-35.02822 278.88867,-35.416892 279.86914,-35.416901"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6596"
inkscape:connector-curvature="0" />
@ -698,37 +724,37 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label50R">
<path
d="m 357.70898,-35.258698 l 4.64649,0 l 0,0.996094 l -3.5625,0 l 0,2.144531 c 0.17187,-0.05859 0.34375,-0.101556 0.51562,-0.128906 c 0.17188,-0.03124 0.34375,-0.04687 0.51563,-0.04687 c 0.97656,6e-6 1.74999,0.267584 2.32031,0.802735 c 0.57031,0.53516 0.85546,1.259769 0.85547,2.173828 c -10e-6,0.941408 -0.29298,1.673829 -0.87891,2.197265 c -0.58594,0.519532 -1.41211,0.779297 -2.47851,0.779297 c -0.36719,0 -0.74219,-0.03125 -1.125,-0.09375 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.189453 c 0.35156,0.191408 0.71485,0.333986 1.08985,0.427734 c 0.375,0.09375 0.77148,0.140626 1.18945,0.140625 c 0.67578,1e-6 1.21093,-0.177733 1.60547,-0.533203 c 0.39453,-0.355467 0.59179,-0.837888 0.5918,-1.447265 c -1e-5,-0.609372 -0.19727,-1.091793 -0.5918,-1.447266 c -0.39454,-0.355464 -0.92969,-0.533198 -1.60547,-0.533203 c -0.31641,5e-6 -0.63281,0.03516 -0.94922,0.105469 c -0.3125,0.07032 -0.63281,0.179692 -0.96094,0.328125 l 0,-4.394532"
d="M 357.70898,-35.258698 L 362.35547,-35.258698 L 362.35547,-34.262604 L 358.79297,-34.262604 L 358.79297,-32.118073 C 358.96484,-32.176663 359.13672,-32.219629 359.30859,-32.246979 C 359.48047,-32.278219 359.65234,-32.293849 359.82422,-32.293849 C 360.80078,-32.293843 361.57421,-32.026265 362.14453,-31.491114 C 362.71484,-30.955954 362.99999,-30.231345 363,-29.317286 C 362.99999,-28.375878 362.70702,-27.643457 362.12109,-27.120021 C 361.53515,-26.600489 360.70898,-26.340724 359.64258,-26.340724 C 359.27539,-26.340724 358.90039,-26.371974 358.51758,-26.434474 C 358.13867,-26.496974 357.74609,-26.590724 357.33984,-26.715724 L 357.33984,-27.905177 C 357.6914,-27.713769 358.05469,-27.571191 358.42969,-27.477443 C 358.80469,-27.383693 359.20117,-27.336817 359.61914,-27.336818 C 360.29492,-27.336817 360.83007,-27.514551 361.22461,-27.870021 C 361.61914,-28.225488 361.8164,-28.707909 361.81641,-29.317286 C 361.8164,-29.926658 361.61914,-30.409079 361.22461,-30.764552 C 360.83007,-31.120016 360.29492,-31.29775 359.61914,-31.297755 C 359.30273,-31.29775 358.98633,-31.262595 358.66992,-31.192286 C 358.35742,-31.121966 358.03711,-31.012594 357.70898,-30.864161 L 357.70898,-35.258693"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6772"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,-34.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 367.86914,-34.479401 C 367.25976,-34.479393 366.80078,-34.178612 366.49219,-33.577057 C 366.1875,-32.979394 366.03515,-32.079004 366.03516,-30.875885 C 366.03515,-29.676663 366.1875,-28.776273 366.49219,-28.174713 C 366.80078,-27.577056 367.25976,-27.278228 367.86914,-27.278229 C 368.48242,-27.278228 368.9414,-27.577056 369.24609,-28.174713 C 369.55468,-28.776273 369.70898,-29.676663 369.70898,-30.875885 C 369.70898,-32.079004 369.55468,-32.979394 369.24609,-33.577057 C 368.9414,-34.178612 368.48242,-34.479393 367.86914,-34.479401 M 367.86914,-35.416901 C 368.8496,-35.416892 369.59765,-35.02822 370.11328,-34.250885 C 370.63281,-33.477441 370.89257,-32.352442 370.89258,-30.875885 C 370.89257,-29.403226 370.63281,-28.278227 370.11328,-27.500885 C 369.59765,-26.727447 368.8496,-26.340729 367.86914,-26.340729 C 366.88867,-26.340729 366.13867,-26.727447 365.61914,-27.500885 C 365.10351,-28.278227 364.8457,-29.403226 364.8457,-30.875885 C 364.8457,-32.352442 365.10351,-33.477441 365.61914,-34.250885 C 366.13867,-35.02822 366.88867,-35.416892 367.86914,-35.416901"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6774"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 303.37607,-51 l 32.7768,0"
d="M 303.37607,-51 L 336.15287,-51"
id="path4529"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4531"
d="m 285.77784,-71 l 67.97326,0"
d="M 285.77784,-71 L 353.7511,-71"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label60L"
inkscape:label="#pitch_label10L">
<path
d="m 272.375,-71.356354 c -0.53125,5e-6 -0.95313,0.181646 -1.26563,0.544922 c -0.30859,0.363285 -0.46289,0.861332 -0.46289,1.494141 c 0,0.628908 0.1543,1.126955 0.46289,1.49414 c 0.3125,0.363283 0.73438,0.544923 1.26563,0.544922 c 0.53125,10e-7 0.95117,-0.181639 1.25977,-0.544922 c 0.31249,-0.367185 0.46874,-0.865232 0.46875,-1.49414 c -10e-6,-0.632809 -0.15626,-1.130856 -0.46875,-1.494141 c -0.3086,-0.363276 -0.72852,-0.544917 -1.25977,-0.544922 m 2.34961,-3.708984 l 0,1.078125 c -0.29688,-0.140618 -0.59766,-0.248039 -0.90234,-0.322266 c -0.30079,-0.07421 -0.59962,-0.11132 -0.89649,-0.111328 c -0.78125,8e-6 -1.37891,0.26368 -1.79297,0.791016 c -0.41016,0.52735 -0.64453,1.324224 -0.70312,2.390625 c 0.23046,-0.339839 0.51953,-0.599604 0.86718,-0.779297 c 0.34766,-0.183588 0.73047,-0.275385 1.14844,-0.275391 c 0.8789,6e-6 1.57226,0.267584 2.08008,0.802735 c 0.51171,0.531254 0.76757,1.255863 0.76758,2.173828 c -1e-5,0.898439 -0.26563,1.619142 -0.79688,2.162109 c -0.53125,0.542969 -1.23828,0.814453 -2.12109,0.814453 c -1.01172,0 -1.78516,-0.386718 -2.32031,-1.160156 c -0.53516,-0.777342 -0.80274,-1.902341 -0.80274,-3.375 c 0,-1.382807 0.32813,-2.484368 0.98438,-3.304688 c 0.65625,-0.82421 1.5371,-1.236319 2.64258,-1.236328 c 0.29687,9e-6 0.59569,0.02931 0.89648,0.08789 c 0.30468,0.0586 0.62109,0.146493 0.94922,0.263672"
d="M 272.375,-71.356354 C 271.84375,-71.356349 271.42187,-71.174708 271.10937,-70.811432 C 270.80078,-70.448147 270.64648,-69.9501 270.64648,-69.317291 C 270.64648,-68.688383 270.80078,-68.190336 271.10937,-67.823151 C 271.42187,-67.459868 271.84375,-67.278228 272.375,-67.278229 C 272.90625,-67.278228 273.32617,-67.459868 273.63477,-67.823151 C 273.94726,-68.190336 274.10351,-68.688383 274.10352,-69.317291 C 274.10351,-69.9501 273.94726,-70.448147 273.63477,-70.811432 C 273.32617,-71.174708 272.90625,-71.356349 272.375,-71.356354 M 274.72461,-75.065338 L 274.72461,-73.987213 C 274.42773,-74.127831 274.12695,-74.235252 273.82227,-74.309479 C 273.52148,-74.383689 273.22265,-74.420799 272.92578,-74.420807 C 272.14453,-74.420799 271.54687,-74.157127 271.13281,-73.629791 C 270.72265,-73.102441 270.48828,-72.305567 270.42969,-71.239166 C 270.66015,-71.579005 270.94922,-71.83877 271.29687,-72.018463 C 271.64453,-72.202051 272.02734,-72.293848 272.44531,-72.293854 C 273.32421,-72.293848 274.01757,-72.02627 274.52539,-71.491119 C 275.0371,-70.959865 275.29296,-70.235256 275.29297,-69.317291 C 275.29296,-68.418852 275.02734,-67.698149 274.49609,-67.155182 C 273.96484,-66.612213 273.25781,-66.340729 272.375,-66.340729 C 271.36328,-66.340729 270.58984,-66.727447 270.05469,-67.500885 C 269.51953,-68.278227 269.25195,-69.403226 269.25195,-70.875885 C 269.25195,-72.258692 269.58008,-73.360253 270.23633,-74.180573 C 270.89258,-75.004783 271.77343,-75.416892 272.87891,-75.416901 C 273.17578,-75.416892 273.4746,-75.387591 273.77539,-75.329011 C 274.08007,-75.270411 274.39648,-75.182518 274.72461,-75.065339"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6589"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,-74.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 279.86914,-74.479401 C 279.25976,-74.479393 278.80078,-74.178612 278.49219,-73.577057 C 278.1875,-72.979394 278.03515,-72.079004 278.03516,-70.875885 C 278.03515,-69.676663 278.1875,-68.776273 278.49219,-68.174713 C 278.80078,-67.577056 279.25976,-67.278228 279.86914,-67.278229 C 280.48242,-67.278228 280.9414,-67.577056 281.24609,-68.174713 C 281.55468,-68.776273 281.70898,-69.676663 281.70898,-70.875885 C 281.70898,-72.079004 281.55468,-72.979394 281.24609,-73.577057 C 280.9414,-74.178612 280.48242,-74.479393 279.86914,-74.479401 M 279.86914,-75.416901 C 280.8496,-75.416892 281.59765,-75.02822 282.11328,-74.250885 C 282.63281,-73.477441 282.89257,-72.352442 282.89258,-70.875885 C 282.89257,-69.403226 282.63281,-68.278227 282.11328,-67.500885 C 281.59765,-66.727447 280.8496,-66.340729 279.86914,-66.340729 C 278.88867,-66.340729 278.13867,-66.727447 277.61914,-67.500885 C 277.10351,-68.278227 276.8457,-69.403226 276.8457,-70.875885 C 276.8457,-72.352442 277.10351,-73.477441 277.61914,-74.250885 C 278.13867,-75.02822 278.88867,-75.416892 279.86914,-75.416901"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6591"
inkscape:connector-curvature="0" />
@ -737,37 +763,37 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label60R">
<path
d="m 360.375,-71.356354 c -0.53125,5e-6 -0.95313,0.181646 -1.26563,0.544922 c -0.30859,0.363285 -0.46289,0.861332 -0.46289,1.494141 c 0,0.628908 0.1543,1.126955 0.46289,1.49414 c 0.3125,0.363283 0.73438,0.544923 1.26563,0.544922 c 0.53125,10e-7 0.95117,-0.181639 1.25977,-0.544922 c 0.31249,-0.367185 0.46874,-0.865232 0.46875,-1.49414 c -10e-6,-0.632809 -0.15626,-1.130856 -0.46875,-1.494141 c -0.3086,-0.363276 -0.72852,-0.544917 -1.25977,-0.544922 m 2.34961,-3.708984 l 0,1.078125 c -0.29688,-0.140618 -0.59766,-0.248039 -0.90234,-0.322266 c -0.30079,-0.07421 -0.59962,-0.11132 -0.89649,-0.111328 c -0.78125,8e-6 -1.37891,0.26368 -1.79297,0.791016 c -0.41016,0.52735 -0.64453,1.324224 -0.70312,2.390625 c 0.23046,-0.339839 0.51953,-0.599604 0.86718,-0.779297 c 0.34766,-0.183588 0.73047,-0.275385 1.14844,-0.275391 c 0.8789,6e-6 1.57226,0.267584 2.08008,0.802735 c 0.51171,0.531254 0.76757,1.255863 0.76758,2.173828 c -1e-5,0.898439 -0.26563,1.619142 -0.79688,2.162109 c -0.53125,0.542969 -1.23828,0.814453 -2.12109,0.814453 c -1.01172,0 -1.78516,-0.386718 -2.32031,-1.160156 c -0.53516,-0.777342 -0.80274,-1.902341 -0.80274,-3.375 c 0,-1.382807 0.32813,-2.484368 0.98438,-3.304688 c 0.65625,-0.82421 1.5371,-1.236319 2.64258,-1.236328 c 0.29687,9e-6 0.59569,0.02931 0.89648,0.08789 c 0.30468,0.0586 0.62109,0.146493 0.94922,0.263672"
d="M 360.375,-71.356354 C 359.84375,-71.356349 359.42187,-71.174708 359.10937,-70.811432 C 358.80078,-70.448147 358.64648,-69.9501 358.64648,-69.317291 C 358.64648,-68.688383 358.80078,-68.190336 359.10937,-67.823151 C 359.42187,-67.459868 359.84375,-67.278228 360.375,-67.278229 C 360.90625,-67.278228 361.32617,-67.459868 361.63477,-67.823151 C 361.94726,-68.190336 362.10351,-68.688383 362.10352,-69.317291 C 362.10351,-69.9501 361.94726,-70.448147 361.63477,-70.811432 C 361.32617,-71.174708 360.90625,-71.356349 360.375,-71.356354 M 362.72461,-75.065338 L 362.72461,-73.987213 C 362.42773,-74.127831 362.12695,-74.235252 361.82227,-74.309479 C 361.52148,-74.383689 361.22265,-74.420799 360.92578,-74.420807 C 360.14453,-74.420799 359.54687,-74.157127 359.13281,-73.629791 C 358.72265,-73.102441 358.48828,-72.305567 358.42969,-71.239166 C 358.66015,-71.579005 358.94922,-71.83877 359.29687,-72.018463 C 359.64453,-72.202051 360.02734,-72.293848 360.44531,-72.293854 C 361.32421,-72.293848 362.01757,-72.02627 362.52539,-71.491119 C 363.0371,-70.959865 363.29296,-70.235256 363.29297,-69.317291 C 363.29296,-68.418852 363.02734,-67.698149 362.49609,-67.155182 C 361.96484,-66.612213 361.25781,-66.340729 360.375,-66.340729 C 359.36328,-66.340729 358.58984,-66.727447 358.05469,-67.500885 C 357.51953,-68.278227 357.25195,-69.403226 357.25195,-70.875885 C 357.25195,-72.258692 357.58008,-73.360253 358.23633,-74.180573 C 358.89258,-75.004783 359.77343,-75.416892 360.87891,-75.416901 C 361.17578,-75.416892 361.4746,-75.387591 361.77539,-75.329011 C 362.08007,-75.270411 362.39648,-75.182518 362.72461,-75.065339"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6757"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,-74.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
d="M 367.86914,-74.479401 C 367.25976,-74.479393 366.80078,-74.178612 366.49219,-73.577057 C 366.1875,-72.979394 366.03515,-72.079004 366.03516,-70.875885 C 366.03515,-69.676663 366.1875,-68.776273 366.49219,-68.174713 C 366.80078,-67.577056 367.25976,-67.278228 367.86914,-67.278229 C 368.48242,-67.278228 368.9414,-67.577056 369.24609,-68.174713 C 369.55468,-68.776273 369.70898,-69.676663 369.70898,-70.875885 C 369.70898,-72.079004 369.55468,-72.979394 369.24609,-73.577057 C 368.9414,-74.178612 368.48242,-74.479393 367.86914,-74.479401 M 367.86914,-75.416901 C 368.8496,-75.416892 369.59765,-75.02822 370.11328,-74.250885 C 370.63281,-73.477441 370.89257,-72.352442 370.89258,-70.875885 C 370.89257,-69.403226 370.63281,-68.278227 370.11328,-67.500885 C 369.59765,-66.727447 368.8496,-66.340729 367.86914,-66.340729 C 366.88867,-66.340729 366.13867,-66.727447 365.61914,-67.500885 C 365.10351,-68.278227 364.8457,-69.403226 364.8457,-70.875885 C 364.8457,-72.352442 365.10351,-73.477441 365.61914,-74.250885 C 366.13867,-75.02822 366.88867,-75.416892 367.86914,-75.416901"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6759"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 303.37607,-91 l 32.7768,0"
d="M 303.37607,-91 L 336.15287,-91"
id="path4541"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4543"
d="m 285.77784,-111 l 67.97326,0"
d="M 285.77784,-111 L 353.7511,-111"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label70L"
inkscape:label="#pitch_label70L">
<path
d="m 269.39844,-115.2587 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
d="M 269.39844,-115.2587 L 275.02344,-115.2587 L 275.02344,-114.75479 L 271.84766,-106.51065 L 270.61133,-106.51065 L 273.59961,-114.2626 L 269.39844,-114.2626 L 269.39844,-115.2587"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6584"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,-114.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,-114.4794 C 279.25976,-114.47939 278.80078,-114.17861 278.49219,-113.57706 C 278.1875,-112.97939 278.03515,-112.079 278.03516,-110.87589 C 278.03515,-109.67666 278.1875,-108.77627 278.49219,-108.17471 C 278.80078,-107.57706 279.25976,-107.27823 279.86914,-107.27823 C 280.48242,-107.27823 280.9414,-107.57706 281.24609,-108.17471 C 281.55468,-108.77627 281.70898,-109.67666 281.70898,-110.87589 C 281.70898,-112.079 281.55468,-112.97939 281.24609,-113.57706 C 280.9414,-114.17861 280.48242,-114.47939 279.86914,-114.4794 M 279.86914,-115.4169 C 280.8496,-115.41689 281.59765,-115.02822 282.11328,-114.25089 C 282.63281,-113.47744 282.89257,-112.35244 282.89258,-110.87589 C 282.89257,-109.40323 282.63281,-108.27823 282.11328,-107.50089 C 281.59765,-106.72745 280.8496,-106.34073 279.86914,-106.34073 C 278.88867,-106.34073 278.13867,-106.72745 277.61914,-107.50089 C 277.10351,-108.27823 276.8457,-109.40323 276.8457,-110.87589 C 276.8457,-112.35244 277.10351,-113.47744 277.61914,-114.25089 C 278.13867,-115.02822 278.88867,-115.41689 279.86914,-115.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6586"
inkscape:connector-curvature="0" />
@ -776,12 +802,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label70R">
<path
d="m 357.39844,-115.2587 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
d="M 357.39844,-115.2587 L 363.02344,-115.2587 L 363.02344,-114.75479 L 359.84766,-106.51065 L 358.61133,-106.51065 L 361.59961,-114.2626 L 357.39844,-114.2626 L 357.39844,-115.2587"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6762"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,-114.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,-114.4794 C 367.25976,-114.47939 366.80078,-114.17861 366.49219,-113.57706 C 366.1875,-112.97939 366.03515,-112.079 366.03516,-110.87589 C 366.03515,-109.67666 366.1875,-108.77627 366.49219,-108.17471 C 366.80078,-107.57706 367.25976,-107.27823 367.86914,-107.27823 C 368.48242,-107.27823 368.9414,-107.57706 369.24609,-108.17471 C 369.55468,-108.77627 369.70898,-109.67666 369.70898,-110.87589 C 369.70898,-112.079 369.55468,-112.97939 369.24609,-113.57706 C 368.9414,-114.17861 368.48242,-114.47939 367.86914,-114.4794 M 367.86914,-115.4169 C 368.8496,-115.41689 369.59765,-115.02822 370.11328,-114.25089 C 370.63281,-113.47744 370.89257,-112.35244 370.89258,-110.87589 C 370.89257,-109.40323 370.63281,-108.27823 370.11328,-107.50089 C 369.59765,-106.72745 368.8496,-106.34073 367.86914,-106.34073 C 366.88867,-106.34073 366.13867,-106.72745 365.61914,-107.50089 C 365.10351,-108.27823 364.8457,-109.40323 364.8457,-110.87589 C 364.8457,-112.35244 365.10351,-113.47744 365.61914,-114.25089 C 366.13867,-115.02822 366.88867,-115.41689 367.86914,-115.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6764"
inkscape:connector-curvature="0" />
@ -789,23 +815,23 @@
<path
inkscape:connector-curvature="0"
id="path4553"
d="m 303.37607,-131 l 32.7768,0"
d="M 303.37607,-131 L 336.15287,-131"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 285.77784,-151 l 67.97326,0"
d="M 285.77784,-151 L 353.7511,-151"
id="path4555"
inkscape:connector-curvature="0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label80L">
<path
d="m 272.22852,-150.66495 c -0.56251,1e-5 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,1e-5 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,1e-5 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,1e-5 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
d="M 272.22852,-150.66495 C 271.66601,-150.66494 271.22265,-150.51455 270.89844,-150.21378 C 270.57812,-149.91299 270.41797,-149.49893 270.41797,-148.97159 C 270.41797,-148.44424 270.57812,-148.03018 270.89844,-147.7294 C 271.22265,-147.42862 271.66601,-147.27823 272.22852,-147.27823 C 272.79101,-147.27823 273.23437,-147.42862 273.55859,-147.7294 C 273.88281,-148.03409 274.04492,-148.44815 274.04492,-148.97159 C 274.04492,-149.49893 273.88281,-149.91299 273.55859,-150.21378 C 273.23828,-150.51455 272.79492,-150.66494 272.22852,-150.66495 M 271.04492,-151.16885 C 270.53711,-151.29385 270.14062,-151.53018 269.85547,-151.87784 C 269.57422,-152.22549 269.43359,-152.64932 269.43359,-153.14932 C 269.43359,-153.84853 269.68164,-154.40127 270.17773,-154.80753 C 270.67773,-155.21377 271.36133,-155.41689 272.22852,-155.4169 C 273.0996,-155.41689 273.7832,-155.21377 274.2793,-154.80753 C 274.77538,-154.40127 275.02343,-153.84853 275.02344,-153.14932 C 275.02343,-152.64932 274.88085,-152.22549 274.5957,-151.87784 C 274.31445,-151.53018 273.92187,-151.29385 273.41797,-151.16885 C 273.98828,-151.03604 274.43163,-150.77627 274.74805,-150.38956 C 275.06835,-150.00283 275.22851,-149.53018 275.22852,-148.97159 C 275.22851,-148.12393 274.96874,-147.47354 274.44922,-147.02042 C 273.93359,-146.56729 273.19335,-146.34073 272.22852,-146.34073 C 271.26367,-146.34073 270.52148,-146.56729 270.00195,-147.02042 C 269.48633,-147.47354 269.22851,-148.12393 269.22852,-148.97159 C 269.22851,-149.53018 269.38867,-150.00283 269.70898,-150.38956 C 270.0293,-150.77627 270.47461,-151.03604 271.04492,-151.16885 M 270.61133,-153.03799 C 270.61133,-152.58486 270.75195,-152.23135 271.0332,-151.97745 C 271.31836,-151.72354 271.71679,-151.59658 272.22852,-151.59659 C 272.73632,-151.59658 273.13281,-151.72354 273.41797,-151.97745 C 273.70703,-152.23135 273.85156,-152.58486 273.85156,-153.03799 C 273.85156,-153.49111 273.70703,-153.84463 273.41797,-154.09854 C 273.13281,-154.35244 272.73632,-154.47939 272.22852,-154.4794 C 271.71679,-154.47939 271.31836,-154.35244 271.0332,-154.09854 C 270.75195,-153.84463 270.61133,-153.49111 270.61133,-153.03799"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6579"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,-154.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,-154.4794 C 279.25976,-154.47939 278.80078,-154.17861 278.49219,-153.57706 C 278.1875,-152.97939 278.03515,-152.079 278.03516,-150.87589 C 278.03515,-149.67666 278.1875,-148.77627 278.49219,-148.17471 C 278.80078,-147.57706 279.25976,-147.27823 279.86914,-147.27823 C 280.48242,-147.27823 280.9414,-147.57706 281.24609,-148.17471 C 281.55468,-148.77627 281.70898,-149.67666 281.70898,-150.87589 C 281.70898,-152.079 281.55468,-152.97939 281.24609,-153.57706 C 280.9414,-154.17861 280.48242,-154.47939 279.86914,-154.4794 M 279.86914,-155.4169 C 280.8496,-155.41689 281.59765,-155.02822 282.11328,-154.25089 C 282.63281,-153.47744 282.89257,-152.35244 282.89258,-150.87589 C 282.89257,-149.40323 282.63281,-148.27823 282.11328,-147.50089 C 281.59765,-146.72745 280.8496,-146.34073 279.86914,-146.34073 C 278.88867,-146.34073 278.13867,-146.72745 277.61914,-147.50089 C 277.10351,-148.27823 276.8457,-149.40323 276.8457,-150.87589 C 276.8457,-152.35244 277.10351,-153.47744 277.61914,-154.25089 C 278.13867,-155.02822 278.88867,-155.41689 279.86914,-155.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6581"
inkscape:connector-curvature="0" />
@ -814,25 +840,25 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label80R">
<path
d="m 360.22852,-150.66495 c -0.56251,1e-5 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,1e-5 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,1e-5 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,1e-5 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
d="M 360.22852,-150.66495 C 359.66601,-150.66494 359.22265,-150.51455 358.89844,-150.21378 C 358.57812,-149.91299 358.41797,-149.49893 358.41797,-148.97159 C 358.41797,-148.44424 358.57812,-148.03018 358.89844,-147.7294 C 359.22265,-147.42862 359.66601,-147.27823 360.22852,-147.27823 C 360.79101,-147.27823 361.23437,-147.42862 361.55859,-147.7294 C 361.88281,-148.03409 362.04492,-148.44815 362.04492,-148.97159 C 362.04492,-149.49893 361.88281,-149.91299 361.55859,-150.21378 C 361.23828,-150.51455 360.79492,-150.66494 360.22852,-150.66495 M 359.04492,-151.16885 C 358.53711,-151.29385 358.14062,-151.53018 357.85547,-151.87784 C 357.57422,-152.22549 357.43359,-152.64932 357.43359,-153.14932 C 357.43359,-153.84853 357.68164,-154.40127 358.17773,-154.80753 C 358.67773,-155.21377 359.36133,-155.41689 360.22852,-155.4169 C 361.0996,-155.41689 361.7832,-155.21377 362.2793,-154.80753 C 362.77538,-154.40127 363.02343,-153.84853 363.02344,-153.14932 C 363.02343,-152.64932 362.88085,-152.22549 362.5957,-151.87784 C 362.31445,-151.53018 361.92187,-151.29385 361.41797,-151.16885 C 361.98828,-151.03604 362.43163,-150.77627 362.74805,-150.38956 C 363.06835,-150.00283 363.22851,-149.53018 363.22852,-148.97159 C 363.22851,-148.12393 362.96874,-147.47354 362.44922,-147.02042 C 361.93359,-146.56729 361.19335,-146.34073 360.22852,-146.34073 C 359.26367,-146.34073 358.52148,-146.56729 358.00195,-147.02042 C 357.48633,-147.47354 357.22851,-148.12393 357.22852,-148.97159 C 357.22851,-149.53018 357.38867,-150.00283 357.70898,-150.38956 C 358.0293,-150.77627 358.47461,-151.03604 359.04492,-151.16885 M 358.61133,-153.03799 C 358.61133,-152.58486 358.75195,-152.23135 359.0332,-151.97745 C 359.31836,-151.72354 359.71679,-151.59658 360.22852,-151.59659 C 360.73632,-151.59658 361.13281,-151.72354 361.41797,-151.97745 C 361.70703,-152.23135 361.85156,-152.58486 361.85156,-153.03799 C 361.85156,-153.49111 361.70703,-153.84463 361.41797,-154.09854 C 361.13281,-154.35244 360.73632,-154.47939 360.22852,-154.4794 C 359.71679,-154.47939 359.31836,-154.35244 359.0332,-154.09854 C 358.75195,-153.84463 358.61133,-153.49111 358.61133,-153.03799"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6767"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,-154.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,-154.4794 C 367.25976,-154.47939 366.80078,-154.17861 366.49219,-153.57706 C 366.1875,-152.97939 366.03515,-152.079 366.03516,-150.87589 C 366.03515,-149.67666 366.1875,-148.77627 366.49219,-148.17471 C 366.80078,-147.57706 367.25976,-147.27823 367.86914,-147.27823 C 368.48242,-147.27823 368.9414,-147.57706 369.24609,-148.17471 C 369.55468,-148.77627 369.70898,-149.67666 369.70898,-150.87589 C 369.70898,-152.079 369.55468,-152.97939 369.24609,-153.57706 C 368.9414,-154.17861 368.48242,-154.47939 367.86914,-154.4794 M 367.86914,-155.4169 C 368.8496,-155.41689 369.59765,-155.02822 370.11328,-154.25089 C 370.63281,-153.47744 370.89257,-152.35244 370.89258,-150.87589 C 370.89257,-149.40323 370.63281,-148.27823 370.11328,-147.50089 C 369.59765,-146.72745 368.8496,-146.34073 367.86914,-146.34073 C 366.88867,-146.34073 366.13867,-146.72745 365.61914,-147.50089 C 365.10351,-148.27823 364.8457,-149.40323 364.8457,-150.87589 C 364.8457,-152.35244 365.10351,-153.47744 365.61914,-154.25089 C 366.13867,-155.02822 366.88867,-155.41689 367.86914,-155.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6769"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 303.37607,-171 l 32.7768,0"
d="M 303.37607,-171 L 336.15287,-171"
id="path4565"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="pitch90"
d="m 285.77784,-191 l 67.97326,0"
d="M 285.77784,-191 L 353.7511,-191"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:label="#path4567" />
<g
@ -840,12 +866,12 @@
id="pitch_label90L"
inkscape:label="#pitch_label90L">
<path
d="m 269.73242,-186.69229 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.17969 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,1e-5 1.7832,0.38868 2.31445,1.16601 c 0.53515,0.77345 0.80273,1.89845 0.80274,3.375 c -1e-5,1.37891 -0.32813,2.48048 -0.98438,3.30469 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,1e-5 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
d="M 269.73242,-186.69229 L 269.73242,-187.77042 C 270.0293,-187.62979 270.33008,-187.52237 270.63477,-187.44815 C 270.93945,-187.37395 271.23828,-187.33682 271.53125,-187.33682 C 272.3125,-187.33682 272.9082,-187.59854 273.31836,-188.12198 C 273.73242,-188.64932 273.96874,-189.44815 274.02734,-190.51846 C 273.80078,-190.18252 273.51367,-189.92471 273.16602,-189.74503 C 272.81835,-189.56534 272.43359,-189.47549 272.01172,-189.47549 C 271.13672,-189.47549 270.44336,-189.73916 269.93164,-190.26651 C 269.42383,-190.79776 269.16992,-191.52236 269.16992,-192.44034 C 269.16992,-193.33877 269.43555,-194.05947 269.9668,-194.60245 C 270.49804,-195.14541 271.20508,-195.41689 272.08789,-195.4169 C 273.0996,-195.41689 273.87109,-195.02822 274.40234,-194.25089 C 274.93749,-193.47744 275.20507,-192.35244 275.20508,-190.87589 C 275.20507,-189.49698 274.87695,-188.39541 274.2207,-187.5712 C 273.56835,-186.75088 272.68945,-186.34073 271.58398,-186.34073 C 271.28711,-186.34073 270.98633,-186.37003 270.68164,-186.42863 C 270.37695,-186.48723 270.06055,-186.57511 269.73242,-186.6923 M 272.08789,-190.40129 C 272.61914,-190.40128 273.03906,-190.58292 273.34766,-190.94621 C 273.66015,-191.30948 273.8164,-191.80753 273.81641,-192.44035 C 273.8164,-193.06925 273.66015,-193.56534 273.34766,-193.92863 C 273.03906,-194.29581 272.61914,-194.4794 272.08789,-194.47941 C 271.55664,-194.4794 271.13476,-194.29581 270.82227,-193.92863 C 270.51367,-193.56534 270.35937,-193.06925 270.35937,-192.44035 C 270.35937,-191.80753 270.51367,-191.30948 270.82227,-190.94621 C 271.13476,-190.58292 271.55664,-190.40128 272.08789,-190.40129"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6574"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,-194.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,-194.4794 C 279.25976,-194.47939 278.80078,-194.17861 278.49219,-193.57706 C 278.1875,-192.97939 278.03515,-192.079 278.03516,-190.87589 C 278.03515,-189.67666 278.1875,-188.77627 278.49219,-188.17471 C 278.80078,-187.57706 279.25976,-187.27823 279.86914,-187.27823 C 280.48242,-187.27823 280.9414,-187.57706 281.24609,-188.17471 C 281.55468,-188.77627 281.70898,-189.67666 281.70898,-190.87589 C 281.70898,-192.079 281.55468,-192.97939 281.24609,-193.57706 C 280.9414,-194.17861 280.48242,-194.47939 279.86914,-194.4794 M 279.86914,-195.4169 C 280.8496,-195.41689 281.59765,-195.02822 282.11328,-194.25089 C 282.63281,-193.47744 282.89257,-192.35244 282.89258,-190.87589 C 282.89257,-189.40323 282.63281,-188.27823 282.11328,-187.50089 C 281.59765,-186.72745 280.8496,-186.34073 279.86914,-186.34073 C 278.88867,-186.34073 278.13867,-186.72745 277.61914,-187.50089 C 277.10351,-188.27823 276.8457,-189.40323 276.8457,-190.87589 C 276.8457,-192.35244 277.10351,-193.47744 277.61914,-194.25089 C 278.13867,-195.02822 278.88867,-195.41689 279.86914,-195.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6576"
inkscape:connector-curvature="0" />
@ -854,12 +880,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label90R">
<path
d="m 357.73242,-186.69229 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.17969 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,1e-5 1.7832,0.38868 2.31445,1.16601 c 0.53515,0.77345 0.80273,1.89845 0.80274,3.375 c -1e-5,1.37891 -0.32813,2.48048 -0.98438,3.30469 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,1e-5 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
d="M 357.73242,-186.69229 L 357.73242,-187.77042 C 358.0293,-187.62979 358.33008,-187.52237 358.63477,-187.44815 C 358.93945,-187.37395 359.23828,-187.33682 359.53125,-187.33682 C 360.3125,-187.33682 360.9082,-187.59854 361.31836,-188.12198 C 361.73242,-188.64932 361.96874,-189.44815 362.02734,-190.51846 C 361.80078,-190.18252 361.51367,-189.92471 361.16602,-189.74503 C 360.81835,-189.56534 360.43359,-189.47549 360.01172,-189.47549 C 359.13672,-189.47549 358.44336,-189.73916 357.93164,-190.26651 C 357.42383,-190.79776 357.16992,-191.52236 357.16992,-192.44034 C 357.16992,-193.33877 357.43555,-194.05947 357.9668,-194.60245 C 358.49804,-195.14541 359.20508,-195.41689 360.08789,-195.4169 C 361.0996,-195.41689 361.87109,-195.02822 362.40234,-194.25089 C 362.93749,-193.47744 363.20507,-192.35244 363.20508,-190.87589 C 363.20507,-189.49698 362.87695,-188.39541 362.2207,-187.5712 C 361.56835,-186.75088 360.68945,-186.34073 359.58398,-186.34073 C 359.28711,-186.34073 358.98633,-186.37003 358.68164,-186.42863 C 358.37695,-186.48723 358.06055,-186.57511 357.73242,-186.6923 M 360.08789,-190.40129 C 360.61914,-190.40128 361.03906,-190.58292 361.34766,-190.94621 C 361.66015,-191.30948 361.8164,-191.80753 361.81641,-192.44035 C 361.8164,-193.06925 361.66015,-193.56534 361.34766,-193.92863 C 361.03906,-194.29581 360.61914,-194.4794 360.08789,-194.47941 C 359.55664,-194.4794 359.13476,-194.29581 358.82227,-193.92863 C 358.51367,-193.56534 358.35937,-193.06925 358.35937,-192.44035 C 358.35937,-191.80753 358.51367,-191.30948 358.82227,-190.94621 C 359.13476,-190.58292 359.55664,-190.40128 360.08789,-190.40129"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6569"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,-194.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,-194.4794 C 367.25976,-194.47939 366.80078,-194.17861 366.49219,-193.57706 C 366.1875,-192.97939 366.03515,-192.079 366.03516,-190.87589 C 366.03515,-189.67666 366.1875,-188.77627 366.49219,-188.17471 C 366.80078,-187.57706 367.25976,-187.27823 367.86914,-187.27823 C 368.48242,-187.27823 368.9414,-187.57706 369.24609,-188.17471 C 369.55468,-188.77627 369.70898,-189.67666 369.70898,-190.87589 C 369.70898,-192.079 369.55468,-192.97939 369.24609,-193.57706 C 368.9414,-194.17861 368.48242,-194.47939 367.86914,-194.4794 M 367.86914,-195.4169 C 368.8496,-195.41689 369.59765,-195.02822 370.11328,-194.25089 C 370.63281,-193.47744 370.89257,-192.35244 370.89258,-190.87589 C 370.89257,-189.40323 370.63281,-188.27823 370.11328,-187.50089 C 369.59765,-186.72745 368.8496,-186.34073 367.86914,-186.34073 C 366.88867,-186.34073 366.13867,-186.72745 365.61914,-187.50089 C 365.10351,-188.27823 364.8457,-189.40323 364.8457,-190.87589 C 364.8457,-192.35244 365.10351,-193.47744 365.61914,-194.25089 C 366.13867,-195.02822 366.88867,-195.41689 367.86914,-195.4169"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6571"
inkscape:connector-curvature="0" />
@ -867,23 +893,23 @@
<path
inkscape:connector-curvature="0"
id="path4577"
d="m 303.37607,269 l 32.7768,0"
d="M 303.37607,269 L 336.15287,269"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 285.77784,329 l 67.97326,0"
d="M 285.77784,329 L 353.7511,329"
id="path4579"
inkscape:connector-curvature="0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-40L">
<path
d="m 272.94922,325.77255 l -2.98828,4.66992 l 2.98828,0 l 0,-4.66992 m -0.31055,-1.03125 l 1.48828,0 l 0,5.70117 l 1.24805,0 l 0,0.98438 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.14258 l 3.63867,-5.54297"
d="M 272.94922,325.77255 L 269.96094,330.44247 L 272.94922,330.44247 L 272.94922,325.77255 M 272.63867,324.7413 L 274.12695,324.7413 L 274.12695,330.44247 L 275.375,330.44247 L 275.375,331.42685 L 274.12695,331.42685 L 274.12695,333.48935 L 272.94922,333.48935 L 272.94922,331.42685 L 269,331.42685 L 269,330.28427 L 272.63867,324.7413"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6669"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,325.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,325.5206 C 279.25976,325.52061 278.80078,325.82139 278.49219,326.42294 C 278.1875,327.02061 278.03515,327.921 278.03516,329.12411 C 278.03515,330.32334 278.1875,331.22373 278.49219,331.82529 C 278.80078,332.42294 279.25976,332.72177 279.86914,332.72177 C 280.48242,332.72177 280.9414,332.42294 281.24609,331.82529 C 281.55468,331.22373 281.70898,330.32334 281.70898,329.12411 C 281.70898,327.921 281.55468,327.02061 281.24609,326.42294 C 280.9414,325.82139 280.48242,325.52061 279.86914,325.5206 M 279.86914,324.5831 C 280.8496,324.58311 281.59765,324.97178 282.11328,325.74911 C 282.63281,326.52256 282.89257,327.64756 282.89258,329.12411 C 282.89257,330.59677 282.63281,331.72177 282.11328,332.49911 C 281.59765,333.27255 280.8496,333.65927 279.86914,333.65927 C 278.88867,333.65927 278.13867,333.27255 277.61914,332.49911 C 277.10351,331.72177 276.8457,330.59677 276.8457,329.12411 C 276.8457,327.64756 277.10351,326.52256 277.61914,325.74911 C 278.13867,324.97178 278.88867,324.58311 279.86914,324.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6671"
inkscape:connector-curvature="0" />
@ -892,36 +918,36 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-40R">
<path
d="m 360.94922,325.77255 l -2.98828,4.66992 l 2.98828,0 l 0,-4.66992 m -0.31055,-1.03125 l 1.48828,0 l 0,5.70117 l 1.24805,0 l 0,0.98438 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.14258 l 3.63867,-5.54297"
d="M 360.94922,325.77255 L 357.96094,330.44247 L 360.94922,330.44247 L 360.94922,325.77255 M 360.63867,324.7413 L 362.12695,324.7413 L 362.12695,330.44247 L 363.375,330.44247 L 363.375,331.42685 L 362.12695,331.42685 L 362.12695,333.48935 L 360.94922,333.48935 L 360.94922,331.42685 L 357,331.42685 L 357,330.28427 L 360.63867,324.7413"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6674"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,325.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,325.5206 C 367.25976,325.52061 366.80078,325.82139 366.49219,326.42294 C 366.1875,327.02061 366.03515,327.921 366.03516,329.12411 C 366.03515,330.32334 366.1875,331.22373 366.49219,331.82529 C 366.80078,332.42294 367.25976,332.72177 367.86914,332.72177 C 368.48242,332.72177 368.9414,332.42294 369.24609,331.82529 C 369.55468,331.22373 369.70898,330.32334 369.70898,329.12411 C 369.70898,327.921 369.55468,327.02061 369.24609,326.42294 C 368.9414,325.82139 368.48242,325.52061 367.86914,325.5206 M 367.86914,324.5831 C 368.8496,324.58311 369.59765,324.97178 370.11328,325.74911 C 370.63281,326.52256 370.89257,327.64756 370.89258,329.12411 C 370.89257,330.59677 370.63281,331.72177 370.11328,332.49911 C 369.59765,333.27255 368.8496,333.65927 367.86914,333.65927 C 366.88867,333.65927 366.13867,333.27255 365.61914,332.49911 C 365.10351,331.72177 364.8457,330.59677 364.8457,329.12411 C 364.8457,327.64756 365.10351,326.52256 365.61914,325.74911 C 366.13867,324.97178 366.88867,324.58311 367.86914,324.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6676"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 303.37607,309 l 32.7768,0"
d="M 303.37607,309 L 336.15287,309"
id="path4589"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4591"
d="m 285.77784,289 l 67.97326,0"
d="M 285.77784,289 L 353.7511,289"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-30L">
<path
d="m 273.2832,288.77255 c 0.5664,0.1211 1.00781,0.37305 1.32422,0.75586 c 0.32031,0.38282 0.48046,0.85547 0.48047,1.41797 c -1e-5,0.86328 -0.29688,1.53125 -0.89062,2.00391 c -0.59376,0.47265 -1.43751,0.70898 -2.53125,0.70898 c -0.36719,0 -0.7461,-0.0371 -1.13672,-0.11133 c -0.38672,-0.0703 -0.78711,-0.17773 -1.20118,-0.32226 l 0,-1.14258 c 0.32813,0.19141 0.6875,0.33594 1.07813,0.43359 c 0.39062,0.0977 0.79883,0.14649 1.22461,0.14649 c 0.74218,0 1.30664,-0.14649 1.69336,-0.43946 c 0.39062,-0.29296 0.58593,-0.71874 0.58594,-1.27734 c -1e-5,-0.51562 -0.18165,-0.91796 -0.54493,-1.20703 c -0.35938,-0.29297 -0.86133,-0.43945 -1.50586,-0.43945 l -1.01953,0 l 0,-0.97266 l 1.06641,0 c 0.58203,10e-6 1.02734,-0.11523 1.33594,-0.3457 c 0.30859,-0.23437 0.46288,-0.57031 0.46289,-1.00782 c -1e-5,-0.44921 -0.16016,-0.79296 -0.48047,-1.03125 c -0.31641,-0.24218 -0.77149,-0.36327 -1.36524,-0.36328 c -0.32422,1e-5 -0.67187,0.0352 -1.04296,0.10547 c -0.3711,0.0703 -0.7793,0.1797 -1.22461,0.32813 l 0,-1.05469 c 0.44921,-0.12499 0.86914,-0.21874 1.25976,-0.28125 c 0.39453,-0.0625 0.76562,-0.0937 1.11328,-0.0937 c 0.89844,1e-5 1.60937,0.20509 2.13282,0.61523 c 0.52343,0.40626 0.78515,0.95704 0.78515,1.65235 c 0,0.48438 -0.13868,0.89453 -0.41601,1.23047 c -0.27735,0.33203 -0.67188,0.5625 -1.1836,0.6914"
d="M 273.2832,288.77255 C 273.8496,288.89365 274.29101,289.1456 274.60742,289.52841 C 274.92773,289.91123 275.08788,290.38388 275.08789,290.94638 C 275.08788,291.80966 274.79101,292.47763 274.19727,292.95029 C 273.60351,293.42294 272.75976,293.65927 271.66602,293.65927 C 271.29883,293.65927 270.91992,293.62217 270.5293,293.54794 C 270.14258,293.47764 269.74219,293.37021 269.32812,293.22568 L 269.32812,292.0831 C 269.65625,292.27451 270.01562,292.41904 270.40625,292.51669 C 270.79687,292.61439 271.20508,292.66318 271.63086,292.66318 C 272.37304,292.66318 272.9375,292.51669 273.32422,292.22372 C 273.71484,291.93076 273.91015,291.50498 273.91016,290.94638 C 273.91015,290.43076 273.72851,290.02842 273.36523,289.73935 C 273.00585,289.44638 272.5039,289.2999 271.85937,289.2999 L 270.83984,289.2999 L 270.83984,288.32724 L 271.90625,288.32724 C 272.48828,288.32725 272.93359,288.21201 273.24219,287.98154 C 273.55078,287.74717 273.70507,287.41123 273.70508,286.97372 C 273.70507,286.52451 273.54492,286.18076 273.22461,285.94247 C 272.9082,285.70029 272.45312,285.5792 271.85937,285.57919 C 271.53515,285.5792 271.1875,285.61439 270.81641,285.68466 C 270.44531,285.75496 270.03711,285.86436 269.5918,286.01279 L 269.5918,284.9581 C 270.04101,284.83311 270.46094,284.73936 270.85156,284.67685 C 271.24609,284.61435 271.61718,284.58315 271.96484,284.58315 C 272.86328,284.58316 273.57421,284.78824 274.09766,285.19838 C 274.62109,285.60464 274.88281,286.15542 274.88281,286.85073 C 274.88281,287.33511 274.74413,287.74526 274.4668,288.0812 C 274.18945,288.41323 273.79492,288.6437 273.2832,288.7726"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6679"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,285.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,285.5206 C 279.25976,285.52061 278.80078,285.82139 278.49219,286.42294 C 278.1875,287.02061 278.03515,287.921 278.03516,289.12411 C 278.03515,290.32334 278.1875,291.22373 278.49219,291.82529 C 278.80078,292.42294 279.25976,292.72177 279.86914,292.72177 C 280.48242,292.72177 280.9414,292.42294 281.24609,291.82529 C 281.55468,291.22373 281.70898,290.32334 281.70898,289.12411 C 281.70898,287.921 281.55468,287.02061 281.24609,286.42294 C 280.9414,285.82139 280.48242,285.52061 279.86914,285.5206 M 279.86914,284.5831 C 280.8496,284.58311 281.59765,284.97178 282.11328,285.74911 C 282.63281,286.52256 282.89257,287.64756 282.89258,289.12411 C 282.89257,290.59677 282.63281,291.72177 282.11328,292.49911 C 281.59765,293.27255 280.8496,293.65927 279.86914,293.65927 C 278.88867,293.65927 278.13867,293.27255 277.61914,292.49911 C 277.10351,291.72177 276.8457,290.59677 276.8457,289.12411 C 276.8457,287.64756 277.10351,286.52256 277.61914,285.74911 C 278.13867,284.97178 278.88867,284.58311 279.86914,284.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6681"
inkscape:connector-curvature="0" />
@ -930,36 +956,36 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-30R">
<path
d="m 361.2832,288.77255 c 0.5664,0.1211 1.00781,0.37305 1.32422,0.75586 c 0.32031,0.38282 0.48046,0.85547 0.48047,1.41797 c -1e-5,0.86328 -0.29688,1.53125 -0.89062,2.00391 c -0.59376,0.47265 -1.43751,0.70898 -2.53125,0.70898 c -0.36719,0 -0.7461,-0.0371 -1.13672,-0.11133 c -0.38672,-0.0703 -0.78711,-0.17773 -1.20118,-0.32226 l 0,-1.14258 c 0.32813,0.19141 0.6875,0.33594 1.07813,0.43359 c 0.39062,0.0977 0.79883,0.14649 1.22461,0.14649 c 0.74218,0 1.30664,-0.14649 1.69336,-0.43946 c 0.39062,-0.29296 0.58593,-0.71874 0.58594,-1.27734 c -1e-5,-0.51562 -0.18165,-0.91796 -0.54493,-1.20703 c -0.35938,-0.29297 -0.86133,-0.43945 -1.50586,-0.43945 l -1.01953,0 l 0,-0.97266 l 1.06641,0 c 0.58203,10e-6 1.02734,-0.11523 1.33594,-0.3457 c 0.30859,-0.23437 0.46288,-0.57031 0.46289,-1.00782 c -1e-5,-0.44921 -0.16016,-0.79296 -0.48047,-1.03125 c -0.31641,-0.24218 -0.77149,-0.36327 -1.36524,-0.36328 c -0.32422,1e-5 -0.67187,0.0352 -1.04296,0.10547 c -0.3711,0.0703 -0.7793,0.1797 -1.22461,0.32813 l 0,-1.05469 c 0.44921,-0.12499 0.86914,-0.21874 1.25976,-0.28125 c 0.39453,-0.0625 0.76562,-0.0937 1.11328,-0.0937 c 0.89844,1e-5 1.60937,0.20509 2.13282,0.61523 c 0.52343,0.40626 0.78515,0.95704 0.78515,1.65235 c 0,0.48438 -0.13868,0.89453 -0.41601,1.23047 c -0.27735,0.33203 -0.67188,0.5625 -1.1836,0.6914"
d="M 361.2832,288.77255 C 361.8496,288.89365 362.29101,289.1456 362.60742,289.52841 C 362.92773,289.91123 363.08788,290.38388 363.08789,290.94638 C 363.08788,291.80966 362.79101,292.47763 362.19727,292.95029 C 361.60351,293.42294 360.75976,293.65927 359.66602,293.65927 C 359.29883,293.65927 358.91992,293.62217 358.5293,293.54794 C 358.14258,293.47764 357.74219,293.37021 357.32812,293.22568 L 357.32812,292.0831 C 357.65625,292.27451 358.01562,292.41904 358.40625,292.51669 C 358.79687,292.61439 359.20508,292.66318 359.63086,292.66318 C 360.37304,292.66318 360.9375,292.51669 361.32422,292.22372 C 361.71484,291.93076 361.91015,291.50498 361.91016,290.94638 C 361.91015,290.43076 361.72851,290.02842 361.36523,289.73935 C 361.00585,289.44638 360.5039,289.2999 359.85937,289.2999 L 358.83984,289.2999 L 358.83984,288.32724 L 359.90625,288.32724 C 360.48828,288.32725 360.93359,288.21201 361.24219,287.98154 C 361.55078,287.74717 361.70507,287.41123 361.70508,286.97372 C 361.70507,286.52451 361.54492,286.18076 361.22461,285.94247 C 360.9082,285.70029 360.45312,285.5792 359.85937,285.57919 C 359.53515,285.5792 359.1875,285.61439 358.81641,285.68466 C 358.44531,285.75496 358.03711,285.86436 357.5918,286.01279 L 357.5918,284.9581 C 358.04101,284.83311 358.46094,284.73936 358.85156,284.67685 C 359.24609,284.61435 359.61718,284.58315 359.96484,284.58315 C 360.86328,284.58316 361.57421,284.78824 362.09766,285.19838 C 362.62109,285.60464 362.88281,286.15542 362.88281,286.85073 C 362.88281,287.33511 362.74413,287.74526 362.4668,288.0812 C 362.18945,288.41323 361.79492,288.6437 361.2832,288.7726"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6684"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,285.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,285.5206 C 367.25976,285.52061 366.80078,285.82139 366.49219,286.42294 C 366.1875,287.02061 366.03515,287.921 366.03516,289.12411 C 366.03515,290.32334 366.1875,291.22373 366.49219,291.82529 C 366.80078,292.42294 367.25976,292.72177 367.86914,292.72177 C 368.48242,292.72177 368.9414,292.42294 369.24609,291.82529 C 369.55468,291.22373 369.70898,290.32334 369.70898,289.12411 C 369.70898,287.921 369.55468,287.02061 369.24609,286.42294 C 368.9414,285.82139 368.48242,285.52061 367.86914,285.5206 M 367.86914,284.5831 C 368.8496,284.58311 369.59765,284.97178 370.11328,285.74911 C 370.63281,286.52256 370.89257,287.64756 370.89258,289.12411 C 370.89257,290.59677 370.63281,291.72177 370.11328,292.49911 C 369.59765,293.27255 368.8496,293.65927 367.86914,293.65927 C 366.88867,293.65927 366.13867,293.27255 365.61914,292.49911 C 365.10351,291.72177 364.8457,290.59677 364.8457,289.12411 C 364.8457,287.64756 365.10351,286.52256 365.61914,285.74911 C 366.13867,284.97178 366.88867,284.58311 367.86914,284.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6686"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 303.37607,349 l 32.7768,0"
d="M 303.37607,349 L 336.15287,349"
id="path4601"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4603"
d="m 285.77784,409 l 67.97326,0"
d="M 285.77784,409 L 353.7511,409"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-60L">
<path
d="m 272.375,408.64365 c -0.53125,0 -0.95313,0.18164 -1.26563,0.54492 c -0.30859,0.36328 -0.46289,0.86133 -0.46289,1.49414 c 0,0.62891 0.1543,1.12695 0.46289,1.49414 c 0.3125,0.36328 0.73438,0.54492 1.26563,0.54492 c 0.53125,0 0.95117,-0.18164 1.25977,-0.54492 c 0.31249,-0.36719 0.46874,-0.86523 0.46875,-1.49414 c -10e-6,-0.63281 -0.15626,-1.13086 -0.46875,-1.49414 c -0.3086,-0.36328 -0.72852,-0.54492 -1.25977,-0.54492 m 2.34961,-3.70899 l 0,1.07813 c -0.29688,-0.14062 -0.59766,-0.24804 -0.90234,-0.32227 c -0.30079,-0.0742 -0.59962,-0.11132 -0.89649,-0.11133 c -0.78125,1e-5 -1.37891,0.26368 -1.79297,0.79102 c -0.41016,0.52735 -0.64453,1.32422 -0.70312,2.39062 c 0.23046,-0.33983 0.51953,-0.5996 0.86718,-0.77929 c 0.34766,-0.18359 0.73047,-0.27539 1.14844,-0.27539 c 0.8789,0 1.57226,0.26758 2.08008,0.80273 c 0.51171,0.53126 0.76757,1.25586 0.76758,2.17383 c -1e-5,0.89844 -0.26563,1.61914 -0.79688,2.16211 c -0.53125,0.54297 -1.23828,0.81445 -2.12109,0.81445 c -1.01172,0 -1.78516,-0.38672 -2.32031,-1.16016 c -0.53516,-0.77734 -0.80274,-1.90234 -0.80274,-3.375 c 0,-1.3828 0.32813,-2.48436 0.98438,-3.30468 c 0.65625,-0.82421 1.5371,-1.23632 2.64258,-1.23633 c 0.29687,10e-6 0.59569,0.0293 0.89648,0.0879 c 0.30468,0.0586 0.62109,0.14649 0.94922,0.26367"
d="M 272.375,408.64365 C 271.84375,408.64365 271.42187,408.82529 271.10937,409.18857 C 270.80078,409.55185 270.64648,410.0499 270.64648,410.68271 C 270.64648,411.31162 270.80078,411.80966 271.10937,412.17685 C 271.42187,412.54013 271.84375,412.72177 272.375,412.72177 C 272.90625,412.72177 273.32617,412.54013 273.63477,412.17685 C 273.94726,411.80966 274.10351,411.31162 274.10352,410.68271 C 274.10351,410.0499 273.94726,409.55185 273.63477,409.18857 C 273.32617,408.82529 272.90625,408.64365 272.375,408.64365 M 274.72461,404.93466 L 274.72461,406.01279 C 274.42773,405.87217 274.12695,405.76475 273.82227,405.69052 C 273.52148,405.61632 273.22265,405.5792 272.92578,405.57919 C 272.14453,405.5792 271.54687,405.84287 271.13281,406.37021 C 270.72265,406.89756 270.48828,407.69443 270.42969,408.76083 C 270.66015,408.421 270.94922,408.16123 271.29687,407.98154 C 271.64453,407.79795 272.02734,407.70615 272.44531,407.70615 C 273.32421,407.70615 274.01757,407.97373 274.52539,408.50888 C 275.0371,409.04014 275.29296,409.76474 275.29297,410.68271 C 275.29296,411.58115 275.02734,412.30185 274.49609,412.84482 C 273.96484,413.38779 273.25781,413.65927 272.375,413.65927 C 271.36328,413.65927 270.58984,413.27255 270.05469,412.49911 C 269.51953,411.72177 269.25195,410.59677 269.25195,409.12411 C 269.25195,407.74131 269.58008,406.63975 270.23633,405.81943 C 270.89258,404.99522 271.77343,404.58311 272.87891,404.5831 C 273.17578,404.58311 273.4746,404.6124 273.77539,404.671 C 274.08007,404.7296 274.39648,404.81749 274.72461,404.93467"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6649"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,405.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,405.5206 C 279.25976,405.52061 278.80078,405.82139 278.49219,406.42294 C 278.1875,407.02061 278.03515,407.921 278.03516,409.12411 C 278.03515,410.32334 278.1875,411.22373 278.49219,411.82529 C 278.80078,412.42294 279.25976,412.72177 279.86914,412.72177 C 280.48242,412.72177 280.9414,412.42294 281.24609,411.82529 C 281.55468,411.22373 281.70898,410.32334 281.70898,409.12411 C 281.70898,407.921 281.55468,407.02061 281.24609,406.42294 C 280.9414,405.82139 280.48242,405.52061 279.86914,405.5206 M 279.86914,404.5831 C 280.8496,404.58311 281.59765,404.97178 282.11328,405.74911 C 282.63281,406.52256 282.89257,407.64756 282.89258,409.12411 C 282.89257,410.59677 282.63281,411.72177 282.11328,412.49911 C 281.59765,413.27255 280.8496,413.65927 279.86914,413.65927 C 278.88867,413.65927 278.13867,413.27255 277.61914,412.49911 C 277.10351,411.72177 276.8457,410.59677 276.8457,409.12411 C 276.8457,407.64756 277.10351,406.52256 277.61914,405.74911 C 278.13867,404.97178 278.88867,404.58311 279.86914,404.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6651"
inkscape:connector-curvature="0" />
@ -968,12 +994,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-60R">
<path
d="m 360.375,408.64365 c -0.53125,0 -0.95313,0.18164 -1.26563,0.54492 c -0.30859,0.36328 -0.46289,0.86133 -0.46289,1.49414 c 0,0.62891 0.1543,1.12695 0.46289,1.49414 c 0.3125,0.36328 0.73438,0.54492 1.26563,0.54492 c 0.53125,0 0.95117,-0.18164 1.25977,-0.54492 c 0.31249,-0.36719 0.46874,-0.86523 0.46875,-1.49414 c -10e-6,-0.63281 -0.15626,-1.13086 -0.46875,-1.49414 c -0.3086,-0.36328 -0.72852,-0.54492 -1.25977,-0.54492 m 2.34961,-3.70899 l 0,1.07813 c -0.29688,-0.14062 -0.59766,-0.24804 -0.90234,-0.32227 c -0.30079,-0.0742 -0.59962,-0.11132 -0.89649,-0.11133 c -0.78125,1e-5 -1.37891,0.26368 -1.79297,0.79102 c -0.41016,0.52735 -0.64453,1.32422 -0.70312,2.39062 c 0.23046,-0.33983 0.51953,-0.5996 0.86718,-0.77929 c 0.34766,-0.18359 0.73047,-0.27539 1.14844,-0.27539 c 0.8789,0 1.57226,0.26758 2.08008,0.80273 c 0.51171,0.53126 0.76757,1.25586 0.76758,2.17383 c -1e-5,0.89844 -0.26563,1.61914 -0.79688,2.16211 c -0.53125,0.54297 -1.23828,0.81445 -2.12109,0.81445 c -1.01172,0 -1.78516,-0.38672 -2.32031,-1.16016 c -0.53516,-0.77734 -0.80274,-1.90234 -0.80274,-3.375 c 0,-1.3828 0.32813,-2.48436 0.98438,-3.30468 c 0.65625,-0.82421 1.5371,-1.23632 2.64258,-1.23633 c 0.29687,10e-6 0.59569,0.0293 0.89648,0.0879 c 0.30468,0.0586 0.62109,0.14649 0.94922,0.26367"
d="M 360.375,408.64365 C 359.84375,408.64365 359.42187,408.82529 359.10937,409.18857 C 358.80078,409.55185 358.64648,410.0499 358.64648,410.68271 C 358.64648,411.31162 358.80078,411.80966 359.10937,412.17685 C 359.42187,412.54013 359.84375,412.72177 360.375,412.72177 C 360.90625,412.72177 361.32617,412.54013 361.63477,412.17685 C 361.94726,411.80966 362.10351,411.31162 362.10352,410.68271 C 362.10351,410.0499 361.94726,409.55185 361.63477,409.18857 C 361.32617,408.82529 360.90625,408.64365 360.375,408.64365 M 362.72461,404.93466 L 362.72461,406.01279 C 362.42773,405.87217 362.12695,405.76475 361.82227,405.69052 C 361.52148,405.61632 361.22265,405.5792 360.92578,405.57919 C 360.14453,405.5792 359.54687,405.84287 359.13281,406.37021 C 358.72265,406.89756 358.48828,407.69443 358.42969,408.76083 C 358.66015,408.421 358.94922,408.16123 359.29687,407.98154 C 359.64453,407.79795 360.02734,407.70615 360.44531,407.70615 C 361.32421,407.70615 362.01757,407.97373 362.52539,408.50888 C 363.0371,409.04014 363.29296,409.76474 363.29297,410.68271 C 363.29296,411.58115 363.02734,412.30185 362.49609,412.84482 C 361.96484,413.38779 361.25781,413.65927 360.375,413.65927 C 359.36328,413.65927 358.58984,413.27255 358.05469,412.49911 C 357.51953,411.72177 357.25195,410.59677 357.25195,409.12411 C 357.25195,407.74131 357.58008,406.63975 358.23633,405.81943 C 358.89258,404.99522 359.77343,404.58311 360.87891,404.5831 C 361.17578,404.58311 361.4746,404.6124 361.77539,404.671 C 362.08007,404.7296 362.39648,404.81749 362.72461,404.93467"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6654"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,405.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,405.5206 C 367.25976,405.52061 366.80078,405.82139 366.49219,406.42294 C 366.1875,407.02061 366.03515,407.921 366.03516,409.12411 C 366.03515,410.32334 366.1875,411.22373 366.49219,411.82529 C 366.80078,412.42294 367.25976,412.72177 367.86914,412.72177 C 368.48242,412.72177 368.9414,412.42294 369.24609,411.82529 C 369.55468,411.22373 369.70898,410.32334 369.70898,409.12411 C 369.70898,407.921 369.55468,407.02061 369.24609,406.42294 C 368.9414,405.82139 368.48242,405.52061 367.86914,405.5206 M 367.86914,404.5831 C 368.8496,404.58311 369.59765,404.97178 370.11328,405.74911 C 370.63281,406.52256 370.89257,407.64756 370.89258,409.12411 C 370.89257,410.59677 370.63281,411.72177 370.11328,412.49911 C 369.59765,413.27255 368.8496,413.65927 367.86914,413.65927 C 366.88867,413.65927 366.13867,413.27255 365.61914,412.49911 C 365.10351,411.72177 364.8457,410.59677 364.8457,409.12411 C 364.8457,407.64756 365.10351,406.52256 365.61914,405.74911 C 366.13867,404.97178 366.88867,404.58311 367.86914,404.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6656"
inkscape:connector-curvature="0" />
@ -981,23 +1007,23 @@
<path
inkscape:connector-curvature="0"
id="path4613"
d="m 303.37607,389 l 32.7768,0"
d="M 303.37607,389 L 336.15287,389"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 285.77784,369 l 67.97326,0"
d="M 285.77784,369 L 353.7511,369"
id="path4615"
inkscape:connector-curvature="0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-50L">
<path
d="m 269.70898,364.7413 l 4.64649,0 l 0,0.9961 l -3.5625,0 l 0,2.14453 c 0.17187,-0.0586 0.34375,-0.10156 0.51562,-0.12891 c 0.17188,-0.0312 0.34375,-0.0469 0.51563,-0.0469 c 0.97656,0 1.74999,0.26758 2.32031,0.80273 c 0.57031,0.53516 0.85546,1.25977 0.85547,2.17383 c -10e-6,0.94141 -0.29298,1.67383 -0.87891,2.19726 c -0.58594,0.51954 -1.41211,0.7793 -2.47851,0.7793 c -0.36719,0 -0.74219,-0.0312 -1.125,-0.0937 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.18945 c 0.35156,0.19141 0.71485,0.33398 1.08985,0.42773 c 0.375,0.0937 0.77148,0.14063 1.18945,0.14063 c 0.67578,0 1.21093,-0.17774 1.60547,-0.53321 c 0.39453,-0.35546 0.59179,-0.83788 0.5918,-1.44726 c -1e-5,-0.60937 -0.19727,-1.09179 -0.5918,-1.44727 c -0.39454,-0.35546 -0.92969,-0.5332 -1.60547,-0.5332 c -0.31641,0 -0.63281,0.0352 -0.94922,0.10547 c -0.3125,0.0703 -0.63281,0.17969 -0.96094,0.32812 l 0,-4.39453"
d="M 269.70898,364.7413 L 274.35547,364.7413 L 274.35547,365.7374 L 270.79297,365.7374 L 270.79297,367.88193 C 270.96484,367.82333 271.13672,367.78037 271.30859,367.75302 C 271.48047,367.72182 271.65234,367.70612 271.82422,367.70612 C 272.80078,367.70612 273.57421,367.9737 274.14453,368.50885 C 274.71484,369.04401 274.99999,369.76862 275,370.68268 C 274.99999,371.62409 274.70702,372.35651 274.12109,372.87994 C 273.53515,373.39948 272.70898,373.65924 271.64258,373.65924 C 271.27539,373.65924 270.90039,373.62804 270.51758,373.56554 C 270.13867,373.50304 269.74609,373.40929 269.33984,373.28429 L 269.33984,372.09484 C 269.6914,372.28625 270.05469,372.42882 270.42969,372.52257 C 270.80469,372.61627 271.20117,372.6632 271.61914,372.6632 C 272.29492,372.6632 272.83007,372.48546 273.22461,372.12999 C 273.61914,371.77453 273.8164,371.29211 273.81641,370.68273 C 273.8164,370.07336 273.61914,369.59094 273.22461,369.23546 C 272.83007,368.88 272.29492,368.70226 271.61914,368.70226 C 271.30273,368.70226 270.98633,368.73746 270.66992,368.80773 C 270.35742,368.87803 270.03711,368.98742 269.70898,369.13585 L 269.70898,364.74132"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6659"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,365.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,365.5206 C 279.25976,365.52061 278.80078,365.82139 278.49219,366.42294 C 278.1875,367.02061 278.03515,367.921 278.03516,369.12411 C 278.03515,370.32334 278.1875,371.22373 278.49219,371.82529 C 278.80078,372.42294 279.25976,372.72177 279.86914,372.72177 C 280.48242,372.72177 280.9414,372.42294 281.24609,371.82529 C 281.55468,371.22373 281.70898,370.32334 281.70898,369.12411 C 281.70898,367.921 281.55468,367.02061 281.24609,366.42294 C 280.9414,365.82139 280.48242,365.52061 279.86914,365.5206 M 279.86914,364.5831 C 280.8496,364.58311 281.59765,364.97178 282.11328,365.74911 C 282.63281,366.52256 282.89257,367.64756 282.89258,369.12411 C 282.89257,370.59677 282.63281,371.72177 282.11328,372.49911 C 281.59765,373.27255 280.8496,373.65927 279.86914,373.65927 C 278.88867,373.65927 278.13867,373.27255 277.61914,372.49911 C 277.10351,371.72177 276.8457,370.59677 276.8457,369.12411 C 276.8457,367.64756 277.10351,366.52256 277.61914,365.74911 C 278.13867,364.97178 278.88867,364.58311 279.86914,364.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6661"
inkscape:connector-curvature="0" />
@ -1006,12 +1032,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-50R">
<path
d="m 357.70898,364.7413 l 4.64649,0 l 0,0.9961 l -3.5625,0 l 0,2.14453 c 0.17187,-0.0586 0.34375,-0.10156 0.51562,-0.12891 c 0.17188,-0.0312 0.34375,-0.0469 0.51563,-0.0469 c 0.97656,0 1.74999,0.26758 2.32031,0.80273 c 0.57031,0.53516 0.85546,1.25977 0.85547,2.17383 c -10e-6,0.94141 -0.29298,1.67383 -0.87891,2.19726 c -0.58594,0.51954 -1.41211,0.7793 -2.47851,0.7793 c -0.36719,0 -0.74219,-0.0312 -1.125,-0.0937 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.18945 c 0.35156,0.19141 0.71485,0.33398 1.08985,0.42773 c 0.375,0.0937 0.77148,0.14063 1.18945,0.14063 c 0.67578,0 1.21093,-0.17774 1.60547,-0.53321 c 0.39453,-0.35546 0.59179,-0.83788 0.5918,-1.44726 c -1e-5,-0.60937 -0.19727,-1.09179 -0.5918,-1.44727 c -0.39454,-0.35546 -0.92969,-0.5332 -1.60547,-0.5332 c -0.31641,0 -0.63281,0.0352 -0.94922,0.10547 c -0.3125,0.0703 -0.63281,0.17969 -0.96094,0.32812 l 0,-4.39453"
d="M 357.70898,364.7413 L 362.35547,364.7413 L 362.35547,365.7374 L 358.79297,365.7374 L 358.79297,367.88193 C 358.96484,367.82333 359.13672,367.78037 359.30859,367.75302 C 359.48047,367.72182 359.65234,367.70612 359.82422,367.70612 C 360.80078,367.70612 361.57421,367.9737 362.14453,368.50885 C 362.71484,369.04401 362.99999,369.76862 363,370.68268 C 362.99999,371.62409 362.70702,372.35651 362.12109,372.87994 C 361.53515,373.39948 360.70898,373.65924 359.64258,373.65924 C 359.27539,373.65924 358.90039,373.62804 358.51758,373.56554 C 358.13867,373.50304 357.74609,373.40929 357.33984,373.28429 L 357.33984,372.09484 C 357.6914,372.28625 358.05469,372.42882 358.42969,372.52257 C 358.80469,372.61627 359.20117,372.6632 359.61914,372.6632 C 360.29492,372.6632 360.83007,372.48546 361.22461,372.12999 C 361.61914,371.77453 361.8164,371.29211 361.81641,370.68273 C 361.8164,370.07336 361.61914,369.59094 361.22461,369.23546 C 360.83007,368.88 360.29492,368.70226 359.61914,368.70226 C 359.30273,368.70226 358.98633,368.73746 358.66992,368.80773 C 358.35742,368.87803 358.03711,368.98742 357.70898,369.13585 L 357.70898,364.74132"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6664"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,365.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,365.5206 C 367.25976,365.52061 366.80078,365.82139 366.49219,366.42294 C 366.1875,367.02061 366.03515,367.921 366.03516,369.12411 C 366.03515,370.32334 366.1875,371.22373 366.49219,371.82529 C 366.80078,372.42294 367.25976,372.72177 367.86914,372.72177 C 368.48242,372.72177 368.9414,372.42294 369.24609,371.82529 C 369.55468,371.22373 369.70898,370.32334 369.70898,369.12411 C 369.70898,367.921 369.55468,367.02061 369.24609,366.42294 C 368.9414,365.82139 368.48242,365.52061 367.86914,365.5206 M 367.86914,364.5831 C 368.8496,364.58311 369.59765,364.97178 370.11328,365.74911 C 370.63281,366.52256 370.89257,367.64756 370.89258,369.12411 C 370.89257,370.59677 370.63281,371.72177 370.11328,372.49911 C 369.59765,373.27255 368.8496,373.65927 367.86914,373.65927 C 366.88867,373.65927 366.13867,373.27255 365.61914,372.49911 C 365.10351,371.72177 364.8457,370.59677 364.8457,369.12411 C 364.8457,367.64756 365.10351,366.52256 365.61914,365.74911 C 366.13867,364.97178 366.88867,364.58311 367.86914,364.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6666"
inkscape:connector-curvature="0" />
@ -1019,23 +1045,23 @@
<path
inkscape:connector-curvature="0"
id="path4625"
d="m 303.37607,429 l 32.7768,0"
d="M 303.37607,429 L 336.15287,429"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 285.77784,489 l 67.97326,0"
d="M 285.77784,489 L 353.7511,489"
id="path4627"
inkscape:connector-curvature="0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-80L">
<path
d="m 272.22852,489.33505 c -0.56251,10e-6 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,10e-6 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,10e-6 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,10e-6 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
d="M 272.22852,489.33505 C 271.66601,489.33506 271.22265,489.48545 270.89844,489.78622 C 270.57812,490.08701 270.41797,490.50107 270.41797,491.02841 C 270.41797,491.55576 270.57812,491.96982 270.89844,492.2706 C 271.22265,492.57138 271.66601,492.72177 272.22852,492.72177 C 272.79101,492.72177 273.23437,492.57138 273.55859,492.2706 C 273.88281,491.96591 274.04492,491.55185 274.04492,491.02841 C 274.04492,490.50107 273.88281,490.08701 273.55859,489.78622 C 273.23828,489.48545 272.79492,489.33506 272.22852,489.33505 M 271.04492,488.83115 C 270.53711,488.70615 270.14062,488.46982 269.85547,488.12216 C 269.57422,487.77451 269.43359,487.35068 269.43359,486.85068 C 269.43359,486.15147 269.68164,485.59873 270.17773,485.19247 C 270.67773,484.78623 271.36133,484.58311 272.22852,484.5831 C 273.0996,484.58311 273.7832,484.78623 274.2793,485.19247 C 274.77538,485.59873 275.02343,486.15147 275.02344,486.85068 C 275.02343,487.35068 274.88085,487.77451 274.5957,488.12216 C 274.31445,488.46982 273.92187,488.70615 273.41797,488.83115 C 273.98828,488.96396 274.43163,489.22373 274.74805,489.61044 C 275.06835,489.99717 275.22851,490.46982 275.22852,491.02841 C 275.22851,491.87607 274.96874,492.52646 274.44922,492.97958 C 273.93359,493.43271 273.19335,493.65927 272.22852,493.65927 C 271.26367,493.65927 270.52148,493.43271 270.00195,492.97958 C 269.48633,492.52646 269.22851,491.87607 269.22852,491.02841 C 269.22851,490.46982 269.38867,489.99717 269.70898,489.61044 C 270.0293,489.22373 270.47461,488.96396 271.04492,488.83115 M 270.61133,486.96201 C 270.61133,487.41514 270.75195,487.76865 271.0332,488.02255 C 271.31836,488.27646 271.71679,488.40342 272.22852,488.40341 C 272.73632,488.40342 273.13281,488.27646 273.41797,488.02255 C 273.70703,487.76865 273.85156,487.41514 273.85156,486.96201 C 273.85156,486.50889 273.70703,486.15537 273.41797,485.90146 C 273.13281,485.64756 272.73632,485.52061 272.22852,485.5206 C 271.71679,485.52061 271.31836,485.64756 271.0332,485.90146 C 270.75195,486.15537 270.61133,486.50889 270.61133,486.96201"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6629"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,485.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,485.5206 C 279.25976,485.52061 278.80078,485.82139 278.49219,486.42294 C 278.1875,487.02061 278.03515,487.921 278.03516,489.12411 C 278.03515,490.32334 278.1875,491.22373 278.49219,491.82529 C 278.80078,492.42294 279.25976,492.72177 279.86914,492.72177 C 280.48242,492.72177 280.9414,492.42294 281.24609,491.82529 C 281.55468,491.22373 281.70898,490.32334 281.70898,489.12411 C 281.70898,487.921 281.55468,487.02061 281.24609,486.42294 C 280.9414,485.82139 280.48242,485.52061 279.86914,485.5206 M 279.86914,484.5831 C 280.8496,484.58311 281.59765,484.97178 282.11328,485.74911 C 282.63281,486.52256 282.89257,487.64756 282.89258,489.12411 C 282.89257,490.59677 282.63281,491.72177 282.11328,492.49911 C 281.59765,493.27255 280.8496,493.65927 279.86914,493.65927 C 278.88867,493.65927 278.13867,493.27255 277.61914,492.49911 C 277.10351,491.72177 276.8457,490.59677 276.8457,489.12411 C 276.8457,487.64756 277.10351,486.52256 277.61914,485.74911 C 278.13867,484.97178 278.88867,484.58311 279.86914,484.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6631"
inkscape:connector-curvature="0" />
@ -1044,36 +1070,36 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-80R">
<path
d="m 360.22852,489.33505 c -0.56251,10e-6 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,10e-6 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,10e-6 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,10e-6 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
d="M 360.22852,489.33505 C 359.66601,489.33506 359.22265,489.48545 358.89844,489.78622 C 358.57812,490.08701 358.41797,490.50107 358.41797,491.02841 C 358.41797,491.55576 358.57812,491.96982 358.89844,492.2706 C 359.22265,492.57138 359.66601,492.72177 360.22852,492.72177 C 360.79101,492.72177 361.23437,492.57138 361.55859,492.2706 C 361.88281,491.96591 362.04492,491.55185 362.04492,491.02841 C 362.04492,490.50107 361.88281,490.08701 361.55859,489.78622 C 361.23828,489.48545 360.79492,489.33506 360.22852,489.33505 M 359.04492,488.83115 C 358.53711,488.70615 358.14062,488.46982 357.85547,488.12216 C 357.57422,487.77451 357.43359,487.35068 357.43359,486.85068 C 357.43359,486.15147 357.68164,485.59873 358.17773,485.19247 C 358.67773,484.78623 359.36133,484.58311 360.22852,484.5831 C 361.0996,484.58311 361.7832,484.78623 362.2793,485.19247 C 362.77538,485.59873 363.02343,486.15147 363.02344,486.85068 C 363.02343,487.35068 362.88085,487.77451 362.5957,488.12216 C 362.31445,488.46982 361.92187,488.70615 361.41797,488.83115 C 361.98828,488.96396 362.43163,489.22373 362.74805,489.61044 C 363.06835,489.99717 363.22851,490.46982 363.22852,491.02841 C 363.22851,491.87607 362.96874,492.52646 362.44922,492.97958 C 361.93359,493.43271 361.19335,493.65927 360.22852,493.65927 C 359.26367,493.65927 358.52148,493.43271 358.00195,492.97958 C 357.48633,492.52646 357.22851,491.87607 357.22852,491.02841 C 357.22851,490.46982 357.38867,489.99717 357.70898,489.61044 C 358.0293,489.22373 358.47461,488.96396 359.04492,488.83115 M 358.61133,486.96201 C 358.61133,487.41514 358.75195,487.76865 359.0332,488.02255 C 359.31836,488.27646 359.71679,488.40342 360.22852,488.40341 C 360.73632,488.40342 361.13281,488.27646 361.41797,488.02255 C 361.70703,487.76865 361.85156,487.41514 361.85156,486.96201 C 361.85156,486.50889 361.70703,486.15537 361.41797,485.90146 C 361.13281,485.64756 360.73632,485.52061 360.22852,485.5206 C 359.71679,485.52061 359.31836,485.64756 359.0332,485.90146 C 358.75195,486.15537 358.61133,486.50889 358.61133,486.96201"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6797"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,485.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,485.5206 C 367.25976,485.52061 366.80078,485.82139 366.49219,486.42294 C 366.1875,487.02061 366.03515,487.921 366.03516,489.12411 C 366.03515,490.32334 366.1875,491.22373 366.49219,491.82529 C 366.80078,492.42294 367.25976,492.72177 367.86914,492.72177 C 368.48242,492.72177 368.9414,492.42294 369.24609,491.82529 C 369.55468,491.22373 369.70898,490.32334 369.70898,489.12411 C 369.70898,487.921 369.55468,487.02061 369.24609,486.42294 C 368.9414,485.82139 368.48242,485.52061 367.86914,485.5206 M 367.86914,484.5831 C 368.8496,484.58311 369.59765,484.97178 370.11328,485.74911 C 370.63281,486.52256 370.89257,487.64756 370.89258,489.12411 C 370.89257,490.59677 370.63281,491.72177 370.11328,492.49911 C 369.59765,493.27255 368.8496,493.65927 367.86914,493.65927 C 366.88867,493.65927 366.13867,493.27255 365.61914,492.49911 C 365.10351,491.72177 364.8457,490.59677 364.8457,489.12411 C 364.8457,487.64756 365.10351,486.52256 365.61914,485.74911 C 366.13867,484.97178 366.88867,484.58311 367.86914,484.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6799"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 303.37607,469 l 32.7768,0"
d="M 303.37607,469 L 336.15287,469"
id="path4637"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4639"
d="m 285.77784,449 l 67.97326,0"
d="M 285.77784,449 L 353.7511,449"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-70L">
<path
d="m 269.39844,444.7413 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
d="M 269.39844,444.7413 L 275.02344,444.7413 L 275.02344,445.24521 L 271.84766,453.48935 L 270.61133,453.48935 L 273.59961,445.7374 L 269.39844,445.7374 L 269.39844,444.7413"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6639"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,445.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 279.86914,445.5206 C 279.25976,445.52061 278.80078,445.82139 278.49219,446.42294 C 278.1875,447.02061 278.03515,447.921 278.03516,449.12411 C 278.03515,450.32334 278.1875,451.22373 278.49219,451.82529 C 278.80078,452.42294 279.25976,452.72177 279.86914,452.72177 C 280.48242,452.72177 280.9414,452.42294 281.24609,451.82529 C 281.55468,451.22373 281.70898,450.32334 281.70898,449.12411 C 281.70898,447.921 281.55468,447.02061 281.24609,446.42294 C 280.9414,445.82139 280.48242,445.52061 279.86914,445.5206 M 279.86914,444.5831 C 280.8496,444.58311 281.59765,444.97178 282.11328,445.74911 C 282.63281,446.52256 282.89257,447.64756 282.89258,449.12411 C 282.89257,450.59677 282.63281,451.72177 282.11328,452.49911 C 281.59765,453.27255 280.8496,453.65927 279.86914,453.65927 C 278.88867,453.65927 278.13867,453.27255 277.61914,452.49911 C 277.10351,451.72177 276.8457,450.59677 276.8457,449.12411 C 276.8457,447.64756 277.10351,446.52256 277.61914,445.74911 C 278.13867,444.97178 278.88867,444.58311 279.86914,444.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6641"
inkscape:connector-curvature="0" />
@ -1082,24 +1108,24 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-70R">
<path
d="m 357.39844,444.7413 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
d="M 357.39844,444.7413 L 363.02344,444.7413 L 363.02344,445.24521 L 359.84766,453.48935 L 358.61133,453.48935 L 361.59961,445.7374 L 357.39844,445.7374 L 357.39844,444.7413"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6644"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,445.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 367.86914,445.5206 C 367.25976,445.52061 366.80078,445.82139 366.49219,446.42294 C 366.1875,447.02061 366.03515,447.921 366.03516,449.12411 C 366.03515,450.32334 366.1875,451.22373 366.49219,451.82529 C 366.80078,452.42294 367.25976,452.72177 367.86914,452.72177 C 368.48242,452.72177 368.9414,452.42294 369.24609,451.82529 C 369.55468,451.22373 369.70898,450.32334 369.70898,449.12411 C 369.70898,447.921 369.55468,447.02061 369.24609,446.42294 C 368.9414,445.82139 368.48242,445.52061 367.86914,445.5206 M 367.86914,444.5831 C 368.8496,444.58311 369.59765,444.97178 370.11328,445.74911 C 370.63281,446.52256 370.89257,447.64756 370.89258,449.12411 C 370.89257,450.59677 370.63281,451.72177 370.11328,452.49911 C 369.59765,453.27255 368.8496,453.65927 367.86914,453.65927 C 366.88867,453.65927 366.13867,453.27255 365.61914,452.49911 C 365.10351,451.72177 364.8457,450.59677 364.8457,449.12411 C 364.8457,447.64756 365.10351,446.52256 365.61914,445.74911 C 366.13867,444.97178 366.88867,444.58311 367.86914,444.5831"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6646"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 303.37607,509 l 32.7768,0"
d="M 303.37607,509 L 336.15287,509"
id="path4649"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
d="m 285.77784,529 l 67.97326,0"
d="M 285.77784,529 L 353.7511,529"
id="pitch-90"
inkscape:connector-curvature="0"
inkscape:label="#path4663" />
@ -1107,12 +1133,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-90L">
<path
d="m 269.73242,533.30774 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.1797 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,10e-6 1.7832,0.38868 2.31445,1.16602 c 0.53515,0.77344 0.80273,1.89844 0.80274,3.375 c -1e-5,1.3789 -0.32813,2.48047 -0.98438,3.30468 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,10e-6 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
d="M 269.73242,533.30774 L 269.73242,532.22961 C 270.0293,532.37024 270.33008,532.47766 270.63477,532.55188 C 270.93945,532.62608 271.23828,532.66321 271.53125,532.66321 C 272.3125,532.66321 272.9082,532.40149 273.31836,531.87805 C 273.73242,531.35071 273.96874,530.55188 274.02734,529.48157 C 273.80078,529.81751 273.51367,530.07532 273.16602,530.255 C 272.81835,530.4347 272.43359,530.52454 272.01172,530.52454 C 271.13672,530.52454 270.44336,530.26087 269.93164,529.73352 C 269.42383,529.20227 269.16992,528.47767 269.16992,527.55969 C 269.16992,526.66126 269.43555,525.94056 269.9668,525.39758 C 270.49804,524.85462 271.20508,524.58314 272.08789,524.58313 C 273.0996,524.58314 273.87109,524.97181 274.40234,525.74915 C 274.93749,526.52259 275.20507,527.64759 275.20508,529.12415 C 275.20507,530.50305 274.87695,531.60462 274.2207,532.42883 C 273.56835,533.24915 272.68945,533.6593 271.58398,533.6593 C 271.28711,533.6593 270.98633,533.63 270.68164,533.5714 C 270.37695,533.5128 270.06055,533.42492 269.73242,533.30773 M 272.08789,529.59874 C 272.61914,529.59875 273.03906,529.41711 273.34766,529.05382 C 273.66015,528.69055 273.8164,528.1925 273.81641,527.55968 C 273.8164,526.93078 273.66015,526.43469 273.34766,526.0714 C 273.03906,525.70422 272.61914,525.52063 272.08789,525.52062 C 271.55664,525.52063 271.13476,525.70422 270.82227,526.0714 C 270.51367,526.43469 270.35937,526.93078 270.35937,527.55968 C 270.35937,528.1925 270.51367,528.69055 270.82227,529.05382 C 271.13476,529.41711 271.55664,529.59875 272.08789,529.59874"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6619"
inkscape:connector-curvature="0" />
<path
d="m 279.86914,525.52063 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70118 c -1e-5,1.19922 0.15234,2.09961 0.45703,2.70117 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70117 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70118 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16602 c 0.51953,0.77344 0.77929,1.89844 0.7793,3.375 c -1e-5,1.47265 -0.25977,2.59765 -0.7793,3.375 c -0.51563,0.77343 -1.26368,1.16015 -2.24414,1.16015 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16015 c -0.51563,-0.77735 -0.77344,-1.90235 -0.77344,-3.375 c 0,-1.47656 0.25781,-2.60156 0.77344,-3.375 c 0.51953,-0.77734 1.26953,-1.16601 2.25,-1.16602"
d="M 279.86914,525.52063 C 279.25976,525.52064 278.80078,525.82142 278.49219,526.42297 C 278.1875,527.02064 278.03515,527.92103 278.03516,529.12415 C 278.03515,530.32337 278.1875,531.22376 278.49219,531.82532 C 278.80078,532.42297 279.25976,532.7218 279.86914,532.7218 C 280.48242,532.7218 280.9414,532.42297 281.24609,531.82532 C 281.55468,531.22376 281.70898,530.32337 281.70898,529.12415 C 281.70898,527.92103 281.55468,527.02064 281.24609,526.42297 C 280.9414,525.82142 280.48242,525.52064 279.86914,525.52063 M 279.86914,524.58313 C 280.8496,524.58314 281.59765,524.97181 282.11328,525.74915 C 282.63281,526.52259 282.89257,527.64759 282.89258,529.12415 C 282.89257,530.5968 282.63281,531.7218 282.11328,532.49915 C 281.59765,533.27258 280.8496,533.6593 279.86914,533.6593 C 278.88867,533.6593 278.13867,533.27258 277.61914,532.49915 C 277.10351,531.7218 276.8457,530.5968 276.8457,529.12415 C 276.8457,527.64759 277.10351,526.52259 277.61914,525.74915 C 278.13867,524.97181 278.88867,524.58314 279.86914,524.58313"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6621"
inkscape:connector-curvature="0" />
@ -1121,12 +1147,12 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="pitch_label-90R">
<path
d="m 357.73242,533.30774 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.1797 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,10e-6 1.7832,0.38868 2.31445,1.16602 c 0.53515,0.77344 0.80273,1.89844 0.80274,3.375 c -1e-5,1.3789 -0.32813,2.48047 -0.98438,3.30468 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,10e-6 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
d="M 357.73242,533.30774 L 357.73242,532.22961 C 358.0293,532.37024 358.33008,532.47766 358.63477,532.55188 C 358.93945,532.62608 359.23828,532.66321 359.53125,532.66321 C 360.3125,532.66321 360.9082,532.40149 361.31836,531.87805 C 361.73242,531.35071 361.96874,530.55188 362.02734,529.48157 C 361.80078,529.81751 361.51367,530.07532 361.16602,530.255 C 360.81835,530.4347 360.43359,530.52454 360.01172,530.52454 C 359.13672,530.52454 358.44336,530.26087 357.93164,529.73352 C 357.42383,529.20227 357.16992,528.47767 357.16992,527.55969 C 357.16992,526.66126 357.43555,525.94056 357.9668,525.39758 C 358.49804,524.85462 359.20508,524.58314 360.08789,524.58313 C 361.0996,524.58314 361.87109,524.97181 362.40234,525.74915 C 362.93749,526.52259 363.20507,527.64759 363.20508,529.12415 C 363.20507,530.50305 362.87695,531.60462 362.2207,532.42883 C 361.56835,533.24915 360.68945,533.6593 359.58398,533.6593 C 359.28711,533.6593 358.98633,533.63 358.68164,533.5714 C 358.37695,533.5128 358.06055,533.42492 357.73242,533.30773 M 360.08789,529.59874 C 360.61914,529.59875 361.03906,529.41711 361.34766,529.05382 C 361.66015,528.69055 361.8164,528.1925 361.81641,527.55968 C 361.8164,526.93078 361.66015,526.43469 361.34766,526.0714 C 361.03906,525.70422 360.61914,525.52063 360.08789,525.52062 C 359.55664,525.52063 359.13476,525.70422 358.82227,526.0714 C 358.51367,526.43469 358.35937,526.93078 358.35937,527.55968 C 358.35937,528.1925 358.51367,528.69055 358.82227,529.05382 C 359.13476,529.41711 359.55664,529.59875 360.08789,529.59874"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6624"
inkscape:connector-curvature="0" />
<path
d="m 367.86914,525.52063 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70118 c -1e-5,1.19922 0.15234,2.09961 0.45703,2.70117 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70117 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70118 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16602 c 0.51953,0.77344 0.77929,1.89844 0.7793,3.375 c -1e-5,1.47265 -0.25977,2.59765 -0.7793,3.375 c -0.51563,0.77343 -1.26368,1.16015 -2.24414,1.16015 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16015 c -0.51563,-0.77735 -0.77344,-1.90235 -0.77344,-3.375 c 0,-1.47656 0.25781,-2.60156 0.77344,-3.375 c 0.51953,-0.77734 1.26953,-1.16601 2.25,-1.16602"
d="M 367.86914,525.52063 C 367.25976,525.52064 366.80078,525.82142 366.49219,526.42297 C 366.1875,527.02064 366.03515,527.92103 366.03516,529.12415 C 366.03515,530.32337 366.1875,531.22376 366.49219,531.82532 C 366.80078,532.42297 367.25976,532.7218 367.86914,532.7218 C 368.48242,532.7218 368.9414,532.42297 369.24609,531.82532 C 369.55468,531.22376 369.70898,530.32337 369.70898,529.12415 C 369.70898,527.92103 369.55468,527.02064 369.24609,526.42297 C 368.9414,525.82142 368.48242,525.52064 367.86914,525.52063 M 367.86914,524.58313 C 368.8496,524.58314 369.59765,524.97181 370.11328,525.74915 C 370.63281,526.52259 370.89257,527.64759 370.89258,529.12415 C 370.89257,530.5968 370.63281,531.7218 370.11328,532.49915 C 369.59765,533.27258 368.8496,533.6593 367.86914,533.6593 C 366.88867,533.6593 366.13867,533.27258 365.61914,532.49915 C 365.10351,531.7218 364.8457,530.5968 364.8457,529.12415 C 364.8457,527.64759 365.10351,526.52259 365.61914,525.74915 C 366.13867,524.97181 366.88867,524.58314 367.86914,524.58313"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6626"
inkscape:connector-curvature="0" />
@ -1718,7 +1744,8 @@
inkscape:groupmode="layer"
id="layer85"
inkscape:label="battery-bg"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<g
id="battery-bg"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
@ -1763,6 +1790,7 @@
inkscape:groupmode="layer"
id="layer88"
inkscape:label="battery-labels"
style="display:inline"
sodipodi:insensitive="true">
<g
id="battery-labels"
@ -2029,12 +2057,14 @@
inkscape:groupmode="layer"
id="layer59"
inkscape:label="system-panel"
style="display:inline">
style="display:none"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
id="layer76"
inkscape:label="system-bg"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<g
style="display:inline"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
@ -2316,7 +2346,8 @@
inkscape:groupmode="layer"
id="layer77"
inkscape:label="system-text"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<g
id="system-frame-type"
transform="translate(32.17869,-1.42917)">
@ -2571,11 +2602,6 @@
id="path11442"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 167.5385,391.77888 L 167.5385,285.05446"
id="path6284"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
@ -2596,7 +2622,7 @@
inkscape:groupmode="layer"
id="layer45"
inkscape:label="oplm-panel"
style="display:none"
style="display:inline"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
@ -2633,7 +2659,7 @@
sodipodi:end="7.1558499"
sodipodi:start="2.268928"
transform="matrix(0.86211044,0,0,0.86194421,-20.308987,63.354658)"
d="M 206.05385,346.92456 C 204.36155,345.48236 204.14082,342.91992 205.56082,341.20118 C 206.98083,339.48243 209.50385,339.25825 211.19615,340.70044 C 212.88845,342.14264 213.10918,344.70508 211.68918,346.42382 C 211.5395,346.60499 211.37453,346.77254 211.19615,346.92456"
d="M 206.05385,346.92456 A 4,4.0625 0 1 1 211.19615,346.92456"
sodipodi:ry="4.0625"
sodipodi:rx="4"
sodipodi:cy="343.8125"
@ -2649,7 +2675,7 @@
sodipodi:cy="343.8125"
sodipodi:rx="4"
sodipodi:ry="4.0625"
d="M 206.625,347.33073 C 204.71183,346.2089 204.05633,343.72431 205.1609,341.78125 C 206.26547,339.83819 208.71183,339.17244 210.625,340.29427 C 212.53817,341.4161 213.19367,343.90069 212.0891,345.84375 C 211.73803,346.46133 211.23308,346.97417 210.625,347.33073"
d="M 206.625,347.33073 A 4,4.0625 0 1 1 210.625,347.33073"
transform="matrix(1.4009295,0,0,1.4098503,-132.61235,-125.01936)"
sodipodi:start="2.0943951"
sodipodi:end="7.3303829"
@ -2690,11 +2716,11 @@
sodipodi:cy="347.5"
sodipodi:rx="52.5"
sodipodi:ry="52.5"
d="M 11.14525,322.85275 C 19.03496,308.01436 33.551447,297.8498 50.19341,295.51093"
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 50.19341,295.51093"
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)" />
<path
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
d="M 50.19341,295.51093 C 68.767318,292.90053 87.322945,300.39749 98.870565,315.17777"
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
@ -2752,7 +2778,7 @@
sodipodi:cy="347.5"
sodipodi:rx="52.5"
sodipodi:ry="52.5"
d="M 11.14525,322.85275 C 19.03496,308.01436 33.551447,297.8498 50.19341,295.51093"
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 50.19341,295.51093"
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
@ -2817,7 +2843,7 @@
<path
sodipodi:open="true"
transform="matrix(0.9168972,0.08021811,-0.08062108,0.92150318,82.802213,38.659321)"
d="M 11.14525,322.85275 C 19.03496,308.01436 33.551447,297.8498 50.19341,295.51093"
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 50.19341,295.51093"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
@ -2835,7 +2861,7 @@
sodipodi:cy="347.5"
sodipodi:rx="52.5"
sodipodi:ry="52.5"
d="M 11.14525,322.85275 C 24.757553,297.25172 56.546234,287.53295 82.147255,301.14525 C 88.643363,304.59929 94.34096,309.38014 98.870565,315.17777"
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 98.870565,315.17777"
transform="matrix(0.9168972,0.08021811,-0.08062108,0.92150318,82.802213,38.659321)"
sodipodi:start="3.6302848"
sodipodi:end="5.6199602"
@ -3045,7 +3071,7 @@
<path
sodipodi:open="true"
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)"
d="M 50.19341,295.51093 C 68.767318,292.90053 87.322945,300.39749 98.870565,315.17777"
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
@ -3305,176 +3331,25 @@
id="layer3"
inkscape:label="info"
style="display:inline"
transform="translate(0,-4)"
sodipodi:insensitive="true">
transform="translate(0,-4)">
<g
inkscape:groupmode="layer"
id="layer48"
inkscape:label="info-bg"
style="display:inline"
transform="translate(0,4)">
transform="translate(0,4)"
sodipodi:insensitive="true">
<g
id="info-bg"
inkscape:label="#g4460"
transform="matrix(1.1653043,0,0,1,0.08265213,0)">
transform="matrix(1.1653043,0,0,1,-0.25937667,-0.19161584)">
<rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect4615"
width="550.5"
height="58.383232"
height="60"
x="-0.5"
y="-0.5" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="telemetry-rx-label"
transform="translate(0,-2.08992)" />
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-label"
transform="matrix(1.7146685,0,0,1.7146685,-176.95942,-5.87421)">
<path
d="m 190.74466,9.2578888 l 0.79687,0 l 1.22657,4.9296872 l 1.22265,-4.9296872 l 0.88672,0 l 1.22656,4.9296872 l 1.22266,-4.9296872 l 0.80078,0 l -1.46484,5.8320312 l -0.99219,0 l -1.23047,-5.0625 l -1.24219,5.0625 l -0.99218,0 l -1.46094,-5.8320312"
style="font-size:8px;fill:#ffffff"
id="path6323"
inkscape:connector-curvature="0" />
<path
d="m 199.9595,9.9063263 l 0,2.1914067 l 0.99219,0 c 0.36719,3e-6 0.65104,-0.09505 0.85156,-0.285157 c 0.20052,-0.1901 0.30078,-0.460933 0.30078,-0.8125 c 0,-0.348954 -0.10026,-0.618485 -0.30078,-0.808593 c -0.20052,-0.1901 -0.48437,-0.2851515 -0.85156,-0.2851567 l -0.99219,0 m -0.78906,-0.6484375 l 1.78125,0 c 0.65364,5.8e-6 1.14713,0.1484432 1.48047,0.4453125 c 0.33593,0.2942759 0.5039,0.7265667 0.50391,1.2968747 c -1e-5,0.575525 -0.16798,1.01042 -0.50391,1.304688 c -0.33334,0.294273 -0.82683,0.441408 -1.48047,0.441406 l -0.99219,0 l 0,2.34375 l -0.78906,0 l 0,-5.8320312"
style="font-size:8px;fill:#ffffff"
id="path6325"
inkscape:connector-curvature="0" />
<path
d="m 203.18997,9.2578888 l 4.9336,0 l 0,0.6640625 l -2.07032,0 l 0,5.1679687 l -0.79297,0 l 0,-5.1679687 l -2.07031,0 l 0,-0.6640625"
style="font-size:8px;fill:#ffffff"
id="path6327"
inkscape:connector-curvature="0" />
</g>
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-heading-label"
transform="matrix(1.6526792,0,0,1.6526792,-165.99391,-4.9162026)">
<path
d="m 191.26419,24.257889 l 0.78906,0 l 0,2.390625 l 2.86719,0 l 0,-2.390625 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-2.777344 l -2.86719,0 l 0,2.777344 l -0.78906,0 l 0,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6330"
inkscape:connector-curvature="0" />
<path
d="m 198.06888,24.906326 l 0,4.535157 l 0.95312,0 c 0.80469,0 1.39323,-0.182291 1.76563,-0.546875 c 0.37499,-0.364582 0.56249,-0.940102 0.5625,-1.726563 c -1e-5,-0.781246 -0.18751,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76563,-0.546875 l -0.95312,0 m -0.78906,-0.648437 l 1.62109,0 c 1.1302,6e-6 1.95963,0.235682 2.48828,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79297,2.203125 c -1e-5,1.00521 -0.26563,1.743491 -0.79688,2.214844 c -0.53125,0.471354 -1.35937,0.707031 -2.48437,0.707031 l -1.62109,0 l 0,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6332"
inkscape:connector-curvature="0" />
<path
d="m 207.41263,29.257889 l 0,-1.566406 l -1.28906,0 l 0,-0.648438 l 2.07031,0 l 0,2.503906 c -0.30469,0.216146 -0.64063,0.380209 -1.00781,0.492188 c -0.3672,0.109375 -0.75912,0.164062 -1.17579,0.164062 c -0.91146,0 -1.625,-0.265625 -2.14062,-0.796875 c -0.51302,-0.533853 -0.76953,-1.276039 -0.76953,-2.226562 c 0,-0.953121 0.25651,-1.695308 0.76953,-2.226563 c 0.51562,-0.533848 1.22916,-0.800775 2.14062,-0.800781 c 0.38021,6e-6 0.74089,0.04688 1.08204,0.140625 c 0.34374,0.09376 0.66015,0.231776 0.94921,0.414063 l 0,0.839843 c -0.29167,-0.247391 -0.60156,-0.433588 -0.92968,-0.558593 c -0.32813,-0.124995 -0.67318,-0.187495 -1.03516,-0.1875 c -0.71354,5e-6 -1.25,0.199223 -1.60937,0.597656 c -0.35678,0.398442 -0.53516,0.992191 -0.53516,1.78125 c 0,0.78646 0.17838,1.378908 0.53516,1.777344 c 0.35937,0.398438 0.89583,0.597656 1.60937,0.597656 c 0.27864,0 0.52734,-0.02344 0.74609,-0.07031 c 0.21875,-0.04948 0.41536,-0.124999 0.58985,-0.226562"
style="font-size:8px;fill:#ffffff"
id="path6334"
inkscape:connector-curvature="0" />
</g>
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-distance-label"
transform="matrix(1.6526792,0,0,1.6526792,-194.69489,-29.916207)">
<path
d="m 278.05325,24.906326 l 0,4.535157 l 0.95313,0 c 0.80468,0 1.39322,-0.182291 1.76562,-0.546875 c 0.375,-0.364582 0.5625,-0.940102 0.5625,-1.726563 c 0,-0.781246 -0.1875,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76562,-0.546875 l -0.95313,0 m -0.78906,-0.648437 l 1.62109,0 c 1.13021,6e-6 1.95964,0.235682 2.48829,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79296,2.203125 c 0,1.00521 -0.26563,1.743491 -0.79687,2.214844 c -0.53125,0.471354 -1.35938,0.707031 -2.48438,0.707031 l -1.62109,0 l 0,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6373"
inkscape:connector-curvature="0" />
<path
d="m 283.42044,24.257889 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6375"
inkscape:connector-curvature="0" />
<path
d="m 289.27591,24.449295 l 0,0.769531 c -0.29948,-0.143224 -0.58204,-0.249995 -0.84766,-0.320312 c -0.26562,-0.07031 -0.52214,-0.105464 -0.76953,-0.105469 c -0.42969,5e-6 -0.76172,0.08334 -0.99609,0.25 c -0.23177,0.166672 -0.34766,0.403651 -0.34766,0.710938 c 0,0.257816 0.0768,0.453128 0.23047,0.585937 c 0.15625,0.130212 0.45052,0.235681 0.88281,0.316406 l 0.47657,0.09766 c 0.58853,0.111982 1.02213,0.309898 1.30078,0.59375 c 0.28124,0.281252 0.42187,0.658856 0.42187,1.132812 c 0,0.565105 -0.19011,0.99349 -0.57031,1.285156 c -0.37761,0.291667 -0.9323,0.4375 -1.66406,0.4375 c -0.27605,0 -0.57032,-0.03125 -0.88282,-0.09375 c -0.30989,-0.0625 -0.63151,-0.154947 -0.96484,-0.277343 l 0,-0.8125 c 0.32031,0.179688 0.63411,0.315104 0.94141,0.40625 c 0.30729,0.09115 0.60937,0.136719 0.90625,0.136718 c 0.45051,1e-6 0.79817,-0.08854 1.04297,-0.265625 c 0.24478,-0.177082 0.36718,-0.429686 0.36718,-0.757812 c 0,-0.286457 -0.0885,-0.510415 -0.26562,-0.671875 c -0.17448,-0.161456 -0.46224,-0.28255 -0.86328,-0.363281 l -0.48047,-0.09375 c -0.58855,-0.117185 -1.01433,-0.300779 -1.27735,-0.550782 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 c 0,-0.515621 0.18099,-0.92187 0.54297,-1.21875 c 0.36458,-0.29687 0.86589,-0.445307 1.50391,-0.445313 c 0.27343,6e-6 0.55208,0.02475 0.83594,0.07422 c 0.28385,0.04949 0.57421,0.123703 0.87109,0.222656"
style="font-size:8px;fill:#ffffff"
id="path6377"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3906"
style="font-size:8px;fill:#ffffff"
d="m 290.04935,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062" />
</g>
<g
transform="matrix(1.6526118,0,0,1.6526118,-194.77079,-4.9141713)"
id="waypoint-total-distance-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
d="m 262.75404,24.449065 l 0,0.769559 c -0.29949,-0.143229 -0.58206,-0.250004 -0.84768,-0.320324 c -0.26565,-0.07031 -0.52216,-0.105467 -0.76956,-0.105472 c -0.42971,5e-6 -0.76175,0.08335 -0.99614,0.250008 c -0.23178,0.166678 -0.34767,0.403666 -0.34766,0.710964 c -1e-5,0.257826 0.0768,0.453145 0.23047,0.585958 c 0.15626,0.130217 0.45054,0.235689 0.88284,0.316418 l 0.47659,0.09765 c 0.58855,0.111987 1.02217,0.30991 1.30082,0.593772 c 0.28126,0.281263 0.42189,0.65888 0.42189,1.132854 c 0,0.565125 -0.19011,0.993526 -0.57033,1.285202 c -0.37762,0.291678 -0.93232,0.437516 -1.66412,0.437516 c -0.27605,0 -0.57033,-0.03125 -0.88284,-0.09375 c -0.30991,-0.0625 -0.63154,-0.154954 -0.96488,-0.277354 l 0,-0.81253 c 0.32032,0.179695 0.63413,0.315117 0.94144,0.406265 c 0.3073,0.09115 0.6094,0.136724 0.90628,0.136723 c 0.45054,1e-6 0.7982,-0.08854 1.04301,-0.265634 c 0.24479,-0.177089 0.36719,-0.429701 0.3672,-0.75784 c -10e-6,-0.286466 -0.0886,-0.510432 -0.26563,-0.671899 c -0.1745,-0.161462 -0.46226,-0.28256 -0.86332,-0.363295 l -0.48049,-0.09375 c -0.58856,-0.117188 -1.01436,-0.300789 -1.27739,-0.550801 C 259.13151,26.609299 259,26.261631 259,25.816299 c 0,-0.51564 0.18099,-0.921903 0.54299,-1.218795 c 0.3646,-0.296879 0.86591,-0.445322 1.50395,-0.445328 c 0.27345,6e-6 0.55211,0.02475 0.83598,0.07422 c 0.28385,0.04949 0.57423,0.123708 0.87112,0.222665"
id="path3913"
inkscape:connector-curvature="0" />
<path
d="m 264.2,24.25817 l 0.77785,0 l 0,3.475443 c 0,0.61309 0.11113,1.055023 0.33337,1.325803 c 0.22224,0.268226 0.58243,0.402339 1.08057,0.402339 c 0.49558,0 0.85449,-0.134113 1.07673,-0.402339 c 0.22224,-0.27078 0.33337,-0.712713 0.33337,-1.325803 l 0,-3.475443 l 0.77786,0 l 0,3.571238 c -10e-6,0.745925 -0.18521,1.309199 -0.55561,1.689824 c -0.36786,0.380625 -0.91198,0.570938 -1.63235,0.570938 c -0.72294,0 -1.26961,-0.190313 -1.64001,-0.570938 C 264.38392,29.138607 264.2,28.575333 264.2,27.829408 l 0,-3.571238"
id="path3915"
inkscape:connector-curvature="0" />
<path
d="m 269.94609,24.25817 l 1.17578,0 l 1.48827,3.968729 l 1.49608,-3.968729 l 1.17578,0 l 0,5.832 l -0.76953,0 l 0,-5.121066 l -1.5039,3.999978 l -0.79296,0 l -1.5039,-3.999978 l 0,5.121066 l -0.76562,0 l 0,-5.832"
id="path3917"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3900"
style="font-size:8px;fill:#ffffff"
d="m 278.05325,24.906326 l 0,4.535157 l 0.95313,0 c 0.80468,0 1.39322,-0.182291 1.76562,-0.546875 c 0.375,-0.364582 0.5625,-0.940102 0.5625,-1.726563 c 0,-0.781246 -0.1875,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76562,-0.546875 l -0.95313,0 m -0.78906,-0.648437 l 1.62109,0 c 1.13021,6e-6 1.95964,0.235682 2.48829,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79296,2.203125 c 0,1.00521 -0.26563,1.743491 -0.79687,2.214844 c -0.53125,0.471354 -1.35938,0.707031 -2.48438,0.707031 l -1.62109,0 l 0,-5.832031" />
<path
d="m 290.04935,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062"
style="font-size:8px;fill:#ffffff"
id="path6379"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3902"
style="font-size:8px;fill:#ffffff"
d="m 283.42044,24.257889 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-5.832031" />
<path
inkscape:connector-curvature="0"
id="path3904"
style="font-size:8px;fill:#ffffff"
d="m 289.27591,24.449295 l 0,0.769531 c -0.29948,-0.143224 -0.58204,-0.249995 -0.84766,-0.320312 c -0.26562,-0.07031 -0.52214,-0.105464 -0.76953,-0.105469 c -0.42969,5e-6 -0.76172,0.08334 -0.99609,0.25 c -0.23177,0.166672 -0.34766,0.403651 -0.34766,0.710938 c 0,0.257816 0.0768,0.453128 0.23047,0.585937 c 0.15625,0.130212 0.45052,0.235681 0.88281,0.316406 l 0.47657,0.09766 c 0.58853,0.111982 1.02213,0.309898 1.30078,0.59375 c 0.28124,0.281252 0.42187,0.658856 0.42187,1.132812 c 0,0.565105 -0.19011,0.99349 -0.57031,1.285156 c -0.37761,0.291667 -0.9323,0.4375 -1.66406,0.4375 c -0.27605,0 -0.57032,-0.03125 -0.88282,-0.09375 c -0.30989,-0.0625 -0.63151,-0.154947 -0.96484,-0.277343 l 0,-0.8125 c 0.32031,0.179688 0.63411,0.315104 0.94141,0.40625 c 0.30729,0.09115 0.60937,0.136719 0.90625,0.136718 c 0.45051,1e-6 0.79817,-0.08854 1.04297,-0.265625 c 0.24478,-0.177082 0.36718,-0.429686 0.36718,-0.757812 c 0,-0.286457 -0.0885,-0.510415 -0.26562,-0.671875 c -0.17448,-0.161456 -0.46224,-0.28255 -0.86328,-0.363281 l -0.48047,-0.09375 c -0.58855,-0.117185 -1.01433,-0.300779 -1.27735,-0.550782 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 c 0,-0.515621 0.18099,-0.92187 0.54297,-1.21875 c 0.36458,-0.29687 0.86589,-0.445307 1.50391,-0.445313 c 0.27343,6e-6 0.55208,0.02475 0.83594,0.07422 c 0.28385,0.04949 0.57421,0.123703 0.87109,0.222656" />
</g>
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-mode-label"
transform="matrix(1.6526792,0,0,1.6526792,-155.46815,-5.1260141)">
<path
d="m 316.26419,9.2578888 l 1.17578,0 l 1.48828,3.9687502 l 1.4961,-3.9687502 l 1.17578,0 l 0,5.8320312 l -0.76953,0 l 0,-5.1210937 l -1.50391,3.9999997 l -0.79297,0 l -1.5039,-3.9999997 l 0,5.1210937 l -0.76563,0 l 0,-5.8320312"
style="font-size:8px;fill:#ffffff"
id="path6382"
inkscape:connector-curvature="0" />
<path
d="m 325.53763,9.793045 c -0.57292,5.3e-6 -1.02865,0.213547 -1.36719,0.640625 c -0.33594,0.427088 -0.50391,1.009118 -0.50391,1.746094 c 0,0.734377 0.16797,1.315106 0.50391,1.742187 c 0.33854,0.427084 0.79427,0.640626 1.36719,0.640625 c 0.57291,10e-7 1.02604,-0.213541 1.35937,-0.640625 c 0.33594,-0.427081 0.5039,-1.00781 0.50391,-1.742187 c -1e-5,-0.736976 -0.16797,-1.319006 -0.50391,-1.746094 c -0.33333,-0.427078 -0.78646,-0.6406197 -1.35937,-0.640625 m 0,-0.640625 c 0.8177,6e-6 1.47135,0.2747453 1.96094,0.8242188 c 0.48957,0.5468792 0.73436,1.2812542 0.73437,2.2031252 c -10e-6,0.919273 -0.2448,1.653647 -0.73437,2.203125 c -0.48959,0.546875 -1.14324,0.820312 -1.96094,0.820312 c -0.82032,0 -1.47657,-0.273437 -1.96875,-0.820312 c -0.48959,-0.546874 -0.73438,-1.281248 -0.73438,-2.203125 c 0,-0.921871 0.24479,-1.656246 0.73438,-2.2031252 c 0.49218,-0.5494735 1.14843,-0.8242128 1.96875,-0.8242188"
style="font-size:8px;fill:#ffffff"
id="path6384"
inkscape:connector-curvature="0" />
<path
d="m 330.25638,9.9063263 l 0,4.5351567 l 0.95312,0 c 0.80469,0 1.39323,-0.182291 1.76563,-0.546875 c 0.37499,-0.364582 0.56249,-0.940102 0.5625,-1.726563 c -10e-6,-0.781246 -0.18751,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.5468695 -1.76563,-0.5468747 l -0.95312,0 m -0.78906,-0.6484375 l 1.62109,0 c 1.1302,5.8e-6 1.95963,0.2356827 2.48828,0.7070312 c 0.52864,0.468755 0.79296,1.203129 0.79297,2.203125 c -1e-5,1.00521 -0.26563,1.743491 -0.79688,2.214844 c -0.53125,0.471354 -1.35937,0.707031 -2.48437,0.707031 l -1.62109,0 l 0,-5.8320312"
style="font-size:8px;fill:#ffffff"
id="path6386"
inkscape:connector-curvature="0" />
<path
d="m 335.62357,9.2578888 l 3.6875,0 l 0,0.6640625 l -2.89844,0 l 0,1.7265627 l 2.77734,0 l 0,0.664062 l -2.77734,0 l 0,2.113282 l 2.96875,0 l 0,0.664062 l -3.75781,0 l 0,-5.8320312"
style="font-size:8px;fill:#ffffff"
id="path6388"
inkscape:connector-curvature="0" />
</g>
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-eta-label"
transform="matrix(1.7146685,0,0,1.7146685,-265.93598,-6.5942385)">
<path
d="m 378.26419,24.257889 l 3.6875,0 l 0,0.664062 l -2.89844,0 l 0,1.726563 l 2.77735,0 l 0,0.664062 l -2.77735,0 l 0,2.113282 l 2.96875,0 l 0,0.664062 l -3.75781,0 l 0,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6802"
inkscape:connector-curvature="0" />
<path
d="m 382.5181,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062"
style="font-size:8px;fill:#ffffff"
id="path6804"
inkscape:connector-curvature="0" />
<path
d="m 389.54153,25.035233 l -1.07031,2.902343 l 2.14453,0 l -1.07422,-2.902343 m -0.44531,-0.777344 l 0.89453,0 l 2.22266,5.832031 l -0.82031,0 l -0.53125,-1.496094 l -2.62891,0 l -0.53125,1.496094 l -0.83203,0 l 2.22656,-5.832031"
style="font-size:8px;fill:#ffffff"
id="path6806"
inkscape:connector-curvature="0" />
</g>
y="-2.1167679" />
<g
transform="matrix(0.89658208,0,0,1.0166066,0.62788103,-5.1809092)"
style="display:inline"
@ -3489,7 +3364,7 @@
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
<path
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
d="m 6.071295,40.854862 l 8.702853,-8.702852 l 3.698713,-0.652713 c 1.081677,1.081677 2.282834,2.282834 3.263569,3.263569 c 0.543928,0.543928 -0.435142,3.916284 -0.435142,3.916284 l -8.702853,8.702852 z"
d="M 6.071295,40.854862 L 14.774148,32.15201 L 18.472861,31.499297 C 19.554538,32.580974 20.755695,33.782131 21.73643,34.762866 C 22.280358,35.306794 21.301288,38.67915 21.301288,38.67915 L 12.598435,47.382002 z"
id="path8779"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
@ -3501,7 +3376,7 @@
sodipodi:cy="-18"
sodipodi:rx="9"
sodipodi:ry="9"
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
d="M 86,-18 A 9,9 0 0 1 72.5,-10.205771"
transform="matrix(0.59409,-0.16048456,0.16048456,0.59409,-14.282595,58.387875)"
sodipodi:start="0"
sodipodi:end="2.0943951"
@ -3511,7 +3386,7 @@
sodipodi:end="2.0943951"
sodipodi:start="0"
transform="matrix(0.94346447,-0.22256175,0.2922493,0.96228953,-38.3717,70.240727)"
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
d="M 86,-18 A 9,9 0 0 1 72.5,-10.205771"
sodipodi:ry="9"
sodipodi:rx="9"
sodipodi:cy="-18"
@ -3523,7 +3398,7 @@
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path8785"
d="m 34.355566,12.570595 l -8.702852,8.702849 L 25,24.972157 c 1.081677,1.081678 2.282835,2.282835 3.263569,3.263569 c 0.543929,0.543929 3.916285,-0.435142 3.916285,-0.435142 l 8.702852,-8.702853 z"
d="M 34.355566,12.570595 L 25.652714,21.273444 L 25,24.972157 C 26.081677,26.053835 27.282835,27.254992 28.263569,28.235726 C 28.807498,28.779655 32.179854,27.800584 32.179854,27.800584 L 40.882706,19.097731 z"
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
</g>
</g>
@ -3532,8 +3407,165 @@
inkscape:groupmode="layer"
id="layer58"
inkscape:label="waypoint"
style="display:inline"
style="display:none"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
id="layer92"
inkscape:label="waypoint-labels"
style="display:inline"
sodipodi:insensitive="true">
<g
id="waypoint-labels">
<g
transform="matrix(1.9981106,0,0,1.7146685,-206.12893,-1.8742101)"
id="waypoint-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6323"
style="font-size:8px;fill:#ffffff"
d="M 190.74466,9.2578888 L 191.54153,9.2578888 L 192.7681,14.187576 L 193.99075,9.2578888 L 194.87747,9.2578888 L 196.10403,14.187576 L 197.32669,9.2578888 L 198.12747,9.2578888 L 196.66263,15.08992 L 195.67044,15.08992 L 194.43997,10.02742 L 193.19778,15.08992 L 192.2056,15.08992 L 190.74466,9.2578888" />
<path
inkscape:connector-curvature="0"
id="path6325"
style="font-size:8px;fill:#ffffff"
d="M 199.9595,9.9063263 L 199.9595,12.097733 L 200.95169,12.097733 C 201.31888,12.097736 201.60273,12.002683 201.80325,11.812576 C 202.00377,11.622476 202.10403,11.351643 202.10403,11.000076 C 202.10403,10.651122 202.00377,10.381591 201.80325,10.191483 C 201.60273,10.001383 201.31888,9.9063315 200.95169,9.9063263 L 199.9595,9.9063263 M 199.17044,9.2578888 L 200.95169,9.2578888 C 201.60533,9.2578946 202.09882,9.406332 202.43216,9.7032013 C 202.76809,9.9974772 202.93606,10.429768 202.93607,11.000076 C 202.93606,11.575601 202.76809,12.010496 202.43216,12.304764 C 202.09882,12.599037 201.60533,12.746172 200.95169,12.74617 L 199.9595,12.74617 L 199.9595,15.08992 L 199.17044,15.08992 L 199.17044,9.2578888" />
<path
inkscape:connector-curvature="0"
id="path6327"
style="font-size:8px;fill:#ffffff"
d="M 203.18997,9.2578888 L 208.12357,9.2578888 L 208.12357,9.9219513 L 206.05325,9.9219513 L 206.05325,15.08992 L 205.26028,15.08992 L 205.26028,9.9219513 L 203.18997,9.9219513 L 203.18997,9.2578888" />
</g>
<g
transform="matrix(1.9258742,0,0,1.6526792,-193.35077,-0.91620312)"
id="waypoint-heading-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6330"
style="font-size:8px;fill:#ffffff"
d="M 191.26419,24.257889 L 192.05325,24.257889 L 192.05325,26.648514 L 194.92044,26.648514 L 194.92044,24.257889 L 195.7095,24.257889 L 195.7095,30.08992 L 194.92044,30.08992 L 194.92044,27.312576 L 192.05325,27.312576 L 192.05325,30.08992 L 191.26419,30.08992 L 191.26419,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6332"
style="font-size:8px;fill:#ffffff"
d="M 198.06888,24.906326 L 198.06888,29.441483 L 199.022,29.441483 C 199.82669,29.441483 200.41523,29.259192 200.78763,28.894608 C 201.16262,28.530026 201.35012,27.954506 201.35013,27.168045 C 201.35012,26.386799 201.16262,25.815185 200.78763,25.453201 C 200.41523,25.088623 199.82669,24.906331 199.022,24.906326 L 198.06888,24.906326 M 197.27982,24.257889 L 198.90091,24.257889 C 200.03111,24.257895 200.86054,24.493571 201.38919,24.96492 C 201.91783,25.433675 202.18215,26.168049 202.18216,27.168045 C 202.18215,28.173255 201.91653,28.911536 201.38528,29.382889 C 200.85403,29.854243 200.02591,30.08992 198.90091,30.08992 L 197.27982,30.08992 L 197.27982,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6334"
style="font-size:8px;fill:#ffffff"
d="M 207.41263,29.257889 L 207.41263,27.691483 L 206.12357,27.691483 L 206.12357,27.043045 L 208.19388,27.043045 L 208.19388,29.546951 C 207.88919,29.763097 207.55325,29.92716 207.18607,30.039139 C 206.81887,30.148514 206.42695,30.203201 206.01028,30.203201 C 205.09882,30.203201 204.38528,29.937576 203.86966,29.406326 C 203.35664,28.872473 203.10013,28.130287 203.10013,27.179764 C 203.10013,26.226643 203.35664,25.484456 203.86966,24.953201 C 204.38528,24.419353 205.09882,24.152426 206.01028,24.15242 C 206.39049,24.152426 206.75117,24.1993 207.09232,24.293045 C 207.43606,24.386805 207.75247,24.524821 208.04153,24.707108 L 208.04153,25.546951 C 207.74986,25.29956 207.43997,25.113363 207.11185,24.988358 C 206.78372,24.863363 206.43867,24.800863 206.07669,24.800858 C 205.36315,24.800863 204.82669,25.000081 204.46732,25.398514 C 204.11054,25.796956 203.93216,26.390705 203.93216,27.179764 C 203.93216,27.966224 204.11054,28.558672 204.46732,28.957108 C 204.82669,29.355546 205.36315,29.554764 206.07669,29.554764 C 206.35533,29.554764 206.60403,29.531324 206.82278,29.484454 C 207.04153,29.434974 207.23814,29.359455 207.41263,29.257892" />
</g>
<g
transform="matrix(1.9258742,0,0,1.6526792,-226.79615,-25.916207)"
id="waypoint-distance-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6373"
style="font-size:8px;fill:#ffffff"
d="M 278.05325,24.906326 L 278.05325,29.441483 L 279.00638,29.441483 C 279.81106,29.441483 280.3996,29.259192 280.772,28.894608 C 281.147,28.530026 281.3345,27.954506 281.3345,27.168045 C 281.3345,26.386799 281.147,25.815185 280.772,25.453201 C 280.3996,25.088623 279.81106,24.906331 279.00638,24.906326 L 278.05325,24.906326 M 277.26419,24.257889 L 278.88528,24.257889 C 280.01549,24.257895 280.84492,24.493571 281.37357,24.96492 C 281.90221,25.433675 282.16653,26.168049 282.16653,27.168045 C 282.16653,28.173255 281.9009,28.911536 281.36966,29.382889 C 280.83841,29.854243 280.01028,30.08992 278.88528,30.08992 L 277.26419,30.08992 L 277.26419,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6375"
style="font-size:8px;fill:#ffffff"
d="M 283.42044,24.257889 L 284.2095,24.257889 L 284.2095,30.08992 L 283.42044,30.08992 L 283.42044,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6377"
style="font-size:8px;fill:#ffffff"
d="M 289.27591,24.449295 L 289.27591,25.218826 C 288.97643,25.075602 288.69387,24.968831 288.42825,24.898514 C 288.16263,24.828204 287.90611,24.79305 287.65872,24.793045 C 287.22903,24.79305 286.897,24.876385 286.66263,25.043045 C 286.43086,25.209717 286.31497,25.446696 286.31497,25.753983 C 286.31497,26.011799 286.39177,26.207111 286.54544,26.33992 C 286.70169,26.470132 286.99596,26.575601 287.42825,26.656326 L 287.90482,26.753986 C 288.49335,26.865968 288.92695,27.063884 289.2056,27.347736 C 289.48684,27.628988 289.62747,28.006592 289.62747,28.480548 C 289.62747,29.045653 289.43736,29.474038 289.05716,29.765704 C 288.67955,30.057371 288.12486,30.203204 287.3931,30.203204 C 287.11705,30.203204 286.82278,30.171954 286.51028,30.109454 C 286.20039,30.046954 285.87877,29.954507 285.54544,29.832111 L 285.54544,29.019611 C 285.86575,29.199299 286.17955,29.334715 286.48685,29.425861 C 286.79414,29.517011 287.09622,29.56258 287.3931,29.562579 C 287.84361,29.56258 288.19127,29.474039 288.43607,29.296954 C 288.68085,29.119872 288.80325,28.867268 288.80325,28.539142 C 288.80325,28.252685 288.71475,28.028727 288.53763,27.867267 C 288.36315,27.705811 288.07539,27.584717 287.67435,27.503986 L 287.19388,27.410236 C 286.60533,27.293051 286.17955,27.109457 285.91653,26.859454 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 C 285.522,25.300865 285.70299,24.894616 286.06497,24.597736 C 286.42955,24.300866 286.93086,24.152429 287.56888,24.152423 C 287.84231,24.152429 288.12096,24.177173 288.40482,24.226643 C 288.68867,24.276133 288.97903,24.350346 289.27591,24.449299" />
<path
d="M 290.04935,24.257889 L 294.98294,24.257889 L 294.98294,24.921951 L 292.91263,24.921951 L 292.91263,30.08992 L 292.11966,30.08992 L 292.11966,24.921951 L 290.04935,24.921951 L 290.04935,24.257889"
style="font-size:8px;fill:#ffffff"
id="path3906"
inkscape:connector-curvature="0" />
</g>
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="waypoint-total-distance-label"
transform="matrix(1.9257956,0,0,1.6526118,-226.8846,-0.91417112)">
<path
inkscape:connector-curvature="0"
id="path3913"
d="M 262.75404,24.449065 L 262.75404,25.218624 C 262.45455,25.075395 262.17198,24.96862 261.90636,24.8983 C 261.64071,24.82799 261.3842,24.792833 261.1368,24.792828 C 260.70709,24.792833 260.37505,24.876178 260.14066,25.042836 C 259.90888,25.209514 259.79299,25.446502 259.793,25.7538 C 259.79299,26.011626 259.8698,26.206945 260.02347,26.339758 C 260.17973,26.469975 260.47401,26.575447 260.90631,26.656176 L 261.3829,26.753826 C 261.97145,26.865813 262.40507,27.063736 262.68372,27.347598 C 262.96498,27.628861 263.10561,28.006478 263.10561,28.480452 C 263.10561,29.045577 262.9155,29.473978 262.53528,29.765654 C 262.15766,30.057332 261.60296,30.20317 260.87116,30.20317 C 260.59511,30.20317 260.30083,30.17192 259.98832,30.10942 C 259.67841,30.04692 259.35678,29.954466 259.02344,29.832066 L 259.02344,29.019536 C 259.34376,29.199231 259.65757,29.334653 259.96488,29.425801 C 260.27218,29.516951 260.57428,29.562525 260.87116,29.562524 C 261.3217,29.562525 261.66936,29.473984 261.91417,29.29689 C 262.15896,29.119801 262.28136,28.867189 262.28137,28.53905 C 262.28136,28.252584 262.19277,28.028618 262.01574,27.867151 C 261.84124,27.705689 261.55348,27.584591 261.15242,27.503856 L 260.67193,27.410106 C 260.08337,27.292918 259.65757,27.109317 259.39454,26.859305 C 259.13151,26.609299 259,26.261631 259,25.816299 C 259,25.300659 259.18099,24.894396 259.54299,24.597504 C 259.90759,24.300625 260.4089,24.152182 261.04694,24.152176 C 261.32039,24.152182 261.59905,24.176926 261.88292,24.226396 C 262.16677,24.275886 262.45715,24.350104 262.75404,24.449061" />
<path
inkscape:connector-curvature="0"
id="path3915"
d="M 264.2,24.25817 L 264.97785,24.25817 L 264.97785,27.733613 C 264.97785,28.346703 265.08898,28.788636 265.31122,29.059416 C 265.53346,29.327642 265.89365,29.461755 266.39179,29.461755 C 266.88737,29.461755 267.24628,29.327642 267.46852,29.059416 C 267.69076,28.788636 267.80189,28.346703 267.80189,27.733613 L 267.80189,24.25817 L 268.57975,24.25817 L 268.57975,27.829408 C 268.57974,28.575333 268.39454,29.138607 268.02414,29.519232 C 267.65628,29.899857 267.11216,30.09017 266.39179,30.09017 C 265.66885,30.09017 265.12218,29.899857 264.75178,29.519232 C 264.38392,29.138607 264.2,28.575333 264.2,27.829408 L 264.2,24.25817" />
<path
inkscape:connector-curvature="0"
id="path3917"
d="M 269.94609,24.25817 L 271.12187,24.25817 L 272.61014,28.226899 L 274.10622,24.25817 L 275.282,24.25817 L 275.282,30.09017 L 274.51247,30.09017 L 274.51247,24.969104 L 273.00857,28.969082 L 272.21561,28.969082 L 270.71171,24.969104 L 270.71171,30.09017 L 269.94609,30.09017 L 269.94609,24.25817" />
<path
d="M 278.05325,24.906326 L 278.05325,29.441483 L 279.00638,29.441483 C 279.81106,29.441483 280.3996,29.259192 280.772,28.894608 C 281.147,28.530026 281.3345,27.954506 281.3345,27.168045 C 281.3345,26.386799 281.147,25.815185 280.772,25.453201 C 280.3996,25.088623 279.81106,24.906331 279.00638,24.906326 L 278.05325,24.906326 M 277.26419,24.257889 L 278.88528,24.257889 C 280.01549,24.257895 280.84492,24.493571 281.37357,24.96492 C 281.90221,25.433675 282.16653,26.168049 282.16653,27.168045 C 282.16653,28.173255 281.9009,28.911536 281.36966,29.382889 C 280.83841,29.854243 280.01028,30.08992 278.88528,30.08992 L 277.26419,30.08992 L 277.26419,24.257889"
style="font-size:8px;fill:#ffffff"
id="path3900"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path6379"
style="font-size:8px;fill:#ffffff"
d="M 290.04935,24.257889 L 294.98294,24.257889 L 294.98294,24.921951 L 292.91263,24.921951 L 292.91263,30.08992 L 292.11966,30.08992 L 292.11966,24.921951 L 290.04935,24.921951 L 290.04935,24.257889" />
<path
d="M 283.42044,24.257889 L 284.2095,24.257889 L 284.2095,30.08992 L 283.42044,30.08992 L 283.42044,24.257889"
style="font-size:8px;fill:#ffffff"
id="path3902"
inkscape:connector-curvature="0" />
<path
d="M 289.27591,24.449295 L 289.27591,25.218826 C 288.97643,25.075602 288.69387,24.968831 288.42825,24.898514 C 288.16263,24.828204 287.90611,24.79305 287.65872,24.793045 C 287.22903,24.79305 286.897,24.876385 286.66263,25.043045 C 286.43086,25.209717 286.31497,25.446696 286.31497,25.753983 C 286.31497,26.011799 286.39177,26.207111 286.54544,26.33992 C 286.70169,26.470132 286.99596,26.575601 287.42825,26.656326 L 287.90482,26.753986 C 288.49335,26.865968 288.92695,27.063884 289.2056,27.347736 C 289.48684,27.628988 289.62747,28.006592 289.62747,28.480548 C 289.62747,29.045653 289.43736,29.474038 289.05716,29.765704 C 288.67955,30.057371 288.12486,30.203204 287.3931,30.203204 C 287.11705,30.203204 286.82278,30.171954 286.51028,30.109454 C 286.20039,30.046954 285.87877,29.954507 285.54544,29.832111 L 285.54544,29.019611 C 285.86575,29.199299 286.17955,29.334715 286.48685,29.425861 C 286.79414,29.517011 287.09622,29.56258 287.3931,29.562579 C 287.84361,29.56258 288.19127,29.474039 288.43607,29.296954 C 288.68085,29.119872 288.80325,28.867268 288.80325,28.539142 C 288.80325,28.252685 288.71475,28.028727 288.53763,27.867267 C 288.36315,27.705811 288.07539,27.584717 287.67435,27.503986 L 287.19388,27.410236 C 286.60533,27.293051 286.17955,27.109457 285.91653,26.859454 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 C 285.522,25.300865 285.70299,24.894616 286.06497,24.597736 C 286.42955,24.300866 286.93086,24.152429 287.56888,24.152423 C 287.84231,24.152429 288.12096,24.177173 288.40482,24.226643 C 288.68867,24.276133 288.97903,24.350346 289.27591,24.449299"
style="font-size:8px;fill:#ffffff"
id="path3904"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.9258742,0,0,1.6526792,-181.08506,-1.1260141)"
id="waypoint-mode-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6382"
style="font-size:8px;fill:#ffffff"
d="M 316.26419,9.2578888 L 317.43997,9.2578888 L 318.92825,13.226639 L 320.42435,9.2578888 L 321.60013,9.2578888 L 321.60013,15.08992 L 320.8306,15.08992 L 320.8306,9.9688263 L 319.32669,13.968826 L 318.53372,13.968826 L 317.02982,9.9688263 L 317.02982,15.08992 L 316.26419,15.08992 L 316.26419,9.2578888" />
<path
inkscape:connector-curvature="0"
id="path6384"
style="font-size:8px;fill:#ffffff"
d="M 325.53763,9.793045 C 324.96471,9.7930503 324.50898,10.006592 324.17044,10.43367 C 323.8345,10.860758 323.66653,11.442788 323.66653,12.179764 C 323.66653,12.914141 323.8345,13.49487 324.17044,13.921951 C 324.50898,14.349035 324.96471,14.562577 325.53763,14.562576 C 326.11054,14.562577 326.56367,14.349035 326.897,13.921951 C 327.23294,13.49487 327.4009,12.914141 327.40091,12.179764 C 327.4009,11.442788 327.23294,10.860758 326.897,10.43367 C 326.56367,10.006592 326.11054,9.7930503 325.53763,9.793045 M 325.53763,9.15242 C 326.35533,9.152426 327.00898,9.4271653 327.49857,9.9766388 C 327.98814,10.523518 328.23293,11.257893 328.23294,12.179764 C 328.23293,13.099037 327.98814,13.833411 327.49857,14.382889 C 327.00898,14.929764 326.35533,15.203201 325.53763,15.203201 C 324.71731,15.203201 324.06106,14.929764 323.56888,14.382889 C 323.07929,13.836015 322.8345,13.101641 322.8345,12.179764 C 322.8345,11.257893 323.07929,10.523518 323.56888,9.9766388 C 324.06106,9.4271653 324.71731,9.152426 325.53763,9.15242" />
<path
inkscape:connector-curvature="0"
id="path6386"
style="font-size:8px;fill:#ffffff"
d="M 330.25638,9.9063263 L 330.25638,14.441483 L 331.2095,14.441483 C 332.01419,14.441483 332.60273,14.259192 332.97513,13.894608 C 333.35012,13.530026 333.53762,12.954506 333.53763,12.168045 C 333.53762,11.386799 333.35012,10.815185 332.97513,10.453201 C 332.60273,10.088623 332.01419,9.9063315 331.2095,9.9063263 L 330.25638,9.9063263 M 329.46732,9.2578888 L 331.08841,9.2578888 C 332.21861,9.2578946 333.04804,9.4935715 333.57669,9.96492 C 334.10533,10.433675 334.36965,11.168049 334.36966,12.168045 C 334.36965,13.173255 334.10403,13.911536 333.57278,14.382889 C 333.04153,14.854243 332.21341,15.08992 331.08841,15.08992 L 329.46732,15.08992 L 329.46732,9.2578888" />
<path
inkscape:connector-curvature="0"
id="path6388"
style="font-size:8px;fill:#ffffff"
d="M 335.62357,9.2578888 L 339.31107,9.2578888 L 339.31107,9.9219513 L 336.41263,9.9219513 L 336.41263,11.648514 L 339.18997,11.648514 L 339.18997,12.312576 L 336.41263,12.312576 L 336.41263,14.425858 L 339.38138,14.425858 L 339.38138,15.08992 L 335.62357,15.08992 L 335.62357,9.2578888" />
</g>
<g
transform="matrix(1.9981106,0,0,1.7146685,-309.8137,-2.5942391)"
id="waypoint-eta-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6802"
style="font-size:8px;fill:#ffffff"
d="M 378.26419,24.257889 L 381.95169,24.257889 L 381.95169,24.921951 L 379.05325,24.921951 L 379.05325,26.648514 L 381.8306,26.648514 L 381.8306,27.312576 L 379.05325,27.312576 L 379.05325,29.425858 L 382.022,29.425858 L 382.022,30.08992 L 378.26419,30.08992 L 378.26419,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6804"
style="font-size:8px;fill:#ffffff"
d="M 382.5181,24.257889 L 387.45169,24.257889 L 387.45169,24.921951 L 385.38138,24.921951 L 385.38138,30.08992 L 384.58841,30.08992 L 384.58841,24.921951 L 382.5181,24.921951 L 382.5181,24.257889" />
<path
inkscape:connector-curvature="0"
id="path6806"
style="font-size:8px;fill:#ffffff"
d="M 389.54153,25.035233 L 388.47122,27.937576 L 390.61575,27.937576 L 389.54153,25.035233 M 389.09622,24.257889 L 389.99075,24.257889 L 392.21341,30.08992 L 391.3931,30.08992 L 390.86185,28.593826 L 388.23294,28.593826 L 387.70169,30.08992 L 386.86966,30.08992 L 389.09622,24.257889" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer20"
@ -3544,42 +3576,42 @@
id="waypoint-eta-text"
transform="matrix(1.1017861,0,0,1.1017861,61.29339,14.558341)">
<path
d="m 400.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 400.29349,23.12117 C 399.68411,23.121178 399.22513,23.421959 398.91653,24.023514 C 398.61184,24.621177 398.4595,25.521566 398.4595,26.724686 C 398.4595,27.923908 398.61184,28.824297 398.91653,29.425858 C 399.22513,30.023515 399.68411,30.322343 400.29349,30.322342 C 400.90676,30.322343 401.36575,30.023515 401.67044,29.425858 C 401.97903,28.824297 402.13333,27.923908 402.13333,26.724686 C 402.13333,25.521566 401.97903,24.621177 401.67044,24.023514 C 401.36575,23.421959 400.90676,23.121178 400.29349,23.12117 M 400.29349,22.18367 C 401.27395,22.183679 402.022,22.57235 402.53763,23.349686 C 403.05715,24.12313 403.31692,25.248129 403.31693,26.724686 C 403.31692,28.197345 403.05715,29.322344 402.53763,30.099686 C 402.022,30.873123 401.27395,31.259842 400.29349,31.259842 C 399.31302,31.259842 398.56302,30.873123 398.04349,30.099686 C 397.52786,29.322344 397.27005,28.197345 397.27005,26.724686 C 397.27005,25.248129 397.52786,24.12313 398.04349,23.349686 C 398.56302,22.57235 399.31302,22.183679 400.29349,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6441"
inkscape:connector-curvature="0" />
<path
d="m 407.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 407.93411,23.12117 C 407.32473,23.121178 406.86575,23.421959 406.55716,24.023514 C 406.25247,24.621177 406.10013,25.521566 406.10013,26.724686 C 406.10013,27.923908 406.25247,28.824297 406.55716,29.425858 C 406.86575,30.023515 407.32473,30.322343 407.93411,30.322342 C 408.54739,30.322343 409.00637,30.023515 409.31107,29.425858 C 409.61965,28.824297 409.77395,27.923908 409.77396,26.724686 C 409.77395,25.521566 409.61965,24.621177 409.31107,24.023514 C 409.00637,23.421959 408.54739,23.121178 407.93411,23.12117 M 407.93411,22.18367 C 408.91458,22.183679 409.66262,22.57235 410.17825,23.349686 C 410.69778,24.12313 410.95754,25.248129 410.95755,26.724686 C 410.95754,28.197345 410.69778,29.322344 410.17825,30.099686 C 409.66262,30.873123 408.91458,31.259842 407.93411,31.259842 C 406.95364,31.259842 406.20364,30.873123 405.68411,30.099686 C 405.16849,29.322344 404.91067,28.197345 404.91068,26.724686 C 404.91067,25.248129 405.16849,24.12313 405.68411,23.349686 C 406.20364,22.57235 406.95364,22.183679 407.93411,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6443"
inkscape:connector-curvature="0" />
<path
d="m 413.16653,29.601639 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281 m 0,-4.716797 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281"
d="M 413.16653,29.601639 L 414.40286,29.601639 L 414.40286,31.08992 L 413.16653,31.08992 L 413.16653,29.601639 M 413.16653,24.884842 L 414.40286,24.884842 L 414.40286,26.373123 L 413.16653,26.373123 L 413.16653,24.884842"
style="font-size:12px;fill:#ff00ff"
id="path6445"
inkscape:connector-curvature="0" />
<path
d="m 419.62943,23.12117 c -0.60938,8e-6 -1.06837,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.77929,3.375 c 0,1.472659 -0.25977,2.597658 -0.77929,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98048,0 -1.73048,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51952,-0.777336 1.26952,-1.166007 2.25,-1.166016"
d="M 419.62943,23.12117 C 419.02005,23.121178 418.56106,23.421959 418.25247,24.023514 C 417.94778,24.621177 417.79544,25.521566 417.79544,26.724686 C 417.79544,27.923908 417.94778,28.824297 418.25247,29.425858 C 418.56106,30.023515 419.02005,30.322343 419.62943,30.322342 C 420.2427,30.322343 420.70169,30.023515 421.00638,29.425858 C 421.31497,28.824297 421.46926,27.923908 421.46927,26.724686 C 421.46926,25.521566 421.31497,24.621177 421.00638,24.023514 C 420.70169,23.421959 420.2427,23.121178 419.62943,23.12117 M 419.62943,22.18367 C 420.60989,22.183679 421.35794,22.57235 421.87357,23.349686 C 422.39309,24.12313 422.65286,25.248129 422.65286,26.724686 C 422.65286,28.197345 422.39309,29.322344 421.87357,30.099686 C 421.35794,30.873123 420.60989,31.259842 419.62943,31.259842 C 418.64895,31.259842 417.89895,30.873123 417.37943,30.099686 C 416.8638,29.322344 416.60599,28.197345 416.60599,26.724686 C 416.60599,25.248129 416.8638,24.12313 417.37943,23.349686 C 417.89895,22.57235 418.64895,22.183679 419.62943,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6447"
inkscape:connector-curvature="0" />
<path
d="m 427.27005,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498052 -0.45703,2.701172 c -10e-6,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 427.27005,23.12117 C 426.66067,23.121178 426.20169,23.421959 425.8931,24.023514 C 425.58841,24.621177 425.43606,25.521566 425.43607,26.724686 C 425.43606,27.923908 425.58841,28.824297 425.8931,29.425858 C 426.20169,30.023515 426.66067,30.322343 427.27005,30.322342 C 427.88333,30.322343 428.34231,30.023515 428.647,29.425858 C 428.95559,28.824297 429.10989,27.923908 429.10989,26.724686 C 429.10989,25.521566 428.95559,24.621177 428.647,24.023514 C 428.34231,23.421959 427.88333,23.121178 427.27005,23.12117 M 427.27005,22.18367 C 428.25051,22.183679 428.99856,22.57235 429.51419,23.349686 C 430.03372,24.12313 430.29348,25.248129 430.29349,26.724686 C 430.29348,28.197345 430.03372,29.322344 429.51419,30.099686 C 428.99856,30.873123 428.25051,31.259842 427.27005,31.259842 C 426.28958,31.259842 425.53958,30.873123 425.02005,30.099686 C 424.50442,29.322344 424.24661,28.197345 424.24661,26.724686 C 424.24661,25.248129 424.50442,24.12313 425.02005,23.349686 C 425.53958,22.57235 426.28958,22.183679 427.27005,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6449"
inkscape:connector-curvature="0" />
<path
d="m 432.50247,29.601639 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281 m 0,-4.716797 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281"
d="M 432.50247,29.601639 L 433.7388,29.601639 L 433.7388,31.08992 L 432.50247,31.08992 L 432.50247,29.601639 M 432.50247,24.884842 L 433.7388,24.884842 L 433.7388,26.373123 L 432.50247,26.373123 L 432.50247,24.884842"
style="font-size:12px;fill:#ff00ff"
id="path6451"
inkscape:connector-curvature="0" />
<path
d="m 438.96536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 438.96536,23.12117 C 438.35598,23.121178 437.897,23.421959 437.58841,24.023514 C 437.28372,24.621177 437.13138,25.521566 437.13138,26.724686 C 437.13138,27.923908 437.28372,28.824297 437.58841,29.425858 C 437.897,30.023515 438.35598,30.322343 438.96536,30.322342 C 439.57864,30.322343 440.03762,30.023515 440.34232,29.425858 C 440.6509,28.824297 440.8052,27.923908 440.80521,26.724686 C 440.8052,25.521566 440.6509,24.621177 440.34232,24.023514 C 440.03762,23.421959 439.57864,23.121178 438.96536,23.12117 M 438.96536,22.18367 C 439.94583,22.183679 440.69387,22.57235 441.2095,23.349686 C 441.72903,24.12313 441.98879,25.248129 441.9888,26.724686 C 441.98879,28.197345 441.72903,29.322344 441.2095,30.099686 C 440.69387,30.873123 439.94583,31.259842 438.96536,31.259842 C 437.98489,31.259842 437.23489,30.873123 436.71536,30.099686 C 436.19974,29.322344 435.94192,28.197345 435.94193,26.724686 C 435.94192,25.248129 436.19974,24.12313 436.71536,23.349686 C 437.23489,22.57235 437.98489,22.183679 438.96536,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6453"
inkscape:connector-curvature="0" />
<path
d="m 446.60599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 446.60599,23.12117 C 445.99661,23.121178 445.53763,23.421959 445.22903,24.023514 C 444.92434,24.621177 444.772,25.521566 444.772,26.724686 C 444.772,27.923908 444.92434,28.824297 445.22903,29.425858 C 445.53763,30.023515 445.99661,30.322343 446.60599,30.322342 C 447.21926,30.322343 447.67825,30.023515 447.98294,29.425858 C 448.29153,28.824297 448.44583,27.923908 448.44583,26.724686 C 448.44583,25.521566 448.29153,24.621177 447.98294,24.023514 C 447.67825,23.421959 447.21926,23.121178 446.60599,23.12117 M 446.60599,22.18367 C 447.58645,22.183679 448.3345,22.57235 448.85013,23.349686 C 449.36965,24.12313 449.62942,25.248129 449.62943,26.724686 C 449.62942,28.197345 449.36965,29.322344 448.85013,30.099686 C 448.3345,30.873123 447.58645,31.259842 446.60599,31.259842 C 445.62552,31.259842 444.87552,30.873123 444.35599,30.099686 C 443.84036,29.322344 443.58255,28.197345 443.58255,26.724686 C 443.58255,25.248129 443.84036,24.12313 444.35599,23.349686 C 444.87552,22.57235 445.62552,22.183679 446.60599,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6455"
inkscape:connector-curvature="0" />
@ -3595,42 +3627,42 @@
id="waypoint-distance-text"
transform="matrix(1.1017861,0,0,1.1017861,17.436688,-10.441659)">
<path
d="m 303.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6391"
inkscape:connector-curvature="0" />
<path
d="m 310.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6393"
inkscape:connector-curvature="0" />
<path
d="m 318.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6395"
inkscape:connector-curvature="0" />
<path
d="m 326.21536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6397"
inkscape:connector-curvature="0" />
<path
d="m 333.85599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6399"
inkscape:connector-curvature="0" />
<path
d="m 341.49661,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 341.49661,23.12117 C 340.88723,23.121178 340.42825,23.421959 340.11966,24.023514 C 339.81497,24.621177 339.66263,25.521566 339.66263,26.724686 C 339.66263,27.923908 339.81497,28.824297 340.11966,29.425858 C 340.42825,30.023515 340.88723,30.322343 341.49661,30.322342 C 342.10989,30.322343 342.56887,30.023515 342.87357,29.425858 C 343.18215,28.824297 343.33645,27.923908 343.33646,26.724686 C 343.33645,25.521566 343.18215,24.621177 342.87357,24.023514 C 342.56887,23.421959 342.10989,23.121178 341.49661,23.12117 M 341.49661,22.18367 C 342.47708,22.183679 343.22512,22.57235 343.74075,23.349686 C 344.26028,24.12313 344.52004,25.248129 344.52005,26.724686 C 344.52004,28.197345 344.26028,29.322344 343.74075,30.099686 C 343.22512,30.873123 342.47708,31.259842 341.49661,31.259842 C 340.51614,31.259842 339.76614,30.873123 339.24661,30.099686 C 338.73099,29.322344 338.47317,28.197345 338.47318,26.724686 C 338.47317,25.248129 338.73099,24.12313 339.24661,23.349686 C 339.76614,22.57235 340.51614,22.183679 341.49661,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6401"
inkscape:connector-curvature="0" />
<path
d="m 349.13724,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 349.13724,23.12117 C 348.52786,23.121178 348.06888,23.421959 347.76028,24.023514 C 347.45559,24.621177 347.30325,25.521566 347.30325,26.724686 C 347.30325,27.923908 347.45559,28.824297 347.76028,29.425858 C 348.06888,30.023515 348.52786,30.322343 349.13724,30.322342 C 349.75051,30.322343 350.2095,30.023515 350.51419,29.425858 C 350.82278,28.824297 350.97708,27.923908 350.97708,26.724686 C 350.97708,25.521566 350.82278,24.621177 350.51419,24.023514 C 350.2095,23.421959 349.75051,23.121178 349.13724,23.12117 M 349.13724,22.18367 C 350.1177,22.183679 350.86575,22.57235 351.38138,23.349686 C 351.9009,24.12313 352.16067,25.248129 352.16068,26.724686 C 352.16067,28.197345 351.9009,29.322344 351.38138,30.099686 C 350.86575,30.873123 350.1177,31.259842 349.13724,31.259842 C 348.15677,31.259842 347.40677,30.873123 346.88724,30.099686 C 346.37161,29.322344 346.1138,28.197345 346.1138,26.724686 C 346.1138,25.248129 346.37161,24.12313 346.88724,23.349686 C 347.40677,22.57235 348.15677,22.183679 349.13724,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6403"
inkscape:connector-curvature="0" />
<path
d="m 356.77786,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 356.77786,23.12117 C 356.16848,23.121178 355.7095,23.421959 355.40091,24.023514 C 355.09622,24.621177 354.94388,25.521566 354.94388,26.724686 C 354.94388,27.923908 355.09622,28.824297 355.40091,29.425858 C 355.7095,30.023515 356.16848,30.322343 356.77786,30.322342 C 357.39114,30.322343 357.85012,30.023515 358.15482,29.425858 C 358.4634,28.824297 358.6177,27.923908 358.61771,26.724686 C 358.6177,25.521566 358.4634,24.621177 358.15482,24.023514 C 357.85012,23.421959 357.39114,23.121178 356.77786,23.12117 M 356.77786,22.18367 C 357.75833,22.183679 358.50637,22.57235 359.022,23.349686 C 359.54153,24.12313 359.80129,25.248129 359.8013,26.724686 C 359.80129,28.197345 359.54153,29.322344 359.022,30.099686 C 358.50637,30.873123 357.75833,31.259842 356.77786,31.259842 C 355.79739,31.259842 355.04739,30.873123 354.52786,30.099686 C 354.01224,29.322344 353.75442,28.197345 353.75443,26.724686 C 353.75442,25.248129 354.01224,24.12313 354.52786,23.349686 C 355.04739,22.57235 355.79739,22.183679 356.77786,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6405"
inkscape:connector-curvature="0" />
@ -3646,17 +3678,17 @@
id="waypoint-heading-text"
transform="matrix(1.1017861,0,0,1.1017861,-11.977973,14.558341)">
<path
d="m 216.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 216.29349,23.12117 C 215.68411,23.121178 215.22513,23.421959 214.91653,24.023514 C 214.61184,24.621177 214.4595,25.521566 214.4595,26.724686 C 214.4595,27.923908 214.61184,28.824297 214.91653,29.425858 C 215.22513,30.023515 215.68411,30.322343 216.29349,30.322342 C 216.90676,30.322343 217.36575,30.023515 217.67044,29.425858 C 217.97903,28.824297 218.13333,27.923908 218.13333,26.724686 C 218.13333,25.521566 217.97903,24.621177 217.67044,24.023514 C 217.36575,23.421959 216.90676,23.121178 216.29349,23.12117 M 216.29349,22.18367 C 217.27395,22.183679 218.022,22.57235 218.53763,23.349686 C 219.05715,24.12313 219.31692,25.248129 219.31693,26.724686 C 219.31692,28.197345 219.05715,29.322344 218.53763,30.099686 C 218.022,30.873123 217.27395,31.259842 216.29349,31.259842 C 215.31302,31.259842 214.56302,30.873123 214.04349,30.099686 C 213.52786,29.322344 213.27005,28.197345 213.27005,26.724686 C 213.27005,25.248129 213.52786,24.12313 214.04349,23.349686 C 214.56302,22.57235 215.31302,22.183679 216.29349,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6337"
inkscape:connector-curvature="0" />
<path
d="m 223.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 223.93411,23.12117 C 223.32473,23.121178 222.86575,23.421959 222.55716,24.023514 C 222.25247,24.621177 222.10013,25.521566 222.10013,26.724686 C 222.10013,27.923908 222.25247,28.824297 222.55716,29.425858 C 222.86575,30.023515 223.32473,30.322343 223.93411,30.322342 C 224.54739,30.322343 225.00637,30.023515 225.31107,29.425858 C 225.61965,28.824297 225.77395,27.923908 225.77396,26.724686 C 225.77395,25.521566 225.61965,24.621177 225.31107,24.023514 C 225.00637,23.421959 224.54739,23.121178 223.93411,23.12117 M 223.93411,22.18367 C 224.91458,22.183679 225.66262,22.57235 226.17825,23.349686 C 226.69778,24.12313 226.95754,25.248129 226.95755,26.724686 C 226.95754,28.197345 226.69778,29.322344 226.17825,30.099686 C 225.66262,30.873123 224.91458,31.259842 223.93411,31.259842 C 222.95364,31.259842 222.20364,30.873123 221.68411,30.099686 C 221.16849,29.322344 220.91067,28.197345 220.91068,26.724686 C 220.91067,25.248129 221.16849,24.12313 221.68411,23.349686 C 222.20364,22.57235 222.95364,22.183679 223.93411,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6339"
inkscape:connector-curvature="0" />
<path
d="m 231.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
d="M 231.57474,23.12117 C 230.96536,23.121178 230.50638,23.421959 230.19778,24.023514 C 229.89309,24.621177 229.74075,25.521566 229.74075,26.724686 C 229.74075,27.923908 229.89309,28.824297 230.19778,29.425858 C 230.50638,30.023515 230.96536,30.322343 231.57474,30.322342 C 232.18801,30.322343 232.647,30.023515 232.95169,29.425858 C 233.26028,28.824297 233.41458,27.923908 233.41458,26.724686 C 233.41458,25.521566 233.26028,24.621177 232.95169,24.023514 C 232.647,23.421959 232.18801,23.121178 231.57474,23.12117 M 231.57474,22.18367 C 232.5552,22.183679 233.30325,22.57235 233.81888,23.349686 C 234.3384,24.12313 234.59817,25.248129 234.59818,26.724686 C 234.59817,28.197345 234.3384,29.322344 233.81888,30.099686 C 233.30325,30.873123 232.5552,31.259842 231.57474,31.259842 C 230.59427,31.259842 229.84427,30.873123 229.32474,30.099686 C 228.80911,29.322344 228.5513,28.197345 228.5513,26.724686 C 228.5513,25.248129 228.80911,24.12313 229.32474,23.349686 C 229.84427,22.57235 230.59427,22.183679 231.57474,22.18367"
style="font-size:12px;fill:#ff00ff"
id="path6341"
inkscape:connector-curvature="0" />
@ -3672,82 +3704,82 @@
id="waypoint-mode-text"
transform="matrix(1.0767613,0,0,1.0767613,127.81017,6.4920314)">
<path
d="m 346.84036,8.3145294 l 0,6.8027346 l 1.42969,0 c 1.20703,10e-7 2.08984,-0.273436 2.64844,-0.820313 c 0.56249,-0.546872 0.84374,-1.410153 0.84375,-2.589843 c -1e-5,-1.17187 -0.28126,-2.0292909 -0.84375,-2.5722661 c -0.5586,-0.5468675 -1.44141,-0.8203047 -2.64844,-0.8203125 l -1.42969,0 m -1.18359,-0.9726562 l 2.43164,0 c 1.69531,8.7e-6 2.93945,0.353524 3.73242,1.0605468 c 0.79296,0.703132 1.18945,1.804693 1.18945,3.304688 c 0,1.507815 -0.39844,2.615236 -1.19531,3.322265 c -0.79688,0.707032 -2.03907,1.060547 -3.72656,1.060547 l -2.43164,0 l 0,-8.7480468"
d="M 346.84036,8.3145294 L 346.84036,15.117264 L 348.27005,15.117264 C 349.47708,15.117265 350.35989,14.843828 350.91849,14.296951 C 351.48098,13.750079 351.76223,12.886798 351.76224,11.707108 C 351.76223,10.535238 351.48098,9.6778171 350.91849,9.1348419 C 350.35989,8.5879744 349.47708,8.3145372 348.27005,8.3145294 L 346.84036,8.3145294 M 345.65677,7.3418732 L 348.08841,7.3418732 C 349.78372,7.3418819 351.02786,7.6953972 351.82083,8.40242 C 352.61379,9.105552 353.01028,10.207113 353.01028,11.707108 C 353.01028,13.214923 352.61184,14.322344 351.81497,15.029373 C 351.01809,15.736405 349.7759,16.08992 348.08841,16.08992 L 345.65677,16.08992 L 345.65677,7.3418732"
style="font-size:12px;fill:#ff00ff"
id="path6408"
inkscape:connector-curvature="0" />
<path
d="m 358.647,10.535233 c -0.1211,-0.07031 -0.25391,-0.121089 -0.39843,-0.152344 c -0.14063,-0.03515 -0.29688,-0.05273 -0.46875,-0.05274 c -0.60938,6e-6 -1.07813,0.199225 -1.40625,0.597657 c -0.32423,0.394536 -0.48633,0.962894 -0.48633,1.705078 l 0,3.457031 l -1.08399,0 l 0,-6.5625 l 1.08399,0 l 0,1.019531 c 0.22656,-0.398431 0.52148,-0.6933528 0.88476,-0.8847653 c 0.36328,-0.1953059 0.80469,-0.2929621 1.32422,-0.2929688 c 0.0742,6.7e-6 0.15625,0.00587 0.2461,0.017578 c 0.0898,0.00782 0.18944,0.021491 0.29882,0.041016 l 0.006,1.1074221"
d="M 358.647,10.535233 C 358.5259,10.464923 358.39309,10.414144 358.24857,10.382889 C 358.10794,10.347739 357.95169,10.330159 357.77982,10.330149 C 357.17044,10.330155 356.70169,10.529374 356.37357,10.927806 C 356.04934,11.322342 355.88724,11.8907 355.88724,12.632884 L 355.88724,16.089915 L 354.80325,16.089915 L 354.80325,9.527415 L 355.88724,9.527415 L 355.88724,10.546946 C 356.1138,10.148515 356.40872,9.8535932 356.772,9.6621807 C 357.13528,9.4668748 357.57669,9.3692186 358.09622,9.3692119 C 358.17042,9.3692186 358.25247,9.3750819 358.34232,9.3867899 C 358.43212,9.3946099 358.53176,9.4082809 358.64114,9.4278059 L 358.64714,10.535228"
style="font-size:12px;fill:#ff00ff"
id="path6410"
inkscape:connector-curvature="0" />
<path
d="m 359.78958,9.52742 l 1.07813,0 l 0,6.5625 l -1.07813,0 l 0,-6.5625 m 0,-2.5546875 l 1.07813,0 l 0,1.3652344 l -1.07813,0 l 0,-1.3652344"
d="M 359.78958,9.52742 L 360.86771,9.52742 L 360.86771,16.08992 L 359.78958,16.08992 L 359.78958,9.52742 M 359.78958,6.9727325 L 360.86771,6.9727325 L 360.86771,8.3379669 L 359.78958,8.3379669 L 359.78958,6.9727325"
style="font-size:12px;fill:#ff00ff"
id="path6412"
inkscape:connector-curvature="0" />
<path
d="m 362.34427,9.52742 l 1.14258,0 l 2.05078,5.507813 l 2.05078,-5.507813 l 1.14258,0 l -2.46094,6.5625 l -1.46484,0 l -2.46094,-6.5625"
d="M 362.34427,9.52742 L 363.48685,9.52742 L 365.53763,15.035233 L 367.58841,9.52742 L 368.73099,9.52742 L 366.27005,16.08992 L 364.80521,16.08992 L 362.34427,9.52742"
style="font-size:12px;fill:#ff00ff"
id="path6414"
inkscape:connector-curvature="0" />
<path
d="m 375.83255,12.539139 l 0,0.527344 l -4.95703,0 c 0.0469,0.742189 0.26953,1.308595 0.66797,1.699218 c 0.40234,0.38672 0.96093,0.580079 1.67578,0.580078 c 0.41406,10e-7 0.81445,-0.05078 1.20117,-0.152343 c 0.39062,-0.101562 0.77734,-0.253905 1.16016,-0.457032 l 0,1.019532 c -0.38673,0.164062 -0.78321,0.289062 -1.18946,0.375 c -0.40625,0.08594 -0.81836,0.128906 -1.23632,0.128906 c -1.04688,0 -1.87696,-0.304687 -2.49024,-0.914063 c -0.60937,-0.609373 -0.91406,-1.433591 -0.91406,-2.472656 c 0,-1.074214 0.28906,-1.925776 0.86719,-2.554687 c 0.58203,-0.6328064 1.36523,-0.9492124 2.34961,-0.9492191 c 0.8828,6.7e-6 1.58007,0.2851627 2.09179,0.8554691 c 0.51562,0.566411 0.77343,1.337895 0.77344,2.314453 m -1.07812,-0.316406 c -0.008,-0.58984 -0.17384,-1.060542 -0.49805,-1.41211 c -0.32032,-0.351557 -0.7461,-0.527338 -1.27735,-0.527344 c -0.60156,6e-6 -1.08398,0.169928 -1.44726,0.509766 c -0.35938,0.339849 -0.56641,0.818364 -0.62109,1.435547 l 3.84375,-0.0059"
d="M 375.83255,12.539139 L 375.83255,13.066483 L 370.87552,13.066483 C 370.92242,13.808672 371.14505,14.375078 371.54349,14.765701 C 371.94583,15.152421 372.50442,15.34578 373.21927,15.345779 C 373.63333,15.34578 374.03372,15.294999 374.42044,15.193436 C 374.81106,15.091874 375.19778,14.939531 375.5806,14.736404 L 375.5806,15.755936 C 375.19387,15.919998 374.79739,16.044998 374.39114,16.130936 C 373.98489,16.216876 373.57278,16.259842 373.15482,16.259842 C 372.10794,16.259842 371.27786,15.955155 370.66458,15.345779 C 370.05521,14.736406 369.75052,13.912188 369.75052,12.873123 C 369.75052,11.798909 370.03958,10.947347 370.61771,10.318436 C 371.19974,9.6856296 371.98294,9.3692236 372.96732,9.3692169 C 373.85012,9.3692236 374.54739,9.6543796 375.05911,10.224686 C 375.57473,10.791097 375.83254,11.562581 375.83255,12.539139 M 374.75443,12.222733 C 374.74643,11.632893 374.58059,11.162191 374.25638,10.810623 C 373.93606,10.459066 373.51028,10.283285 372.97903,10.283279 C 372.37747,10.283285 371.89505,10.453207 371.53177,10.793045 C 371.17239,11.132894 370.96536,11.611409 370.91068,12.228592 L 374.75443,12.222692"
style="font-size:12px;fill:#ff00ff"
id="path6416"
inkscape:connector-curvature="0" />
<path
d="m 388.02005,8.0157013 l 0,1.2480469 C 387.62161,8.8926616 387.19582,8.6153181 386.74271,8.4317169 C 386.29348,8.248131 385.81497,8.1563342 385.30716,8.1563263 c -1,7.9e-6 -1.76563,0.3066482 -2.29688,0.9199219 c -0.53125,0.6093814 -0.79687,1.4921928 -0.79687,2.6484378 c 0,1.152347 0.26562,2.035158 0.79687,2.648437 c 0.53125,0.609376 1.29688,0.914063 2.29688,0.914063 c 0.50781,0 0.98632,-0.0918 1.43555,-0.275391 c 0.45311,-0.183592 0.8789,-0.460936 1.27734,-0.832031 l 0,1.236328 c -0.41407,0.28125 -0.85352,0.492188 -1.31836,0.632812 c -0.46094,0.140625 -0.94922,0.210938 -1.46484,0.210938 c -1.32423,0 -2.36719,-0.404297 -3.12891,-1.212891 c -0.76172,-0.812498 -1.14258,-1.919919 -1.14258,-3.322265 c 0,-1.406245 0.38086,-2.5136653 1.14258,-3.322266 c 0.76172,-0.8124915 1.80468,-1.218741 3.12891,-1.21875 c 0.52343,9e-6 1.01562,0.070321 1.47656,0.2109375 c 0.46484,0.1367274 0.90038,0.3437584 1.30664,0.6210938"
d="M 388.02005,8.0157013 L 388.02005,9.2637482 C 387.62161,8.8926616 387.19582,8.6153181 386.74271,8.4317169 C 386.29348,8.248131 385.81497,8.1563342 385.30716,8.1563263 C 384.30716,8.1563342 383.54153,8.4629745 383.01028,9.0762482 C 382.47903,9.6856296 382.21341,10.568441 382.21341,11.724686 C 382.21341,12.877033 382.47903,13.759844 383.01028,14.373123 C 383.54153,14.982499 384.30716,15.287186 385.30716,15.287186 C 385.81497,15.287186 386.29348,15.195386 386.74271,15.011795 C 387.19582,14.828203 387.62161,14.550859 388.02005,14.179764 L 388.02005,15.416092 C 387.60598,15.697342 387.16653,15.90828 386.70169,16.048904 C 386.24075,16.189529 385.75247,16.259842 385.23685,16.259842 C 383.91262,16.259842 382.86966,15.855545 382.10794,15.046951 C 381.34622,14.234453 380.96536,13.127032 380.96536,11.724686 C 380.96536,10.318441 381.34622,9.2110207 382.10794,8.40242 C 382.86966,7.5899285 383.91262,7.183679 385.23685,7.18367 C 385.76028,7.183679 386.25247,7.253991 386.71341,7.3946075 C 387.17825,7.5313349 387.61379,7.7383659 388.02005,8.0157013"
style="font-size:12px;fill:#ff00ff"
id="path6418"
inkscape:connector-curvature="0" />
<path
d="m 389.81302,9.52742 l 1.07812,0 l 0,6.5625 l -1.07812,0 l 0,-6.5625 m 0,-2.5546875 l 1.07812,0 l 0,1.3652344 l -1.07812,0 l 0,-1.3652344"
d="M 389.81302,9.52742 L 390.89114,9.52742 L 390.89114,16.08992 L 389.81302,16.08992 L 389.81302,9.52742 M 389.81302,6.9727325 L 390.89114,6.9727325 L 390.89114,8.3379669 L 389.81302,8.3379669 L 389.81302,6.9727325"
style="font-size:12px;fill:#ff00ff"
id="path6420"
inkscape:connector-curvature="0" />
<path
d="m 396.94388,10.535233 c -0.1211,-0.07031 -0.25391,-0.121089 -0.39844,-0.152344 c -0.14063,-0.03515 -0.29688,-0.05273 -0.46875,-0.05274 c -0.60938,6e-6 -1.07813,0.199225 -1.40625,0.597657 c -0.32422,0.394536 -0.48633,0.962894 -0.48633,1.705078 l 0,3.457031 l -1.08398,0 l 0,-6.5625 l 1.08398,0 l 0,1.019531 c 0.22656,-0.398431 0.52148,-0.6933528 0.88477,-0.8847653 c 0.36328,-0.1953059 0.80468,-0.2929621 1.32422,-0.2929688 c 0.0742,6.7e-6 0.15624,0.00587 0.24609,0.017578 c 0.0898,0.00782 0.18945,0.021491 0.29883,0.041016 l 0.006,1.1074221"
d="M 396.94388,10.535233 C 396.82278,10.464923 396.68997,10.414144 396.54544,10.382889 C 396.40481,10.347739 396.24856,10.330159 396.07669,10.330149 C 395.46731,10.330155 394.99856,10.529374 394.67044,10.927806 C 394.34622,11.322342 394.18411,11.8907 394.18411,12.632884 L 394.18411,16.089915 L 393.10013,16.089915 L 393.10013,9.527415 L 394.18411,9.527415 L 394.18411,10.546946 C 394.41067,10.148515 394.70559,9.8535932 395.06888,9.6621807 C 395.43216,9.4668748 395.87356,9.3692186 396.3931,9.3692119 C 396.4673,9.3692186 396.54934,9.3750819 396.63919,9.3867899 C 396.72899,9.3946099 396.82864,9.4082809 396.93802,9.4278059 L 396.94402,10.535228"
style="font-size:12px;fill:#ff00ff"
id="path6422"
inkscape:connector-curvature="0" />
<path
d="m 402.5513,9.7793732 l 0,1.0078128 c -0.30469,-0.167964 -0.61133,-0.292963 -0.91992,-0.375 c -0.30469,-0.08593 -0.61329,-0.128901 -0.92578,-0.128907 c -0.69923,6e-6 -1.24219,0.222662 -1.62891,0.667969 c -0.38672,0.441411 -0.58008,1.062504 -0.58008,1.863281 c 0,0.800784 0.19336,1.42383 0.58008,1.869141 c 0.38672,0.441407 0.92968,0.66211 1.62891,0.662109 c 0.31249,10e-7 0.62109,-0.04101 0.92578,-0.123046 c 0.30859,-0.08594 0.61523,-0.21289 0.91992,-0.38086 l 0,0.996094 c -0.30079,0.140625 -0.61329,0.246094 -0.9375,0.316406 c -0.32032,0.07031 -0.66211,0.105469 -1.02539,0.105469 c -0.98828,0 -1.77344,-0.310547 -2.35547,-0.931641 c -0.58203,-0.621092 -0.87305,-1.458982 -0.87305,-2.513672 c 0,-1.070308 0.29297,-1.912104 0.87891,-2.52539 c 0.58984,-0.613275 1.39648,-0.9199154 2.41992,-0.9199221 c 0.33203,6.7e-6 0.65625,0.035163 0.97266,0.1054688 c 0.3164,0.066413 0.62304,0.1679752 0.91992,0.3046875"
d="M 402.5513,9.7793732 L 402.5513,10.787186 C 402.24661,10.619222 401.93997,10.494223 401.63138,10.412186 C 401.32669,10.326256 401.01809,10.283285 400.7056,10.283279 C 400.00637,10.283285 399.46341,10.505941 399.07669,10.951248 C 398.68997,11.392659 398.49661,12.013752 398.49661,12.814529 C 398.49661,13.615313 398.68997,14.238359 399.07669,14.68367 C 399.46341,15.125077 400.00637,15.34578 400.7056,15.345779 C 401.01809,15.34578 401.32669,15.304769 401.63138,15.222733 C 401.93997,15.136793 402.24661,15.009843 402.5513,14.841873 L 402.5513,15.837967 C 402.25051,15.978592 401.93801,16.084061 401.6138,16.154373 C 401.29348,16.224683 400.95169,16.259842 400.58841,16.259842 C 399.60013,16.259842 398.81497,15.949295 398.23294,15.328201 C 397.65091,14.707109 397.35989,13.869219 397.35989,12.814529 C 397.35989,11.744221 397.65286,10.902425 398.2388,10.289139 C 398.82864,9.675864 399.63528,9.3692236 400.65872,9.3692169 C 400.99075,9.3692236 401.31497,9.4043799 401.63138,9.4746857 C 401.94778,9.5410987 402.25442,9.6426609 402.5513,9.7793732"
style="font-size:12px;fill:#ff00ff"
id="path6424"
inkscape:connector-curvature="0" />
<path
d="m 404.43802,6.9727325 l 1.07812,0 l 0,9.1171875 l -1.07812,0 l 0,-9.1171875"
d="M 404.43802,6.9727325 L 405.51614,6.9727325 L 405.51614,16.08992 L 404.43802,16.08992 L 404.43802,6.9727325"
style="font-size:12px;fill:#ff00ff"
id="path6426"
inkscape:connector-curvature="0" />
<path
d="m 413.37943,12.539139 l 0,0.527344 l -4.95704,0 c 0.0469,0.742189 0.26953,1.308595 0.66797,1.699218 c 0.40234,0.38672 0.96094,0.580079 1.67578,0.580078 c 0.41406,10e-7 0.81445,-0.05078 1.20118,-0.152343 c 0.39061,-0.101562 0.77733,-0.253905 1.16015,-0.457032 l 0,1.019532 c -0.38672,0.164062 -0.78321,0.289062 -1.18945,0.375 c -0.40626,0.08594 -0.81837,0.128906 -1.23633,0.128906 c -1.04688,0 -1.87695,-0.304687 -2.49023,-0.914063 c -0.60938,-0.609373 -0.91407,-1.433591 -0.91407,-2.472656 c 0,-1.074214 0.28907,-1.925776 0.86719,-2.554687 c 0.58203,-0.6328064 1.36523,-0.9492124 2.34961,-0.9492191 c 0.88281,6.7e-6 1.58007,0.2851627 2.0918,0.8554691 c 0.51562,0.566411 0.77343,1.337895 0.77344,2.314453 m -1.07813,-0.316406 c -0.008,-0.58984 -0.17383,-1.060542 -0.49805,-1.41211 c -0.32031,-0.351557 -0.74609,-0.527338 -1.27734,-0.527344 c -0.60157,6e-6 -1.08399,0.169928 -1.44727,0.509766 c -0.35937,0.339849 -0.5664,0.818364 -0.62109,1.435547 l 3.84375,-0.0059"
d="M 413.37943,12.539139 L 413.37943,13.066483 L 408.42239,13.066483 C 408.46929,13.808672 408.69192,14.375078 409.09036,14.765701 C 409.4927,15.152421 410.0513,15.34578 410.76614,15.345779 C 411.1802,15.34578 411.58059,15.294999 411.96732,15.193436 C 412.35793,15.091874 412.74465,14.939531 413.12747,14.736404 L 413.12747,15.755936 C 412.74075,15.919998 412.34426,16.044998 411.93802,16.130936 C 411.53176,16.216876 411.11965,16.259842 410.70169,16.259842 C 409.65481,16.259842 408.82474,15.955155 408.21146,15.345779 C 407.60208,14.736406 407.29739,13.912188 407.29739,12.873123 C 407.29739,11.798909 407.58646,10.947347 408.16458,10.318436 C 408.74661,9.6856296 409.52981,9.3692236 410.51419,9.3692169 C 411.397,9.3692236 412.09426,9.6543796 412.60599,10.224686 C 413.12161,10.791097 413.37942,11.562581 413.37943,12.539139 M 412.3013,12.222733 C 412.2933,11.632893 412.12747,11.162191 411.80325,10.810623 C 411.48294,10.459066 411.05716,10.283285 410.52591,10.283279 C 409.92434,10.283285 409.44192,10.453207 409.07864,10.793045 C 408.71927,11.132894 408.51224,11.611409 408.45755,12.228592 L 412.3013,12.222692"
style="font-size:12px;fill:#ff00ff"
id="path6428"
inkscape:connector-curvature="0" />
<path
d="m 423.16458,11.988358 c 0.2539,0.08594 0.5,0.269535 0.73828,0.550781 c 0.24218,0.281253 0.48437,0.667971 0.72657,1.160156 l 1.20117,2.390625 l -1.27149,0 l -1.11914,-2.244141 c -0.28907,-0.585934 -0.57032,-0.974606 -0.84375,-1.166015 c -0.26953,-0.191403 -0.63867,-0.287106 -1.10742,-0.28711 l -1.28906,0 l 0,3.697266 l -1.1836,0 l 0,-8.7480468 l 2.67188,0 c 0.99999,8.7e-6 1.74609,0.2089929 2.23828,0.6269531 c 0.49218,0.4179764 0.73827,1.0488352 0.73828,1.8925781 c -10e-6,0.5507866 -0.12891,1.0078176 -0.38672,1.3710936 c -0.25391,0.363286 -0.625,0.615239 -1.11328,0.75586 m -2.96484,-3.6738286 l 0,3.1054686 l 1.48828,0 c 0.57031,5e-6 0.99999,-0.130854 1.28906,-0.392578 c 0.29296,-0.26562 0.43945,-0.654291 0.43945,-1.1660156 c 0,-0.511712 -0.14649,-0.8964772 -0.43945,-1.1542969 c -0.28907,-0.2617111 -0.71875,-0.3925703 -1.28906,-0.3925781 l -1.48828,0"
d="M 423.16458,11.988358 C 423.41848,12.074298 423.66458,12.257893 423.90286,12.539139 C 424.14504,12.820392 424.38723,13.20711 424.62943,13.699295 L 425.8306,16.08992 L 424.55911,16.08992 L 423.43997,13.845779 C 423.1509,13.259845 422.86965,12.871173 422.59622,12.679764 C 422.32669,12.488361 421.95755,12.392658 421.4888,12.392654 L 420.19974,12.392654 L 420.19974,16.08992 L 419.01614,16.08992 L 419.01614,7.3418732 L 421.68802,7.3418732 C 422.68801,7.3418819 423.43411,7.5508661 423.9263,7.9688263 C 424.41848,8.3868027 424.66457,9.0176615 424.66458,9.8614044 C 424.66457,10.412191 424.53567,10.869222 424.27786,11.232498 C 424.02395,11.595784 423.65286,11.847737 423.16458,11.988358 M 420.19974,8.3145294 L 420.19974,11.419998 L 421.68802,11.419998 C 422.25833,11.420003 422.68801,11.289144 422.97708,11.02742 C 423.27004,10.7618 423.41653,10.373129 423.41653,9.8614044 C 423.41653,9.3496924 423.27004,8.9649272 422.97708,8.7071075 C 422.68801,8.4453964 422.25833,8.3145372 421.68802,8.3145294 L 420.19974,8.3145294"
style="font-size:12px;fill:#ff00ff"
id="path6430"
inkscape:connector-curvature="0" />
<path
d="m 427.31302,9.52742 l 1.07812,0 l 0,6.5625 l -1.07812,0 l 0,-6.5625 m 0,-2.5546875 l 1.07812,0 l 0,1.3652344 l -1.07812,0 l 0,-1.3652344"
d="M 427.31302,9.52742 L 428.39114,9.52742 L 428.39114,16.08992 L 427.31302,16.08992 L 427.31302,9.52742 M 427.31302,6.9727325 L 428.39114,6.9727325 L 428.39114,8.3379669 L 427.31302,8.3379669 L 427.31302,6.9727325"
style="font-size:12px;fill:#ff00ff"
id="path6432"
inkscape:connector-curvature="0" />
<path
d="m 434.9595,11.12392 c 0,-0.662783 -0.16211,-1.1764411 -0.48632,-1.5409771 c -0.32032,-0.3645275 -0.77149,-0.5467938 -1.35352,-0.546798 c -0.57813,4.2e-6 -1.0293,0.1822705 -1.35352,0.546798 c -0.32031,0.364536 -0.48047,0.8781941 -0.48046,1.5409771 c -1e-5,0.659473 0.16015,1.171476 0.48046,1.536006 c 0.32422,0.364533 0.77539,0.546798 1.35352,0.546798 c 0.58203,0 1.0332,-0.182265 1.35352,-0.546798 c 0.32421,-0.36453 0.48632,-0.876533 0.48632,-1.536006 m 1.07813,2.157367 c -10e-6,0.947784 -0.24805,1.651992 -0.74414,2.11263 c -0.4961,0.463948 -1.25587,0.695922 -2.2793,0.695925 c -0.37891,-3e-6 -0.73633,-0.02486 -1.07226,-0.07456 c -0.33594,-0.0464 -0.66212,-0.119303 -0.97852,-0.218719 l 0,-0.889789 c 0.3164,0.145811 0.6289,0.253513 0.9375,0.323107 c 0.30859,0.06959 0.62304,0.104387 0.94336,0.104389 c 0.70703,-2e-6 1.23632,-0.157413 1.58789,-0.472235 c 0.35156,-0.31151 0.52734,-0.783744 0.52734,-1.416705 l 0,-0.452351 c -0.22266,0.32808 -0.50781,0.57331 -0.85547,0.735693 c -0.34766,0.162382 -0.76367,0.243573 -1.24804,0.243573 c -0.80469,0 -1.45313,-0.260143 -1.94531,-0.78043 c -0.49219,-0.520286 -0.73829,-1.209582 -0.73829,-2.067892 c 0,-0.861617 0.2461,-1.5525709 0.73829,-2.0728617 c 0.49218,-0.5202815 1.14062,-0.7804247 1.94531,-0.7804304 c 0.48437,5.7e-6 0.90038,0.081197 1.24804,0.2435738 c 0.34766,0.1623878 0.63281,0.4076183 0.85547,0.7356923 l 0,-0.845052 l 1.07813,0 l 0,4.876446"
d="M 434.9595,11.12392 C 434.9595,10.461137 434.79739,9.9474789 434.47318,9.5829429 C 434.15286,9.2184154 433.70169,9.0361491 433.11966,9.0361449 C 432.54153,9.0361491 432.09036,9.2184154 431.76614,9.5829429 C 431.44583,9.9474789 431.28567,10.461137 431.28568,11.12392 C 431.28567,11.783393 431.44583,12.295396 431.76614,12.659926 C 432.09036,13.024459 432.54153,13.206724 433.11966,13.206724 C 433.70169,13.206724 434.15286,13.024459 434.47318,12.659926 C 434.79739,12.295396 434.9595,11.783393 434.9595,11.12392 M 436.03763,13.281287 C 436.03762,14.229071 435.78958,14.933279 435.29349,15.393917 C 434.79739,15.857865 434.03762,16.089839 433.01419,16.089842 C 432.63528,16.089839 432.27786,16.064982 431.94193,16.015282 C 431.60599,15.968882 431.27981,15.895979 430.96341,15.796563 L 430.96341,14.906774 C 431.27981,15.052585 431.59231,15.160287 431.90091,15.229881 C 432.2095,15.299471 432.52395,15.334268 432.84427,15.33427 C 433.5513,15.334268 434.08059,15.176857 434.43216,14.862035 C 434.78372,14.550525 434.9595,14.078291 434.9595,13.44533 L 434.9595,12.992979 C 434.73684,13.321059 434.45169,13.566289 434.10403,13.728672 C 433.75637,13.891054 433.34036,13.972245 432.85599,13.972245 C 432.0513,13.972245 431.40286,13.712102 430.91068,13.191815 C 430.41849,12.671529 430.17239,11.982233 430.17239,11.123923 C 430.17239,10.262306 430.41849,9.5713521 430.91068,9.0510613 C 431.40286,8.5307798 432.0513,8.2706366 432.85599,8.2706309 C 433.34036,8.2706366 433.75637,8.3518279 434.10403,8.5142047 C 434.45169,8.6765925 434.73684,8.921823 434.9595,9.249897 L 434.9595,8.404845 L 436.03763,8.404845 L 436.03763,13.281291"
style="font-size:12px;fill:#ff00ff"
id="path6434"
inkscape:connector-curvature="0" />
<path
d="m 443.71341,12.128983 l 0,3.960937 l -1.07813,0 l 0,-3.925781 c 0,-0.621089 -0.12109,-1.085933 -0.36328,-1.394531 c -0.24219,-0.308589 -0.60547,-0.462885 -1.08984,-0.462891 c -0.58204,6e-6 -1.04102,0.185552 -1.37695,0.556641 c -0.33594,0.371098 -0.50391,0.876957 -0.50391,1.517578 l 0,3.708984 l -1.08398,0 l 0,-9.1171875 l 1.08398,0 l 0,3.5742185 c 0.25781,-0.394525 0.56054,-0.6894466 0.9082,-0.8847653 c 0.35156,-0.1953059 0.75586,-0.2929621 1.21289,-0.2929688 c 0.7539,6.7e-6 1.32422,0.2343815 1.71094,0.7031251 c 0.38671,0.464849 0.58007,1.150395 0.58008,2.056641"
d="M 443.71341,12.128983 L 443.71341,16.08992 L 442.63528,16.08992 L 442.63528,12.164139 C 442.63528,11.54305 442.51419,11.078206 442.272,10.769608 C 442.02981,10.461019 441.66653,10.306723 441.18216,10.306717 C 440.60012,10.306723 440.14114,10.492269 439.80521,10.863358 C 439.46927,11.234456 439.3013,11.740315 439.3013,12.380936 L 439.3013,16.08992 L 438.21732,16.08992 L 438.21732,6.9727325 L 439.3013,6.9727325 L 439.3013,10.546951 C 439.55911,10.152426 439.86184,9.8575044 440.2095,9.6621857 C 440.56106,9.4668798 440.96536,9.3692236 441.42239,9.3692169 C 442.17629,9.3692236 442.74661,9.6035984 443.13333,10.072342 C 443.52004,10.537191 443.7134,11.222737 443.71341,12.128983"
style="font-size:12px;fill:#ff00ff"
id="path6436"
inkscape:connector-curvature="0" />
<path
d="m 446.94193,7.6641388 l 0,1.8632812 l 2.2207,0 l 0,0.837891 l -2.2207,0 l 0,3.5625 c -1e-5,0.535158 0.0723,0.878907 0.21679,1.03125 c 0.14844,0.152344 0.44726,0.228516 0.89649,0.228515 l 1.10742,0 l 0,0.902344 l -1.10742,0 c -0.83204,0 -1.40626,-0.154297 -1.72266,-0.462891 c -0.31641,-0.312499 -0.47461,-0.878904 -0.47461,-1.699218 l 0,-3.5625 l -0.79101,0 l 0,-0.837891 l 0.79101,0 l 0,-1.8632812 l 1.08399,0"
d="M 446.94193,7.6641388 L 446.94193,9.52742 L 449.16263,9.52742 L 449.16263,10.365311 L 446.94193,10.365311 L 446.94193,13.927811 C 446.94192,14.462969 447.01423,14.806718 447.15872,14.959061 C 447.30716,15.111405 447.60598,15.187577 448.05521,15.187576 L 449.16263,15.187576 L 449.16263,16.08992 L 448.05521,16.08992 C 447.22317,16.08992 446.64895,15.935623 446.33255,15.627029 C 446.01614,15.31453 445.85794,14.748125 445.85794,13.927811 L 445.85794,10.365311 L 445.06693,10.365311 L 445.06693,9.52742 L 445.85794,9.52742 L 445.85794,7.6641388 L 446.94193,7.6641388"
style="font-size:12px;fill:#ff00ff"
id="path6438"
inkscape:connector-curvature="0" />
@ -3767,7 +3799,7 @@
inkscape:connector-curvature="0"
id="path3957"
style="font-size:12px;fill:#ff00ff"
d="m 309.28568,10.810623 l -1.70508,0 l -0.49219,1.957031 l 1.7168,0 l 0.48047,-1.957031 m -0.87891,-3.3339842 l -0.60938,2.4316406 l 1.71094,0 l 0.61524,-2.4316406 l 0.9375,0 l -0.60352,2.4316406 l 1.82813,0 l 0,0.9023436 l -2.05665,0 l -0.48046,1.957031 l 1.86328,0 l 0,0.896485 l -2.0918,0 l -0.60937,2.425781 l -0.9375,0 l 0.60351,-2.425781 l -1.7168,0 l -0.60351,2.425781 l -0.94336,0 l 0.60937,-2.425781 l -1.8457,0 l 0,-0.896485 l 2.0625,0 l 0.49219,-1.957031 l -1.88672,0 l 0,-0.9023436 l 2.11523,0 l 0.59766,-2.4316406 l 0.94922,0" />
d="M 309.28568,10.810623 L 307.5806,10.810623 L 307.08841,12.767654 L 308.80521,12.767654 L 309.28568,10.810623 M 308.40677,7.4766388 L 307.79739,9.9082794 L 309.50833,9.9082794 L 310.12357,7.4766388 L 311.06107,7.4766388 L 310.45755,9.9082794 L 312.28568,9.9082794 L 312.28568,10.810623 L 310.22903,10.810623 L 309.74857,12.767654 L 311.61185,12.767654 L 311.61185,13.664139 L 309.52005,13.664139 L 308.91068,16.08992 L 307.97318,16.08992 L 308.57669,13.664139 L 306.85989,13.664139 L 306.25638,16.08992 L 305.31302,16.08992 L 305.92239,13.664139 L 304.07669,13.664139 L 304.07669,12.767654 L 306.13919,12.767654 L 306.63138,10.810623 L 304.74466,10.810623 L 304.74466,9.9082794 L 306.85989,9.9082794 L 307.45755,7.4766388 L 308.40677,7.4766388" />
</g>
</g>
<g
@ -3784,42 +3816,324 @@
inkscape:connector-curvature="0"
id="path3882"
style="font-size:12px;fill:#ff00ff"
d="m 303.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3884"
style="font-size:12px;fill:#ff00ff"
d="m 310.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3886"
style="font-size:12px;fill:#ff00ff"
d="m 318.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3888"
style="font-size:12px;fill:#ff00ff"
d="m 326.21536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3890"
style="font-size:12px;fill:#ff00ff"
d="m 333.85599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3892"
style="font-size:12px;fill:#ff00ff"
d="m 341.49661,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 341.49661,23.12117 C 340.88723,23.121178 340.42825,23.421959 340.11966,24.023514 C 339.81497,24.621177 339.66263,25.521566 339.66263,26.724686 C 339.66263,27.923908 339.81497,28.824297 340.11966,29.425858 C 340.42825,30.023515 340.88723,30.322343 341.49661,30.322342 C 342.10989,30.322343 342.56887,30.023515 342.87357,29.425858 C 343.18215,28.824297 343.33645,27.923908 343.33646,26.724686 C 343.33645,25.521566 343.18215,24.621177 342.87357,24.023514 C 342.56887,23.421959 342.10989,23.121178 341.49661,23.12117 M 341.49661,22.18367 C 342.47708,22.183679 343.22512,22.57235 343.74075,23.349686 C 344.26028,24.12313 344.52004,25.248129 344.52005,26.724686 C 344.52004,28.197345 344.26028,29.322344 343.74075,30.099686 C 343.22512,30.873123 342.47708,31.259842 341.49661,31.259842 C 340.51614,31.259842 339.76614,30.873123 339.24661,30.099686 C 338.73099,29.322344 338.47317,28.197345 338.47318,26.724686 C 338.47317,25.248129 338.73099,24.12313 339.24661,23.349686 C 339.76614,22.57235 340.51614,22.183679 341.49661,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3894"
style="font-size:12px;fill:#ff00ff"
d="m 349.13724,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 349.13724,23.12117 C 348.52786,23.121178 348.06888,23.421959 347.76028,24.023514 C 347.45559,24.621177 347.30325,25.521566 347.30325,26.724686 C 347.30325,27.923908 347.45559,28.824297 347.76028,29.425858 C 348.06888,30.023515 348.52786,30.322343 349.13724,30.322342 C 349.75051,30.322343 350.2095,30.023515 350.51419,29.425858 C 350.82278,28.824297 350.97708,27.923908 350.97708,26.724686 C 350.97708,25.521566 350.82278,24.621177 350.51419,24.023514 C 350.2095,23.421959 349.75051,23.121178 349.13724,23.12117 M 349.13724,22.18367 C 350.1177,22.183679 350.86575,22.57235 351.38138,23.349686 C 351.9009,24.12313 352.16067,25.248129 352.16068,26.724686 C 352.16067,28.197345 351.9009,29.322344 351.38138,30.099686 C 350.86575,30.873123 350.1177,31.259842 349.13724,31.259842 C 348.15677,31.259842 347.40677,30.873123 346.88724,30.099686 C 346.37161,29.322344 346.1138,28.197345 346.1138,26.724686 C 346.1138,25.248129 346.37161,24.12313 346.88724,23.349686 C 347.40677,22.57235 348.15677,22.183679 349.13724,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3896"
style="font-size:12px;fill:#ff00ff"
d="m 356.77786,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
d="M 356.77786,23.12117 C 356.16848,23.121178 355.7095,23.421959 355.40091,24.023514 C 355.09622,24.621177 354.94388,25.521566 354.94388,26.724686 C 354.94388,27.923908 355.09622,28.824297 355.40091,29.425858 C 355.7095,30.023515 356.16848,30.322343 356.77786,30.322342 C 357.39114,30.322343 357.85012,30.023515 358.15482,29.425858 C 358.4634,28.824297 358.6177,27.923908 358.61771,26.724686 C 358.6177,25.521566 358.4634,24.621177 358.15482,24.023514 C 357.85012,23.421959 357.39114,23.121178 356.77786,23.12117 M 356.77786,22.18367 C 357.75833,22.183679 358.50637,22.57235 359.022,23.349686 C 359.54153,24.12313 359.80129,25.248129 359.8013,26.724686 C 359.80129,28.197345 359.54153,29.322344 359.022,30.099686 C 358.50637,30.873123 357.75833,31.259842 356.77786,31.259842 C 355.79739,31.259842 355.04739,30.873123 354.52786,30.099686 C 354.01224,29.322344 353.75442,28.197345 353.75443,26.724686 C 353.75442,25.248129 354.01224,24.12313 354.52786,23.349686 C 355.04739,22.57235 355.79739,22.183679 356.77786,22.18367" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer98"
inkscape:label="info-battery"
style="display:inline">
<g
style="display:inline"
id="topbattery-milliamp-text"
transform="translate(471.54603,-363.5652)">
<rect
y="375"
x="12"
height="40"
width="100"
id="top-warning-low-energy"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
<g
id="g8649-8"
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)">
<path
inkscape:connector-curvature="0"
id="path6494-6"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184" />
<path
inkscape:connector-curvature="0"
id="path6496-5"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184" />
<path
inkscape:connector-curvature="0"
id="path6498-5"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184" />
<path
inkscape:connector-curvature="0"
id="path6500-6"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184" />
<path
inkscape:connector-curvature="0"
id="path6502-4"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184" />
</g>
</g>
<g
style="display:inline"
id="topbattery-amp-text"
transform="matrix(0.7,0,0,0.7,345.2216,-202)">
<rect
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
id="top-warning-high-current"
width="100"
height="40"
x="12"
y="335" />
<g
id="g8642-4"
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
<path
d="M 37.344081,349.57585 C 36.269846,349.57586 35.460715,350.1061 34.916711,351.16656 C 34.379604,352.22015 34.111029,353.80741 34.111029,355.92833 C 34.111029,358.0424 34.379604,359.62965 34.916711,360.69012 C 35.460715,361.7437 36.269846,362.27049 37.344081,362.27049 C 38.425214,362.27049 39.234344,361.7437 39.771473,360.69012 C 40.315455,359.62965 40.587457,358.0424 40.587478,355.92833 C 40.587457,353.80741 40.315455,352.22015 39.771473,351.16656 C 39.234344,350.1061 38.425214,349.57586 37.344081,349.57585 M 37.344081,347.92317 C 39.072514,347.92319 40.391209,348.60836 41.300188,349.97869 C 42.216042,351.34217 42.673968,353.32538 42.67399,355.92833 C 42.673968,358.52442 42.216042,360.50764 41.300188,361.87798 C 40.391209,363.24145 39.072514,363.92317 37.344081,363.92317 C 35.61567,363.92317 34.293526,363.24145 33.377652,361.87798 C 32.468694,360.50764 32.014194,358.52442 32.014194,355.92833 C 32.014194,353.32538 32.468694,351.34217 33.377652,349.97869 C 34.293526,348.60836 35.61567,347.92319 37.344081,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path4599-6"
inkscape:connector-curvature="0" />
<path
d="M 50.813421,349.57585 C 49.739184,349.57586 48.930054,350.1061 48.38605,351.16656 C 47.848922,352.22015 47.580368,353.80741 47.580368,355.92833 C 47.580368,358.0424 47.848922,359.62965 48.38605,360.69012 C 48.930054,361.7437 49.739184,362.27049 50.813421,362.27049 C 51.894553,362.27049 52.703662,361.7437 53.240791,360.69012 C 53.784795,359.62965 54.056797,358.0424 54.056818,355.92833 C 54.056797,353.80741 53.784795,352.22015 53.240791,351.16656 C 52.703662,350.1061 51.894553,349.57586 50.813421,349.57585 M 50.813421,347.92317 C 52.541854,347.92319 53.860549,348.60836 54.769527,349.97869 C 55.685381,351.34217 56.143308,353.32538 56.143308,355.92833 C 56.143308,358.52442 55.685381,360.50764 54.769527,361.87798 C 53.860549,363.24145 52.541854,363.92317 50.813421,363.92317 C 49.084988,363.92317 47.762845,363.24145 46.846991,361.87798 C 45.938013,360.50764 45.483534,358.52442 45.483534,355.92833 C 45.483534,353.32538 45.938013,351.34217 46.846991,349.97869 C 47.762845,348.60836 49.084988,347.92319 50.813421,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path4602-7"
inkscape:connector-curvature="0" />
<path
d="M 59.820516,361 L 62,361 L 62,363.62362 L 59.820516,363.62362 L 59.820516,361"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path4604-7"
inkscape:connector-curvature="0" />
<path
d="M 71.017419,349.57585 C 69.943183,349.57586 69.134053,350.1061 68.590049,351.16656 C 68.05292,352.22015 67.784366,353.80741 67.784366,355.92833 C 67.784366,358.0424 68.05292,359.62965 68.590049,360.69012 C 69.134053,361.7437 69.943183,362.27049 71.017419,362.27049 C 72.098551,362.27049 72.907661,361.7437 73.44479,360.69012 C 73.988793,359.62965 74.260795,358.0424 74.260816,355.92833 C 74.260795,353.80741 73.988793,352.22015 73.44479,351.16656 C 72.907661,350.1061 72.098551,349.57586 71.017419,349.57585 M 71.017419,347.92317 C 72.745852,347.92319 74.064547,348.60836 74.973526,349.97869 C 75.88938,351.34217 76.347306,353.32538 76.347306,355.92833 C 76.347306,358.52442 75.88938,360.50764 74.973526,361.87798 C 74.064547,363.24145 72.745852,363.92317 71.017419,363.92317 C 69.288987,363.92317 67.966844,363.24145 67.05099,361.87798 C 66.142032,360.50764 65.687532,358.52442 65.687532,355.92833 C 65.687532,353.32538 66.142032,351.34217 67.05099,349.97869 C 67.966844,348.60836 69.288987,347.92319 71.017419,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path4606-7"
inkscape:connector-curvature="0" />
<path
d="M 84.486758,349.57585 C 83.412523,349.57586 82.603392,350.1061 82.059388,351.16656 C 81.52226,352.22015 81.253706,353.80741 81.253706,355.92833 C 81.253706,358.0424 81.52226,359.62965 82.059388,360.69012 C 82.603392,361.7437 83.412523,362.27049 84.486758,362.27049 C 85.567891,362.27049 86.377,361.7437 86.914129,360.69012 C 87.458133,359.62965 87.730134,358.0424 87.730134,355.92833 C 87.730134,353.80741 87.458133,352.22015 86.914129,351.16656 C 86.377,350.1061 85.567891,349.57586 84.486758,349.57585 M 84.486758,347.92317 C 86.21517,347.92319 87.533886,348.60836 88.442865,349.97869 C 89.358718,351.34217 89.816646,353.32538 89.816646,355.92833 C 89.816646,358.52442 89.358718,360.50764 88.442865,361.87798 C 87.533886,363.24145 86.21517,363.92317 84.486758,363.92317 C 82.758326,363.92317 81.436182,363.24145 80.520329,361.87798 C 79.61135,360.50764 79.156871,358.52442 79.156871,355.92833 C 79.156871,353.32538 79.61135,351.34217 80.520329,349.97869 C 81.436182,348.60836 82.758326,347.92319 84.486758,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path4608-3"
inkscape:connector-curvature="0" />
</g>
</g>
<g
style="display:inline"
id="topbattery-volt-text"
transform="matrix(0.7,0,0,0.7,345.2216,-202)">
<rect
y="295"
x="12"
height="40"
width="100"
id="top-warning-low-voltage"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
<g
id="g8656-4"
transform="matrix(0.98684211,0,0,0.98684211,4.3808609,3.1578932)">
<path
inkscape:connector-curvature="0"
id="path6483-0"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 34.816055,309.65268 C 33.74182,309.65269 32.932689,310.18292 32.388685,311.24338 C 31.851578,312.29697 31.583003,313.88423 31.583003,316.00516 C 31.583003,318.11922 31.851578,319.70648 32.388685,320.76694 C 32.932689,321.82052 33.74182,322.34732 34.816055,322.34732 C 35.897188,322.34732 36.706318,321.82052 37.243447,320.76694 C 37.787429,319.70648 38.059431,318.11922 38.059452,316.00516 C 38.059431,313.88423 37.787429,312.29697 37.243447,311.24338 C 36.706318,310.18292 35.897188,309.65269 34.816055,309.65268 M 34.816055,308 C 36.544488,308.00001 37.863183,308.68518 38.772162,310.05552 C 39.688016,311.41899 40.145942,313.4022 40.145964,316.00516 C 40.145942,318.60125 39.688016,320.58446 38.772162,321.95481 C 37.863183,323.31827 36.544488,323.99999 34.816055,324 C 33.087644,323.99999 31.7655,323.31827 30.849626,321.95481 C 29.940668,320.58446 29.486168,318.60125 29.486168,316.00516 C 29.486168,313.4022 29.940668,311.41899 30.849626,310.05552 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
<path
inkscape:connector-curvature="0"
id="path6485-3"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 48.285395,309.65268 C 47.211158,309.65269 46.402028,310.18292 45.858024,311.24338 C 45.320896,312.29697 45.052342,313.88423 45.052342,316.00516 C 45.052342,318.11922 45.320896,319.70648 45.858024,320.76694 C 46.402028,321.82052 47.211158,322.34732 48.285395,322.34732 C 49.366527,322.34732 50.175636,321.82052 50.712765,320.76694 C 51.256769,319.70648 51.528771,318.11922 51.528792,316.00516 C 51.528771,313.88423 51.256769,312.29697 50.712765,311.24338 C 50.175636,310.18292 49.366527,309.65269 48.285395,309.65268 M 48.285395,308 C 50.013828,308.00001 51.332523,308.68518 52.241501,310.05552 C 53.157355,311.41899 53.615282,313.4022 53.615282,316.00516 C 53.615282,318.60125 53.157355,320.58446 52.241501,321.95481 C 51.332523,323.31827 50.013828,323.99999 48.285395,324 C 46.556962,323.99999 45.234819,323.31827 44.318965,321.95481 C 43.409987,320.58446 42.955508,318.60125 42.955508,316.00516 C 42.955508,313.4022 43.409987,311.41899 44.318965,310.05552 C 45.234819,308.68518 46.556962,308.00001 48.285395,308" />
<path
inkscape:connector-curvature="0"
id="path6487-9"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 57.29249,321.07682 L 59.471974,321.07682 L 59.471974,323.70044 L 57.29249,323.70044 L 57.29249,321.07682" />
<path
inkscape:connector-curvature="0"
id="path6489-6"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 68.489393,309.65268 C 67.415157,309.65269 66.606027,310.18292 66.062023,311.24338 C 65.524894,312.29697 65.25634,313.88423 65.25634,316.00516 C 65.25634,318.11922 65.524894,319.70648 66.062023,320.76694 C 66.606027,321.82052 67.415157,322.34732 68.489393,322.34732 C 69.570525,322.34732 70.379635,321.82052 70.916764,320.76694 C 71.460767,319.70648 71.732769,318.11922 71.73279,316.00516 C 71.732769,313.88423 71.460767,312.29697 70.916764,311.24338 C 70.379635,310.18292 69.570525,309.65269 68.489393,309.65268 M 68.489393,308 C 70.217826,308.00001 71.536521,308.68518 72.4455,310.05552 C 73.361354,311.41899 73.81928,313.4022 73.81928,316.00516 C 73.81928,318.60125 73.361354,320.58446 72.4455,321.95481 C 71.536521,323.31827 70.217826,323.99999 68.489393,324 C 66.760961,323.99999 65.438818,323.31827 64.522964,321.95481 C 63.614006,320.58446 63.159506,318.60125 63.159506,316.00516 C 63.159506,313.4022 63.614006,311.41899 64.522964,310.05552 C 65.438818,308.68518 66.760961,308.00001 68.489393,308" />
<path
inkscape:connector-curvature="0"
id="path6491-5"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 81.958732,309.65268 C 80.884497,309.65269 80.075366,310.18292 79.531362,311.24338 C 78.994234,312.29697 78.72568,313.88423 78.72568,316.00516 C 78.72568,318.11922 78.994234,319.70648 79.531362,320.76694 C 80.075366,321.82052 80.884497,322.34732 81.958732,322.34732 C 83.039865,322.34732 83.848974,321.82052 84.386103,320.76694 C 84.930107,319.70648 85.202108,318.11922 85.202108,316.00516 C 85.202108,313.88423 84.930107,312.29697 84.386103,311.24338 C 83.848974,310.18292 83.039865,309.65269 81.958732,309.65268 M 81.958732,308 C 83.687144,308.00001 85.00586,308.68518 85.914839,310.05552 C 86.830692,311.41899 87.28862,313.4022 87.28862,316.00516 C 87.28862,318.60125 86.830692,320.58446 85.914839,321.95481 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 C 80.2303,323.99999 78.908156,323.31827 77.992303,321.95481 C 77.083324,320.58446 76.628845,318.60125 76.628845,316.00516 C 76.628845,313.4022 77.083324,311.41899 77.992303,310.05552 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
</g>
</g>
<g
transform="matrix(2.7544652,0,0,2.7544652,-587.831,-43.112217)"
id="topbattery-total-distance-text"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path3882-8"
style="font-size:12px;fill:#ff00ff"
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3884-5"
style="font-size:12px;fill:#ff00ff"
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3886-0"
style="font-size:12px;fill:#ff00ff"
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3888-5"
style="font-size:12px;fill:#ff00ff"
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367" />
<path
inkscape:connector-curvature="0"
id="path3890-9"
style="font-size:12px;fill:#ff00ff"
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367" />
</g>
<g
transform="translate(2.578764,0.38210888)"
id="topbattery-total-distance-label"
style="display:inline">
<g
id="g6812"
transform="matrix(1.4653007,0,0,1.4653007,-90.892136,61.318534)">
<path
inkscape:connector-curvature="0"
id="path3913-8"
d="M 188.80254,-33.140573 L 188.80254,-31.86879 C 188.22579,-32.105492 187.68162,-32.28195 187.17009,-32.398162 C 186.6585,-32.514357 186.16451,-32.572458 185.68807,-32.572466 C 184.86054,-32.572458 184.2211,-32.434721 183.76971,-32.1593 C 183.32335,-31.883846 183.10017,-31.492197 183.10019,-30.984352 C 183.10017,-30.558266 183.24809,-30.235479 183.54402,-30.015991 C 183.84495,-29.800793 184.41167,-29.626489 185.24419,-29.493075 L 186.16201,-29.331697 C 187.29544,-29.146626 188.1305,-28.819537 188.66712,-28.350423 C 189.20877,-27.885604 189.4796,-27.26155 189.4796,-26.478255 C 189.4796,-25.544323 189.11348,-24.836342 188.38126,-24.354315 C 187.65404,-23.872284 186.5858,-23.631271 185.1765,-23.631271 C 184.64489,-23.631271 184.07816,-23.682915 183.47633,-23.786203 C 182.87951,-23.889491 182.26012,-24.042282 181.61817,-24.244562 L 181.61817,-25.587358 C 182.23504,-25.290392 182.83938,-25.066592 183.43119,-24.91596 C 184.02299,-24.765324 184.60477,-24.690008 185.1765,-24.69001 C 186.04415,-24.690008 186.71367,-24.836332 187.18513,-25.129 C 187.65654,-25.421659 187.89226,-25.839129 187.89228,-26.381415 C 187.89226,-26.854832 187.72165,-27.224961 187.38073,-27.491803 C 187.04468,-27.758637 186.49051,-27.958765 185.71815,-28.092189 L 184.79283,-28.247121 C 183.65938,-28.440788 182.83938,-28.744209 182.33283,-29.157382 C 181.82629,-29.570544 181.57303,-30.145105 181.57303,-30.881066 C 181.57303,-31.733218 181.92158,-32.404613 182.61872,-32.895261 C 183.32086,-33.385886 184.28628,-33.631205 185.51502,-33.631215 C 186.04163,-33.631205 186.57827,-33.590313 187.12495,-33.508558 C 187.67158,-33.42677 188.23079,-33.304117 188.80254,-33.140579"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
<path
inkscape:connector-curvature="0"
id="path3915-2"
d="M 191.58717,-33.456048 L 193.08515,-33.456048 L 193.08515,-27.71249 C 193.08515,-26.69929 193.29916,-25.968946 193.72715,-25.521452 C 194.15514,-25.078179 194.84879,-24.856542 195.80811,-24.856542 C 196.76249,-24.856542 197.45368,-25.078179 197.88167,-25.521452 C 198.30966,-25.968946 198.52367,-26.69929 198.52367,-27.71249 L 198.52367,-33.456048 L 200.02167,-33.456048 L 200.02167,-27.554178 C 200.02165,-26.321453 199.66499,-25.39058 198.95168,-24.761555 C 198.24326,-24.13253 197.19539,-23.818016 195.80811,-23.818016 C 194.41587,-23.818016 193.3631,-24.13253 192.64978,-24.761555 C 191.94136,-25.39058 191.58717,-26.321453 191.58717,-27.554178 L 191.58717,-33.456048"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
<path
inkscape:connector-curvature="0"
id="path3917-4"
d="M 202.65296,-33.456048 L 204.91727,-33.456048 L 207.78338,-26.89728 L 210.66452,-33.456048 L 212.92883,-33.456048 L 212.92883,-23.818016 L 211.44688,-23.818016 L 211.44688,-32.28115 L 208.55067,-25.670739 L 207.02359,-25.670739 L 204.12739,-32.28115 L 204.12739,-23.818016 L 202.65296,-23.818016 L 202.65296,-33.456048"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
</g>
<g
id="g6806"
transform="matrix(1.4653007,0,0,1.4653007,-143.64744,81.823921)">
<path
d="M 218.2657,-32.384898 L 218.2657,-24.890044 L 220.10123,-24.890044 C 221.65088,-24.890044 222.78429,-25.1913 223.50145,-25.793816 C 224.22363,-26.396328 224.58471,-27.34744 224.58471,-28.647154 C 224.58471,-29.938251 224.22363,-30.882907 223.50145,-31.481126 C 222.78429,-32.083632 221.65088,-32.384889 220.10123,-32.384898 L 218.2657,-32.384898 M 216.74613,-33.456512 L 219.86802,-33.456512 C 222.04457,-33.456502 223.64188,-33.067022 224.65995,-32.288065 C 225.67801,-31.513395 226.18703,-30.299759 226.18703,-28.647154 C 226.18703,-26.985932 225.67548,-25.76584 224.65242,-24.986877 C 223.62934,-24.207912 222.03454,-23.818429 219.86802,-23.818429 L 216.74613,-23.818429 L 216.74613,-33.456512"
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path3900-2"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path6379-2"
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 241.36773,-33.456512 L 250.86882,-33.456512 L 250.86882,-32.359076 L 246.88182,-32.359076 L 246.88182,-23.818429 L 245.35473,-23.818429 L 245.35473,-32.359076 L 241.36773,-32.359076 L 241.36773,-33.456512" />
<path
d="M 228.60181,-33.456512 L 230.12137,-33.456512 L 230.12137,-23.818429 L 228.60181,-23.818429 L 228.60181,-33.456512"
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path3902-7"
inkscape:connector-curvature="0" />
<path
d="M 239.87824,-33.140193 L 239.87824,-31.868457 C 239.30151,-32.10515 238.75735,-32.281601 238.24582,-32.397808 C 237.73429,-32.514003 237.24029,-32.572099 236.76387,-32.572107 C 235.93637,-32.572099 235.29695,-32.434379 234.8456,-32.158954 C 234.39926,-31.88351 234.17608,-31.491876 234.17608,-30.98405 C 234.17608,-30.55798 234.32398,-30.235205 234.61992,-30.015723 C 234.92082,-29.800534 235.48753,-29.626234 236.32003,-29.492827 L 237.23781,-29.331433 C 238.37119,-29.14637 239.20622,-28.819292 239.74284,-28.350195 C 240.28445,-27.885394 240.55528,-27.261362 240.55528,-26.478096 C 240.55528,-25.544197 240.18916,-24.836243 239.45698,-24.354232 C 238.72978,-23.87222 237.66156,-23.631215 236.25234,-23.631215 C 235.72072,-23.631215 235.15402,-23.682859 234.55221,-23.786147 C 233.95542,-23.889435 233.33605,-24.042214 232.69412,-24.244487 L 232.69412,-25.587234 C 233.31097,-25.29028 233.91529,-25.06649 234.50709,-24.915861 C 235.09886,-24.765225 235.68061,-24.689917 236.25234,-24.689919 C 237.11993,-24.689917 237.78945,-24.836241 238.26088,-25.128894 C 238.73228,-25.421542 238.968,-25.838998 238.968,-26.381263 C 238.968,-26.854665 238.79757,-27.224781 238.45647,-27.491612 C 238.12046,-27.758436 237.56629,-27.958557 236.79397,-28.091974 L 235.86868,-28.246907 C 234.73525,-28.440568 233.91529,-28.743977 233.40877,-29.157135 C 232.90224,-29.570282 232.64898,-30.144822 232.64898,-30.880757 C 232.64898,-31.732878 232.99753,-32.40425 233.69463,-32.894877 C 234.39674,-33.385488 235.36216,-33.630797 236.59085,-33.630807 C 237.11742,-33.630797 237.65405,-33.589905 238.2007,-33.50815 C 238.74734,-33.426362 239.30651,-33.303717 239.87824,-33.140186"
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="path3904-3"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path10160-1"
d="M 351.17234,60.617891 L 351.17234,2.6178911"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
sodipodi:nodetypes="cc" />
</g>
<g
id="topbattery-labels">
<g
transform="matrix(2.6093993,0,0,2.7073858,-1027.0265,-102.88932)"
id="top-battery-milliamp-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path4641-4"
d="M 620.206,52 L 620.206,47.775181 L 620.84648,47.775181 L 620.84648,48.367929 C 620.97909,48.161068 621.15545,47.995311 621.37558,47.870658 C 621.5957,47.74336 621.84633,47.67971 622.12746,47.679705 C 622.4404,47.67971 622.69633,47.744685 622.89524,47.874636 C 623.0968,48.004593 623.23869,48.186263 623.32091,48.419645 C 623.65507,47.926356 624.09002,47.67971 624.62575,47.679705 C 625.04478,47.67971 625.36701,47.796403 625.59244,48.029784 C 625.81787,48.260522 625.93058,48.617231 625.93059,49.099913 L 625.93059,52 L 625.2185,52 L 625.2185,49.338603 C 625.21849,49.052178 625.1946,48.846639 625.1469,48.721986 C 625.1018,48.594688 625.01827,48.492582 624.89627,48.415667 C 624.77427,48.338757 624.63106,48.300304 624.46663,48.3003 C 624.16959,48.300304 623.92294,48.39976 623.72669,48.598663 C 623.53043,48.794923 623.4323,49.110524 623.43231,49.545468 L 623.43231,52 L 622.71623,52 L 622.71623,49.255061 C 622.71623,48.936811 622.65793,48.698121 622.5412,48.53899 C 622.4245,48.379867 622.23355,48.300304 621.96834,48.3003 C 621.76678,48.300304 621.5798,48.35335 621.40742,48.459427 C 621.23768,48.565515 621.11436,48.720664 621.03745,48.924873 C 620.96055,49.129089 620.92208,49.423473 620.92208,49.808027 L 620.92208,52 L 620.20601,52" />
<path
inkscape:connector-curvature="0"
id="path4645-4"
d="M 632.45877,52 L 632.45877,46.168 L 633.17484,46.168 L 633.17484,48.260518 C 633.509,47.873314 633.93069,47.67971 634.4399,47.679705 C 634.75284,47.67971 635.02469,47.742035 635.25542,47.866679 C 635.48615,47.988681 635.65058,48.158416 635.74872,48.375885 C 635.84949,48.593362 635.89988,48.908964 635.89989,49.32269 L 635.89989,52 L 635.18382,52 L 635.18382,49.32269 C 635.18381,48.964658 635.10562,48.704751 634.9491,48.542969 C 634.79528,48.378541 634.57648,48.296326 634.29271,48.296322 C 634.08053,48.296326 633.8803,48.352022 633.692,48.463405 C 633.50635,48.572145 633.37375,48.720664 633.29418,48.90896 C 633.21458,49.097264 633.17484,49.35717 633.17484,49.688682 L 633.17484,52 L 632.45877,52" />
<path
inkscape:connector-curvature="0"
id="path4643-0"
d="M 626.46764,52 L 628.70735,46.168 L 629.53879,46.168 L 631.92569,52 L 631.04652,52 L 630.36625,50.233692 L 627.92763,50.233692 L 627.28714,52 L 626.46764,52 M 628.15041,49.605141 L 630.12756,49.605141 L 629.5189,47.990003 C 629.33325,47.499366 629.19534,47.096245 629.10517,46.780639 C 629.03087,47.154592 628.92615,47.525887 628.79089,47.894527 L 628.15041,49.605141" />
</g>
<g
transform="matrix(1.9483514,0,0,2.0215039,-792.43111,-12.843583)"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="top-battery-amp-label">
<path
d="M 631.84326,27.351151 L 630.83984,30.072097 L 632.85034,30.072097 L 631.84326,27.351151 M 631.42578,26.622391 L 632.2644,26.622391 L 634.34815,32.08992 L 633.57911,32.08992 L 633.08106,30.687332 L 630.61646,30.687332 L 630.11841,32.08992 L 629.33838,32.08992 L 631.42578,26.622391"
style="font-size:8px;fill:#ffffff"
id="path4614-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.8265794,0,0,1.8951599,-705.20685,-2.6763355)"
id="top-battery-volt-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
<path
inkscape:connector-curvature="0"
id="path6809-3"
style="font-size:8px;fill:#ffffff"
d="M 625.76807,14.08992 L 623.5415,8.2578888 L 624.36572,8.2578888 L 626.21338,13.168045 L 628.06494,8.2578888 L 628.88525,8.2578888 L 626.6626,14.08992 L 625.76807,14.08992" />
</g>
<g
transform="matrix(1.4935782,0,0,1.4938662,187.36162,-550.49066)"
id="top-battery-icon"
style="display:inline">
<rect
ry="0.37989542"
rx="0.3369644"
y="379.88272"
x="179.70692"
height="23.048584"
width="10.563934"
id="rect8252-6"
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.599971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<rect
ry="0.37989542"
rx="0.3369644"
y="377.36176"
x="182.70804"
height="2.4008942"
width="4.4416542"
id="rect8254-0"
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path8256-9"
d="M 187.02966,383.00388 L 181.98777,391.88719 L 185.22898,391.76714 L 182.10782,399.32996 L 188.2301,390.56669 L 184.74881,390.44665 z"
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
</g>
@ -3840,11 +4154,11 @@
inkscape:label="#path10180"
inkscape:connector-curvature="0"
id="gps0"
d="m 55.41388,54 l 0,-9.532546"
d="M 55.41388,54 L 55.41388,44.467454"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 55.41388,54 l 0,-9.532546"
d="M 55.41388,54 L 55.41388,44.467454"
id="gps1"
inkscape:connector-curvature="0"
inkscape:label="#path10180"
@ -3852,13 +4166,13 @@
<path
inkscape:connector-curvature="0"
id="gps2"
d="m 66.241636,54 l 0,-13.345565"
d="M 66.241636,54 L 66.241636,40.654435"
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:label="#path10211"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 77.069393,54 l 0,-17.158583"
d="M 77.069393,54 L 77.069393,36.841417"
id="gps3"
inkscape:connector-curvature="0"
inkscape:label="#path10213"
@ -3866,13 +4180,13 @@
<path
inkscape:connector-curvature="0"
id="gps4"
d="m 87.89715,54 l 0,-20.971601"
d="M 87.89715,54 L 87.89715,33.028399"
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:label="#path10215"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 98.724906,54 l 0,-24.78462"
d="M 98.724906,54 L 98.724906,29.21538"
id="gps5"
inkscape:connector-curvature="0"
inkscape:label="#path10217"
@ -3880,13 +4194,13 @@
<path
inkscape:connector-curvature="0"
id="gps6"
d="m 109.55266,54 l 0,-28.597638"
d="M 109.55266,54 L 109.55266,25.402362"
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:label="#path10219"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 120.38042,54 l 0,-32.410657"
d="M 120.38042,54 L 120.38042,21.589343"
id="gps7"
inkscape:connector-curvature="0"
inkscape:label="#path10221"
@ -3894,13 +4208,13 @@
<path
inkscape:connector-curvature="0"
id="gps8"
d="m 131.20817,54 l 0,-36.223675"
d="M 131.20817,54 L 131.20817,17.776325"
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:label="#path10223"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 142.03593,54 l 0,-40.036693"
d="M 142.03593,54 L 142.03593,13.963307"
id="gps9"
inkscape:connector-curvature="0"
inkscape:label="#path10225"
@ -3908,7 +4222,7 @@
<path
inkscape:connector-curvature="0"
id="gps10"
d="m 152.86369,54 l 0,-43.849712"
d="M 152.86369,54 L 152.86369,10.150288"
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:label="#path10227"
sodipodi:nodetypes="cc" />
@ -3925,12 +4239,12 @@
id="gps-mode-text"
transform="matrix(1.4543578,0,0,1.4543578,-4.981688,1.3723646)">
<path
d="m 54.155106,11.899892 c 0.472,0.100915 0.839838,0.310876 1.103515,0.629883 c 0.266922,0.319013 0.400385,0.712893 0.400391,1.18164 c -6e-6,0.719403 -0.247401,1.276043 -0.742188,1.669922 c -0.494796,0.39388 -1.19792,0.59082 -2.109375,0.59082 c -0.305992,0 -0.621747,-0.03092 -0.947265,-0.09277 c -0.322267,-0.05859 -0.655926,-0.148112 -1.000977,-0.268555 l 0,-0.952148 c 0.273437,0.159506 0.572915,0.279949 0.898438,0.361328 c 0.325519,0.08138 0.665687,0.122071 1.020507,0.12207 c 0.618487,10e-7 1.088864,-0.122069 1.411133,-0.366211 c 0.325517,-0.244139 0.488277,-0.598956 0.488282,-1.064453 c -5e-6,-0.429685 -0.151372,-0.764971 -0.454102,-1.005859 c -0.299483,-0.244137 -0.717777,-0.366208 -1.254883,-0.366211 l -0.849609,0 l 0,-0.810547 l 0.888672,0 c 0.485022,4e-6 0.856116,-0.09602 1.113281,-0.288086 c 0.257157,-0.195308 0.385738,-0.475255 0.385742,-0.839844 C 54.506664,10.026525 54.3732,9.7400672 54.106277,9.5414934 C 53.842602,9.339677 53.46337,9.2387656 52.968582,9.238759 c -0.270185,6.6e-6 -0.559898,0.029303 -0.86914,0.087891 c -0.309247,0.0586 -0.649416,0.1497459 -1.020508,0.2734375 l 0,-0.8789063 c 0.374347,-0.1041594 0.724282,-0.1822844 1.049804,-0.234375 c 0.328774,-0.052076 0.638019,-0.078118 0.927735,-0.078125 c 0.748694,7.4e-6 1.341141,0.1709057 1.777344,0.5126953 c 0.436192,0.3385483 0.654291,0.7975322 0.654296,1.3769525 c -5e-6,0.403651 -0.115565,0.745448 -0.346679,1.025391 c -0.231125,0.276697 -0.559901,0.468754 -0.986328,0.576172"
d="M 54.155106,11.899892 C 54.627106,12.000807 54.994944,12.210768 55.258621,12.529775 C 55.525543,12.848788 55.659006,13.242668 55.659012,13.711415 C 55.659006,14.430818 55.411611,14.987458 54.916824,15.381337 C 54.422028,15.775217 53.718904,15.972157 52.807449,15.972157 C 52.501457,15.972157 52.185702,15.941237 51.860184,15.879387 C 51.537917,15.820797 51.204258,15.731275 50.859207,15.610832 L 50.859207,14.658684 C 51.132644,14.81819 51.432122,14.938633 51.757645,15.020012 C 52.083164,15.101392 52.423332,15.142083 52.778152,15.142082 C 53.396639,15.142083 53.867016,15.020013 54.189285,14.775871 C 54.514802,14.531732 54.677562,14.176915 54.677567,13.711418 C 54.677562,13.281733 54.526195,12.946447 54.223465,12.705559 C 53.923982,12.461422 53.505688,12.339351 52.968582,12.339348 L 52.118973,12.339348 L 52.118973,11.528801 L 53.007645,11.528801 C 53.492667,11.528805 53.863761,11.432781 54.120926,11.240715 C 54.378083,11.045407 54.506664,10.76546 54.506668,10.400871 C 54.506664,10.026525 54.3732,9.7400672 54.106277,9.5414934 C 53.842602,9.339677 53.46337,9.2387656 52.968582,9.238759 C 52.698397,9.2387656 52.408684,9.268062 52.099442,9.32665 C 51.790195,9.38525 51.450026,9.4763959 51.078934,9.6000875 L 51.078934,8.7211812 C 51.453281,8.6170218 51.803216,8.5388968 52.128738,8.4868062 C 52.457512,8.4347302 52.766757,8.4086882 53.056473,8.4086812 C 53.805167,8.4086886 54.397614,8.5795869 54.833817,8.9213765 C 55.270009,9.2599248 55.488108,9.7189087 55.488113,10.298329 C 55.488108,10.70198 55.372548,11.043777 55.141434,11.32372 C 54.910309,11.600417 54.581533,11.792474 54.155106,11.899892"
style="font-size:10px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6298"
inkscape:connector-curvature="0" />
<path
d="m 58.432449,9.3510637 l 0,5.6689453 l 1.191407,0 c 1.005855,10e-7 1.741531,-0.227864 2.207031,-0.683594 c 0.468744,-0.455727 0.703119,-1.175127 0.703125,-2.158203 c -6e-6,-0.976558 -0.234381,-1.691075 -0.703125,-2.143555 C 61.365387,9.5789346 60.629711,9.3510702 59.623856,9.3510637 l -1.191407,0 M 57.446121,8.5405169 l 2.026367,0 c 1.412756,7.2e-6 2.449539,0.2946033 3.110352,0.883789 c 0.6608,0.5859431 0.991204,1.5039111 0.991211,2.7539061 c -7e-6,1.256513 -0.332038,2.179364 -0.996094,2.768555 c -0.664068,0.589193 -1.699223,0.883789 -3.105469,0.883789 l -2.026367,0 l 0,-7.2900391"
d="M 58.432449,9.3510637 L 58.432449,15.020009 L 59.623856,15.020009 C 60.629711,15.02001 61.365387,14.792145 61.830887,14.336415 C 62.299631,13.880688 62.534006,13.161288 62.534012,12.178212 C 62.534006,11.201654 62.299631,10.487137 61.830887,10.034657 C 61.365387,9.5789346 60.629711,9.3510702 59.623856,9.3510637 L 58.432449,9.3510637 M 57.446121,8.5405169 L 59.472488,8.5405169 C 60.885244,8.5405241 61.922027,8.8351202 62.58284,9.4243059 C 63.24364,10.010249 63.574044,10.928217 63.574051,12.178212 C 63.574044,13.434725 63.242013,14.357576 62.577957,14.946767 C 61.913889,15.53596 60.878734,15.830556 59.472488,15.830556 L 57.446121,15.830556 L 57.446121,8.5405169"
style="font-size:10px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6300"
inkscape:connector-curvature="0" />
@ -3947,7 +4261,7 @@
id="info-border">
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;display:inline"
d="m 642,61.5 l -642.5,0"
d="M 642,61.5 L -0.5,61.5"
id="info-bg-top"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -3967,7 +4281,7 @@
sodipodi:insensitive="true">
<path
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 50.000001,53.843809 l 108.277569,0.1562 l 0,-43.847141 l -10.82776,-0.0027 l 0,43.83468 l -10.82776,-0.01678 l 0,-39.992233 l 10.82776,0.08526 l -10.82776,-0.08526 l 0,4.047576 l -10.82775,6.63e-4 l 0,35.929072 l -10.82776,-0.01315 l 0.045,-32.090134 l 10.78275,-0.01335 l -10.87277,0.01335 l 0.045,3.688376 l -10.82774,-0.135867 l 0,28.519647 l -10.827754,-0.01544 l 0,-24.691183 l 10.827754,-6.26e-4 l -10.827754,6.26e-4 l 0,3.813018 l -10.827757,0 l 0,20.861798 l 0,-17.04878 l -10.827756,0 l 0,17.034126 l 0,-13.221107 l -10.827757,0 l 0,13.204955 l 0,-9.391937 L 50,44.467478 z"
d="M 50.000001,53.843809 L 158.27757,54.000009 L 158.27757,10.152868 L 147.44981,10.150168 L 147.44981,53.984848 L 136.62205,53.968068 L 136.62205,13.975835 L 147.44981,14.061095 L 136.62205,13.975835 L 136.62205,18.023411 L 125.7943,18.024074 L 125.7943,53.953146 L 114.96654,53.939996 L 115.01154,21.849862 L 125.79429,21.836512 L 114.92152,21.849862 L 114.96652,25.538238 L 104.13878,25.402371 L 104.13878,53.922018 L 93.311026,53.906578 L 93.311026,29.215395 L 104.13878,29.214769 L 93.311026,29.215395 L 93.311026,33.028413 L 82.483269,33.028413 L 82.483269,53.890211 L 82.483269,36.841431 L 71.655513,36.841431 L 71.655513,53.875557 L 71.655513,40.65445 L 60.827756,40.65445 L 60.827756,53.859405 L 60.827756,44.467468 L 50,44.467478 z"
id="satbar-mask"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc"
@ -4000,7 +4314,7 @@
inkscape:transform-center-y="-105.12133"
inkscape:connector-curvature="0"
id="path3444"
d="m 262.55821,71.879346 l -6.50008,-11.25848"
d="M 262.55821,71.879346 L 256.05813,60.620866"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="60.69183" />
<path
@ -4036,7 +4350,7 @@
inkscape:transform-center-y="-104.31057"
inkscape:connector-curvature="0"
id="path3466"
d="m 281.77925,62.464332 l -1.94063,-4.28458"
d="M 281.77925,62.464332 L 279.83862,58.179752"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="38.90241" />
<path
@ -4044,7 +4358,7 @@
sodipodi:nodetypes="cc"
inkscape:transform-center-x="47.84564"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 272.99748,66.39497 l -2.31603,-4.30844"
d="M 272.99748,66.39497 L 270.68145,62.08653"
id="path3468"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-100.52307" />
@ -4053,14 +4367,14 @@
inkscape:transform-center-y="-117.24761"
inkscape:connector-curvature="0"
id="path3491"
d="m 349.73406,60.402428 l 3.36469,-12.557202"
d="M 349.73406,60.402428 L 353.09875,47.845226"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="31.416405" />
<path
transform="translate(0,4)"
inkscape:transform-center-x="60.69183"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 377.44179,71.879346 l 6.50008,-11.25848"
d="M 377.44179,71.879346 L 383.94187,60.620866"
id="path3493"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-105.12133" />
@ -4069,7 +4383,7 @@
inkscape:transform-center-y="-85.831206"
inkscape:connector-curvature="0"
id="path3495"
d="m 399.82423,91.345686 l 11.40936,-9.763523"
d="M 399.82423,91.345686 L 411.23359,81.582163"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="85.83121"
sodipodi:nodetypes="cc" />
@ -4078,7 +4392,7 @@
inkscape:transform-center-y="-51.353944"
inkscape:connector-curvature="0"
id="path3497"
d="m 330.38014,56.242757 l 0.76566,-4.817725"
d="M 330.38014,56.242757 L 331.1458,51.425032"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="10.57928"
sodipodi:nodetypes="cc" />
@ -4095,7 +4409,7 @@
transform="translate(0,4)"
inkscape:transform-center-x="38.90241"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 358.22075,62.464332 l 1.94063,-4.28458"
d="M 358.22075,62.464332 L 360.16138,58.179752"
id="path3501"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-104.31057"
@ -4105,7 +4419,7 @@
inkscape:transform-center-y="-100.52307"
inkscape:connector-curvature="0"
id="path3503"
d="m 367.00252,66.39497 l 2.31603,-4.30844"
d="M 367.00252,66.39497 L 369.31855,62.08653"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="47.84564"
sodipodi:nodetypes="cc" />
@ -4114,7 +4428,7 @@
sodipodi:open="true"
sodipodi:end="5.5477076"
sodipodi:start="3.8773293"
d="M 238.84479,91.530033 C 279.42114,46.70925 348.64918,43.268451 393.46997,83.844794 C 396.16439,86.284059 398.73566,88.855997 401.17423,91.55105"
d="M 238.84479,91.530033 A 109.47147,109.47147 0 0 1 401.17423,91.55105"
sodipodi:ry="109.47147"
sodipodi:rx="109.47147"
sodipodi:cy="165"
@ -4124,7 +4438,7 @@
sodipodi:type="arc" />
<path
style="fill:#ffffff;stroke:none;display:inline"
d="m 311.913,44.002 l 8.08652,15 l 8.01834,-15 z"
d="M 311.913,44.002 L 319.99952,59.002 L 328.01786,44.002 z"
id="path8288"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-7.5"
@ -4146,7 +4460,7 @@
style="display:inline">
<path
style="fill:#ffffff;stroke:none;display:inline"
d="m 328.90502,126.42145 l -2.96834,-5.50609 l -11.82329,0 l -2.9433,5.50609 z"
d="M 328.90502,126.42145 L 325.93668,120.91536 L 314.11339,120.91536 L 311.17009,126.42145 z"
id="sideslip-moving"
inkscape:connector-curvature="0"
inkscape:transform-center-y="11.012182"
@ -4161,7 +4475,7 @@
sodipodi:insensitive="true">
<path
style="fill:#ffffff;stroke:none;display:inline"
d="M 324.45251,118.16231 320,109.90318 l -4.41496,8.25913 z"
d="M 324.45251,118.16231 L 320,109.90318 L 315.58504,118.16231 z"
id="sideslip-fixed"
inkscape:connector-curvature="0"
inkscape:transform-center-y="11.012182"
@ -4184,13 +4498,13 @@
<path
id="path4955"
transform="translate(0,4)"
d="M 320,165 274.59375,187.5 320,174.125 l 0.0312,0 L 365.4375,187.5 320.03125,165 320,165 z"
d="M 320,165 L 274.59375,187.5 L 320,174.125 L 320.0312,174.125 L 365.4375,187.5 L 320.03125,165 L 320,165 z"
style="fill:#ffff00;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path4957"
transform="translate(0,4)"
d="m 320,174 -45.15625,13.375 45.15625,-5.5 0.0312,0 45.15625,5.5 L 320.03125,174 320,174 z"
d="M 320,174 L 274.84375,187.375 L 320,181.875 L 320.0312,181.875 L 365.18745,187.375 L 320.03125,174 L 320,174 z"
style="fill:#808000;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
</g>
@ -4211,7 +4525,7 @@
id="g4945">
<path
style="fill:#ffff00;fill-opacity:1;stroke:none"
d="m 165,174.9375 42.9375,0 5,4.56167 -47.9375,0 z"
d="M 165,174.9375 L 207.9375,174.9375 L 212.9375,179.49917 L 165,179.49917 z"
id="path4941"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
@ -4221,7 +4535,7 @@
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path4943"
d="m 165,184.06084 42.9375,0 5,-4.56167 -47.9375,0 z"
d="M 165,184.06084 L 207.9375,184.06084 L 212.9375,179.49917 L 165,179.49917 z"
style="fill:#808000;fill-opacity:1;stroke:none" />
</g>
<g
@ -4232,7 +4546,7 @@
transform="matrix(-1,0,0,1,610.48878,-10.5)">
<path
style="fill:#ffff00;fill-opacity:1;stroke:none"
d="m 165,174.9375 42.9375,0 5,4.56167 -47.9375,0 z"
d="M 165,174.9375 L 207.9375,174.9375 L 212.9375,179.49917 L 165,179.49917 z"
id="path4951"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
@ -4242,7 +4556,7 @@
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path4953"
d="m 165,184.06084 42.9375,0 5,-4.56167 -47.9375,0 z"
d="M 165,184.06084 L 207.9375,184.06084 L 212.9375,179.49917 L 165,179.49917 z"
style="fill:#808000;fill-opacity:1;stroke:none" />
</g>
</g>
@ -4288,7 +4602,7 @@
transform="translate(0,78)">
<path
transform="matrix(0.84971585,0,0,0.84971585,73.153736,57.627199)"
d="M 381.49999,370 C 381.49999,420.26377 340.75315,461.01061 290.48938,461.01061 C 240.22561,461.01061 199.47877,420.26377 199.47877,370 C 199.47877,319.73623 240.22561,278.98939 290.48938,278.98939 C 340.75315,278.98939 381.49999,319.73623 381.49999,370 z"
d="M 381.49999,370 A 91.010612,91.010612 0 1 1 199.47877,370 A 91.010612,91.010612 0 1 1 381.49999,370 z"
sodipodi:ry="91.010612"
sodipodi:rx="91.010612"
sodipodi:cy="370"
@ -4298,7 +4612,7 @@
sodipodi:type="arc" />
<path
style="fill:#000000;fill-opacity:0.25098039;fill-rule:evenodd;stroke:none;display:inline"
d="m 300.325,286.83216 l 0,10.32484 c 14.21621,-3.46975 26.48893,-3.18251 38.975,-0.032 l 0,-10.32842 z"
d="M 300.325,286.83216 L 300.325,297.157 C 314.54121,293.68725 326.81393,293.97449 339.3,297.125 L 339.3,286.79658 z"
id="path6040"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
@ -4315,12 +4629,12 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path6065"
d="m 241.40244,372.02206 l -8.50092,0"
d="M 241.40244,372.02206 L 232.90152,372.02206"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
inkscape:transform-center-y="68.929095"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 264.41805,427.58668 l -6.01105,6.01105"
d="M 264.41805,427.58668 L 258.407,433.59773"
id="path6067"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
@ -4330,12 +4644,12 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path6069"
d="m 375.54729,427.58668 l 6.01105,6.01105"
d="M 375.54729,427.58668 L 381.55834,433.59773"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
inkscape:transform-center-y="68.929095" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 398.56291,372.02206 l 8.50091,0"
d="M 398.56291,372.02206 L 407.06382,372.02206"
id="path6071"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
@ -4346,7 +4660,7 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path6073"
d="m 375.54729,316.45744 l 6.01105,-6.01105"
d="M 375.54729,316.45744 L 381.55834,310.44639"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
inkscape:transform-center-x="68.929095"
@ -4359,7 +4673,7 @@
<path
inkscape:connector-curvature="0"
id="path5455"
d="m 315.35322,289.07759 l 4.64583,5.68314 l 4.61355,-5.68314 l -4.61355,0 z"
d="M 315.35322,289.07759 L 319.99905,294.76073 L 324.6126,289.07759 L 319.99905,289.07759 z"
style="fill:#ffffff;stroke:none;display:inline"
sodipodi:nodetypes="ccccc" />
</g>
@ -4379,11 +4693,11 @@
inkscape:transform-center-y="-85.40481"
inkscape:connector-curvature="0"
id="path4980"
d="m 319.99877,294.64611 l 0.16778,9.61226"
d="M 319.99877,294.64611 L 320.16655,304.25837"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 306.5624,295.81961 l 1.83439,9.43709"
d="M 306.5624,295.81961 L 308.39679,305.2567"
id="path4984"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-84.126835"
@ -4393,11 +4707,11 @@
inkscape:transform-center-y="-80.292705"
inkscape:connector-curvature="0"
id="path4988"
d="m 293.53394,299.30849 l 3.44525,8.97518"
d="M 293.53394,299.30849 L 296.97919,308.28367"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 281.30925,305.00672 l 4.95143,8.24057"
d="M 281.30925,305.00672 L 286.26068,313.24729"
id="path4990"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-74.018925"
@ -4407,11 +4721,11 @@
inkscape:transform-center-y="-65.49612"
inkscape:connector-curvature="0"
id="path4992"
d="m 270.25976,312.74119 l 6.30716,7.25557"
d="M 270.25976,312.74119 L 276.56692,319.99676"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 260.72122,322.27687 l 7.47125,6.05012"
d="M 260.72122,322.27687 L 268.19247,328.32699"
id="path4994"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-54.983245"
@ -4421,11 +4735,11 @@
inkscape:transform-center-y="-42.799735"
inkscape:connector-curvature="0"
id="path4996"
d="m 252.98344,333.32403 l 8.40834,4.66084"
d="M 252.98344,333.32403 L 261.39178,337.98487"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 247.28154,345.54702 l 9.08994,3.12993"
d="M 247.28154,345.54702 L 256.37148,348.67695"
id="path4998"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-29.315775"
@ -4435,11 +4749,11 @@
inkscape:transform-center-y="-14.94107"
inkscape:connector-curvature="0"
id="path5000"
d="m 243.78875,358.57443 l 9.49536,1.50393"
d="M 243.78875,358.57443 L 253.28411,360.07836"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 242.61123,372.01045 l 9.61224,-0.16777"
d="M 242.61123,372.01045 L 252.22347,371.84268"
id="path5002"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-0.11239"
@ -4449,11 +4763,11 @@
inkscape:transform-center-y="14.71971"
inkscape:connector-curvature="0"
id="path5004"
d="m 243.78473,385.44682 l 9.43708,-1.83437"
d="M 243.78473,385.44682 L 253.22181,383.61245"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 247.2736,398.47528 l 8.97517,-3.44523"
d="M 247.2736,398.47528 L 256.24877,395.03005"
id="path5006"
inkscape:connector-curvature="0"
inkscape:transform-center-y="29.104555"
@ -4463,11 +4777,11 @@
inkscape:transform-center-y="42.60507"
inkscape:connector-curvature="0"
id="path5008"
d="m 252.97184,410.69997 l 8.24056,-4.95141"
d="M 252.97184,410.69997 L 261.2124,405.74856"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 260.7063,421.74946 l 7.25556,-6.30715"
d="M 260.7063,421.74946 L 267.96186,415.44231"
id="path5010"
inkscape:connector-curvature="0"
inkscape:transform-center-y="54.811055"
@ -4477,11 +4791,11 @@
inkscape:transform-center-y="65.351635"
inkscape:connector-curvature="0"
id="path5012"
d="m 270.24198,431.288 l 6.05011,-7.47123"
d="M 270.24198,431.288 L 276.29209,423.81677"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 281.28914,439.02578 l 4.66083,-8.40832"
d="M 281.28914,439.02578 L 285.94997,430.61746"
id="path5014"
inkscape:connector-curvature="0"
inkscape:transform-center-y="73.906535"
@ -4491,11 +4805,11 @@
inkscape:transform-center-y="80.215825"
inkscape:connector-curvature="0"
id="path5016"
d="m 293.51213,444.72769 l 3.12993,-9.08993"
d="M 293.51213,444.72769 L 296.64206,435.63776"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 306.53954,448.22047 l 1.50393,-9.49534"
d="M 306.53954,448.22047 L 308.04347,438.72513"
id="path5018"
inkscape:connector-curvature="0"
inkscape:transform-center-y="84.0878"
@ -4505,11 +4819,11 @@
inkscape:transform-center-y="85.40481"
inkscape:connector-curvature="0"
id="path5020"
d="m 319.97555,449.398 l -0.16777,-9.61224"
d="M 319.97555,449.398 L 319.80778,439.78576"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 333.41192,448.2245 l -1.83437,-9.43707"
d="M 333.41192,448.2245 L 331.57755,438.78743"
id="path5022"
inkscape:connector-curvature="0"
inkscape:transform-center-y="84.126835"
@ -4519,11 +4833,11 @@
inkscape:transform-center-y="80.29271"
inkscape:connector-curvature="0"
id="path5024"
d="m 346.44038,444.73564 l -3.44523,-8.97518"
d="M 346.44038,444.73564 L 342.99515,435.76046"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 358.66508,439.0374 l -4.95142,-8.24056"
d="M 358.66508,439.0374 L 353.71366,430.79684"
id="path5026"
inkscape:connector-curvature="0"
inkscape:transform-center-y="74.01893"
@ -4533,11 +4847,11 @@
inkscape:transform-center-y="65.496125"
inkscape:connector-curvature="0"
id="path5028"
d="m 369.71456,431.30294 l -6.30714,-7.25556"
d="M 369.71456,431.30294 L 363.40742,424.04738"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 379.25311,421.76726 l -7.47124,-6.05011"
d="M 379.25311,421.76726 L 371.78187,415.71715"
id="path5030"
inkscape:connector-curvature="0"
inkscape:transform-center-y="54.983255"
@ -4547,11 +4861,11 @@
inkscape:transform-center-y="42.799745"
inkscape:connector-curvature="0"
id="path5032"
d="m 386.99088,410.72009 l -8.40832,-4.66081"
d="M 386.99088,410.72009 L 378.58256,406.05928"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 392.69279,398.49711 l -9.08992,-3.12992"
d="M 392.69279,398.49711 L 383.60287,395.36719"
id="path5034"
inkscape:connector-curvature="0"
inkscape:transform-center-y="29.315785"
@ -4561,11 +4875,11 @@
inkscape:transform-center-y="14.941085"
inkscape:connector-curvature="0"
id="path5036"
d="m 396.18557,385.4697 l -9.49533,-1.50392"
d="M 396.18557,385.4697 L 386.69024,383.96578"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 397.36311,372.03369 l -9.61223,0.16777"
d="M 397.36311,372.03369 L 387.75088,372.20146"
id="path5038"
inkscape:connector-curvature="0"
inkscape:transform-center-y="0.112405"
@ -4575,11 +4889,11 @@
inkscape:transform-center-y="-14.719695"
inkscape:connector-curvature="0"
id="path5040"
d="m 396.18962,358.59732 l -9.43708,1.83437"
d="M 396.18962,358.59732 L 386.75254,360.43169"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 392.70075,345.56885 l -8.97517,3.44525"
d="M 392.70075,345.56885 L 383.72558,349.0141"
id="path5042"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-29.10454"
@ -4589,11 +4903,11 @@
inkscape:transform-center-y="-42.60506"
inkscape:connector-curvature="0"
id="path5044"
d="m 387.00251,333.34416 l -8.24055,4.95142"
d="M 387.00251,333.34416 L 378.76196,338.29558"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 379.26805,322.29468 l -7.25555,6.30714"
d="M 379.26805,322.29468 L 372.0125,328.60182"
id="path5046"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-54.811045"
@ -4603,11 +4917,11 @@
inkscape:transform-center-y="-65.351625"
inkscape:connector-curvature="0"
id="path5048"
d="m 369.73237,312.75613 l -6.0501,7.47124"
d="M 369.73237,312.75613 L 363.68227,320.22737"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 358.68521,305.01836 l -4.66081,8.40831"
d="M 358.68521,305.01836 L 354.0244,313.42667"
id="path5050"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-73.90653"
@ -4617,18 +4931,18 @@
inkscape:transform-center-y="-80.215825"
inkscape:connector-curvature="0"
id="path5052"
d="m 346.46222,299.31645 l -3.12991,9.08991"
d="M 346.46222,299.31645 L 343.33231,308.40636"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 333.43481,295.82367 l -1.50392,9.49532"
d="M 333.43481,295.82367 L 331.93089,305.31899"
id="path5054"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-84.0878"
inkscape:transform-center-x="-14.941085" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 319.99877,294.64611 l 0.16778,9.61226"
d="M 319.99877,294.64611 L 320.16655,304.25837"
id="compass-line-0"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-85.40481"
@ -4639,11 +4953,11 @@
inkscape:transform-center-y="-84.126835"
inkscape:connector-curvature="0"
id="path5062"
d="m 306.5624,295.81961 l 1.83439,9.43709"
d="M 306.5624,295.81961 L 308.39679,305.2567"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 293.53394,299.30849 l 3.44525,8.97518"
d="M 293.53394,299.30849 L 296.97919,308.28367"
id="path5064"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-80.292705"
@ -4653,11 +4967,11 @@
inkscape:transform-center-y="-74.018925"
inkscape:connector-curvature="0"
id="path5066"
d="m 281.30925,305.00672 l 4.95143,8.24057"
d="M 281.30925,305.00672 L 286.26068,313.24729"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 270.25976,312.74119 l 6.30716,7.25557"
d="M 270.25976,312.74119 L 276.56692,319.99676"
id="path5068"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-65.49612"
@ -4667,11 +4981,11 @@
inkscape:transform-center-y="-54.983245"
inkscape:connector-curvature="0"
id="path5070"
d="m 260.72122,322.27687 l 7.47125,6.05012"
d="M 260.72122,322.27687 L 268.19247,328.32699"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 252.98344,333.32403 l 8.40834,4.66084"
d="M 252.98344,333.32403 L 261.39178,337.98487"
id="path5072"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-42.799735"
@ -4681,11 +4995,11 @@
inkscape:transform-center-y="-29.315775"
inkscape:connector-curvature="0"
id="path5074"
d="m 247.28154,345.54702 l 9.08994,3.12993"
d="M 247.28154,345.54702 L 256.37148,348.67695"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 243.78875,358.57443 l 9.49536,1.50393"
d="M 243.78875,358.57443 L 253.28411,360.07836"
id="path5076"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-14.94107"
@ -4695,11 +5009,11 @@
inkscape:transform-center-y="-0.11239"
inkscape:connector-curvature="0"
id="path5078"
d="m 242.61123,372.01045 l 9.61224,-0.16777"
d="M 242.61123,372.01045 L 252.22347,371.84268"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 243.78473,385.44682 l 9.43708,-1.83437"
d="M 243.78473,385.44682 L 253.22181,383.61245"
id="path5080"
inkscape:connector-curvature="0"
inkscape:transform-center-y="14.71971"
@ -4709,11 +5023,11 @@
inkscape:transform-center-y="29.104555"
inkscape:connector-curvature="0"
id="path5082"
d="m 247.2736,398.47528 l 8.97517,-3.44523"
d="M 247.2736,398.47528 L 256.24877,395.03005"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 252.97184,410.69997 l 8.24056,-4.95141"
d="M 252.97184,410.69997 L 261.2124,405.74856"
id="path5084"
inkscape:connector-curvature="0"
inkscape:transform-center-y="42.60507"
@ -4723,11 +5037,11 @@
inkscape:transform-center-y="54.811055"
inkscape:connector-curvature="0"
id="path5086"
d="m 260.7063,421.74946 l 7.25556,-6.30715"
d="M 260.7063,421.74946 L 267.96186,415.44231"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 270.24198,431.288 l 6.05011,-7.47123"
d="M 270.24198,431.288 L 276.29209,423.81677"
id="path5088"
inkscape:connector-curvature="0"
inkscape:transform-center-y="65.351635"
@ -4737,11 +5051,11 @@
inkscape:transform-center-y="73.906535"
inkscape:connector-curvature="0"
id="path5090"
d="m 281.28914,439.02578 l 4.66083,-8.40832"
d="M 281.28914,439.02578 L 285.94997,430.61746"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 293.51213,444.72769 l 3.12993,-9.08993"
d="M 293.51213,444.72769 L 296.64206,435.63776"
id="path5092"
inkscape:connector-curvature="0"
inkscape:transform-center-y="80.215825"
@ -4751,11 +5065,11 @@
inkscape:transform-center-y="84.0878"
inkscape:connector-curvature="0"
id="path5094"
d="m 306.53954,448.22047 l 1.50393,-9.49534"
d="M 306.53954,448.22047 L 308.04347,438.72513"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 319.97555,449.398 l -0.16777,-9.61224"
d="M 319.97555,449.398 L 319.80778,439.78576"
id="path5096"
inkscape:connector-curvature="0"
inkscape:transform-center-y="85.40481"
@ -4765,11 +5079,11 @@
inkscape:transform-center-y="84.126835"
inkscape:connector-curvature="0"
id="path5098"
d="m 333.41192,448.2245 l -1.83437,-9.43707"
d="M 333.41192,448.2245 L 331.57755,438.78743"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 346.44038,444.73564 l -3.44523,-8.97518"
d="M 346.44038,444.73564 L 342.99515,435.76046"
id="path5100"
inkscape:connector-curvature="0"
inkscape:transform-center-y="80.29271"
@ -4779,11 +5093,11 @@
inkscape:transform-center-y="74.01893"
inkscape:connector-curvature="0"
id="path5102"
d="m 358.66508,439.0374 l -4.95142,-8.24056"
d="M 358.66508,439.0374 L 353.71366,430.79684"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 369.71456,431.30294 l -6.30714,-7.25556"
d="M 369.71456,431.30294 L 363.40742,424.04738"
id="path5104"
inkscape:connector-curvature="0"
inkscape:transform-center-y="65.496125"
@ -4793,11 +5107,11 @@
inkscape:transform-center-y="54.983255"
inkscape:connector-curvature="0"
id="path5106"
d="m 379.25311,421.76726 l -7.47124,-6.05011"
d="M 379.25311,421.76726 L 371.78187,415.71715"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 386.99088,410.72009 l -8.40832,-4.66081"
d="M 386.99088,410.72009 L 378.58256,406.05928"
id="path5108"
inkscape:connector-curvature="0"
inkscape:transform-center-y="42.799745"
@ -4807,11 +5121,11 @@
inkscape:transform-center-y="29.315785"
inkscape:connector-curvature="0"
id="path5110"
d="m 392.69279,398.49711 l -9.08992,-3.12992"
d="M 392.69279,398.49711 L 383.60287,395.36719"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 396.18557,385.4697 l -9.49533,-1.50392"
d="M 396.18557,385.4697 L 386.69024,383.96578"
id="path5112"
inkscape:connector-curvature="0"
inkscape:transform-center-y="14.941085"
@ -4821,11 +5135,11 @@
inkscape:transform-center-y="0.112405"
inkscape:connector-curvature="0"
id="path5114"
d="m 397.36311,372.03369 l -9.61223,0.16777"
d="M 397.36311,372.03369 L 387.75088,372.20146"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 396.18962,358.59732 l -9.43708,1.83437"
d="M 396.18962,358.59732 L 386.75254,360.43169"
id="path5116"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-14.719695"
@ -4835,11 +5149,11 @@
inkscape:transform-center-y="-29.10454"
inkscape:connector-curvature="0"
id="path5118"
d="m 392.70075,345.56885 l -8.97517,3.44525"
d="M 392.70075,345.56885 L 383.72558,349.0141"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 387.00251,333.34416 l -8.24055,4.95142"
d="M 387.00251,333.34416 L 378.76196,338.29558"
id="path5120"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-42.60506"
@ -4849,11 +5163,11 @@
inkscape:transform-center-y="-54.811045"
inkscape:connector-curvature="0"
id="path5122"
d="m 379.26805,322.29468 l -7.25555,6.30714"
d="M 379.26805,322.29468 L 372.0125,328.60182"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 369.73237,312.75613 l -6.0501,7.47124"
d="M 369.73237,312.75613 L 363.68227,320.22737"
id="path5124"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-65.351625"
@ -4863,11 +5177,11 @@
inkscape:transform-center-y="-73.90653"
inkscape:connector-curvature="0"
id="path5126"
d="m 358.68521,305.01836 l -4.66081,8.40831"
d="M 358.68521,305.01836 L 354.0244,313.42667"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 346.46222,299.31645 l -3.12991,9.08991"
d="M 346.46222,299.31645 L 343.33231,308.40636"
id="path5128"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-80.215825"
@ -4877,18 +5191,18 @@
inkscape:transform-center-y="-84.0878"
inkscape:connector-curvature="0"
id="path5130"
d="m 333.43481,295.82367 l -1.50392,9.49532"
d="M 333.43481,295.82367 L 331.93089,305.31899"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
inkscape:transform-center-x="7.58159"
inkscape:transform-center-y="-87.94732"
inkscape:connector-curvature="0"
id="path5250"
d="m 313.25497,294.93954 l 0.58002,4.70459"
d="M 313.25497,294.93954 L 313.83499,299.64413"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 299.97201,297.27963 l 1.38814,4.53239"
d="M 299.97201,297.27963 L 301.36015,301.81202"
id="path5252"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-85.294675"
@ -4898,11 +5212,11 @@
inkscape:transform-center-y="-80.050395"
inkscape:connector-curvature="0"
id="path5254"
d="m 287.2972,301.89073 l 2.15409,4.22249"
d="M 287.2972,301.89073 L 289.45129,306.11322"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 275.61565,308.63274 l 2.8546,3.78428"
d="M 275.61565,308.63274 L 278.47025,312.41702"
id="path5256"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-72.37382"
@ -4912,11 +5226,11 @@
inkscape:transform-center-y="-62.498205"
inkscape:connector-curvature="0"
id="path5258"
d="m 265.28232,317.3008 l 3.46837,3.23109"
d="M 265.28232,317.3008 L 268.75069,320.53189"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 256.61116,327.63154 l 3.97675,2.57973"
d="M 256.61116,327.63154 L 260.58791,330.21127"
id="path5260"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-50.723615"
@ -4926,11 +5240,11 @@
inkscape:transform-center-y="-37.40781"
inkscape:connector-curvature="0"
id="path5262"
d="m 249.86565,339.31106 l 4.3643,1.84999"
d="M 249.86565,339.31106 L 254.22995,341.16105"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 245.25075,351.98449 l 4.61924,1.06403"
d="M 245.25075,351.98449 L 249.86999,353.04852"
id="path5264"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-22.95539"
@ -4940,11 +5254,11 @@
inkscape:transform-center-y="-7.805485"
inkscape:connector-curvature="0"
id="path5266"
d="m 242.90667,365.26675 l 4.73384,0.24574"
d="M 242.90667,365.26675 L 247.64051,365.51249"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 242.90465,378.75426 l 4.70459,-0.58001"
d="M 242.90465,378.75426 L 247.60924,378.17425"
id="path5268"
inkscape:connector-curvature="0"
inkscape:transform-center-y="7.581585"
@ -4954,11 +5268,11 @@
inkscape:transform-center-y="22.738295"
inkscape:connector-curvature="0"
id="path5270"
d="m 245.24474,392.03722 l 4.53239,-1.38814"
d="M 245.24474,392.03722 L 249.77713,390.64908"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 249.85584,404.71203 l 4.22249,-2.15408"
d="M 249.85584,404.71203 L 254.07833,402.55795"
id="path5272"
inkscape:connector-curvature="0"
inkscape:transform-center-y="37.204115"
@ -4968,11 +5282,11 @@
inkscape:transform-center-y="50.539505"
inkscape:connector-curvature="0"
id="path5274"
d="m 256.59785,416.39358 l 3.78428,-2.8546"
d="M 256.59785,416.39358 L 260.38213,413.53898"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 265.26591,426.72691 l 3.23109,-3.46836"
d="M 265.26591,426.72691 L 268.497,423.25855"
id="path5276"
inkscape:connector-curvature="0"
inkscape:transform-center-y="62.339275"
@ -4982,11 +5296,11 @@
inkscape:transform-center-y="72.2449"
inkscape:connector-curvature="0"
id="path5278"
d="m 275.59664,435.39807 l 2.57974,-3.97674"
d="M 275.59664,435.39807 L 278.17638,431.42133"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 287.27617,442.14358 l 1.84999,-4.36429"
d="M 287.27617,442.14358 L 289.12616,437.77929"
id="path5280"
inkscape:connector-curvature="0"
inkscape:transform-center-y="79.9554"
@ -4996,11 +5310,11 @@
inkscape:transform-center-y="85.236495"
inkscape:connector-curvature="0"
id="path5282"
d="m 299.94959,446.75848 l 1.06404,-4.61923"
d="M 299.94959,446.75848 L 301.01363,442.13925"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 313.23185,449.10256 l 0.24575,-4.73383"
d="M 313.23185,449.10256 L 313.4776,444.36873"
id="path5284"
inkscape:connector-curvature="0"
inkscape:transform-center-y="87.927725"
@ -5010,7 +5324,7 @@
inkscape:transform-center-y="87.947315"
inkscape:connector-curvature="0"
id="path5286"
d="m 326.71936,449.10458 l -0.58,-4.70458"
d="M 326.71936,449.10458 L 326.13936,444.4"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
@ -5024,11 +5338,11 @@
inkscape:transform-center-y="80.05039"
inkscape:connector-curvature="0"
id="path5290"
d="m 352.67714,442.15339 l -2.15408,-4.22248"
d="M 352.67714,442.15339 L 350.52306,437.93091"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 364.35868,435.41138 l -2.85458,-3.78427"
d="M 364.35868,435.41138 L 361.5041,431.62711"
id="path5292"
inkscape:connector-curvature="0"
inkscape:transform-center-y="72.37382"
@ -5038,11 +5352,11 @@
inkscape:transform-center-y="62.498205"
inkscape:connector-curvature="0"
id="path5294"
d="m 374.69202,426.74332 l -3.46836,-3.23108"
d="M 374.69202,426.74332 L 371.22366,423.51224"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 383.36317,416.41259 l -3.97673,-2.57973"
d="M 383.36317,416.41259 L 379.38644,413.83286"
id="path5296"
inkscape:connector-curvature="0"
inkscape:transform-center-y="50.723615"
@ -5052,11 +5366,11 @@
inkscape:transform-center-y="37.407815"
inkscape:connector-curvature="0"
id="path5298"
d="m 390.10868,404.73307 l -4.36428,-1.84999"
d="M 390.10868,404.73307 L 385.7444,402.88308"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 394.72358,392.05965 l -4.61922,-1.06404"
d="M 394.72358,392.05965 L 390.10436,390.99561"
id="path5300"
inkscape:connector-curvature="0"
inkscape:transform-center-y="22.955395"
@ -5066,11 +5380,11 @@
inkscape:transform-center-y="7.80549"
inkscape:connector-curvature="0"
id="path5302"
d="m 397.06766,378.77739 l -4.73382,-0.24576"
d="M 397.06766,378.77739 L 392.33384,378.53163"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 397.06968,365.28988 l -4.70457,0.57999"
d="M 397.06968,365.28988 L 392.36511,365.86987"
id="path5304"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-7.58158"
@ -5080,11 +5394,11 @@
inkscape:transform-center-y="-22.73829"
inkscape:connector-curvature="0"
id="path5306"
d="m 394.72959,352.00691 l -4.53237,1.38813"
d="M 394.72959,352.00691 L 390.19722,353.39504"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 390.11849,339.3321 l -4.22247,2.15408"
d="M 390.11849,339.3321 L 385.89602,341.48618"
id="path5308"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-37.20411"
@ -5094,11 +5408,11 @@
inkscape:transform-center-y="-50.5395"
inkscape:connector-curvature="0"
id="path5310"
d="m 383.37649,327.65056 l -3.78427,2.85458"
d="M 383.37649,327.65056 L 379.59222,330.50514"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 374.70843,317.31722 l -3.23108,3.46835"
d="M 374.70843,317.31722 L 371.47735,320.78557"
id="path5312"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-62.33927"
@ -5108,11 +5422,11 @@
inkscape:transform-center-y="-72.244895"
inkscape:connector-curvature="0"
id="path5314"
d="m 364.3777,308.64607 l -2.57973,3.97673"
d="M 364.3777,308.64607 L 361.79797,312.6228"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 352.69818,301.90055 l -1.84999,4.36429"
d="M 352.69818,301.90055 L 350.84819,306.26484"
id="path5316"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-79.955395"
@ -5122,11 +5436,11 @@
inkscape:transform-center-y="-85.23649"
inkscape:connector-curvature="0"
id="path5318"
d="m 340.02476,297.28565 l -1.06404,4.61923"
d="M 340.02476,297.28565 L 338.96072,301.90488"
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 326.7425,294.94158 l -0.24575,4.73382"
d="M 326.7425,294.94158 L 326.49675,299.6754"
id="path5320"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-87.92772"
@ -5136,7 +5450,7 @@
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="compass-0">
<path
d="m 316.09539,305.91479 l 2.4977,0 l 3.15407,5.94801 l 0,-5.94801 l 2.12014,0 l 0,8.67225 l -2.4977,0 l -3.15407,-5.94801 l 0,5.94801 l -2.12014,0 l 0,-8.67225"
d="M 316.09539,305.91479 L 318.59309,305.91479 L 321.74716,311.8628 L 321.74716,305.91479 L 323.8673,305.91479 L 323.8673,314.58704 L 321.3696,314.58704 L 318.21553,308.63903 L 318.21553,314.58704 L 316.09539,314.58704 L 316.09539,305.91479"
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
id="path6234"
inkscape:connector-curvature="0" />
@ -5149,12 +5463,12 @@
id="compass330"
inkscape:label="#compass330">
<path
d="m 88.35851,420.06321 c 0.561493,0.12005 0.999074,0.36982 1.312745,0.74931 c 0.31753,0.3795 0.476299,0.84806 0.476305,1.40568 c -6e-6,0.8558 -0.294309,1.51798 -0.882908,1.98654 c -0.58861,0.46856 -1.425048,0.70285 -2.509317,0.70285 c -0.364009,0 -0.739631,-0.0368 -1.126869,-0.11037 c -0.38337,-0.0697 -0.780291,-0.17619 -1.190764,-0.31947 l 0,-1.13268 c 0.325281,0.18975 0.681541,0.33303 1.068783,0.42984 c 0.387238,0.0968 0.791904,0.14521 1.213999,0.14521 c 0.735752,0 1.295314,-0.14521 1.678686,-0.43564 c 0.387235,-0.29043 0.580855,-0.71252 0.580861,-1.26628 c -6e-6,-0.51115 -0.180072,-0.91001 -0.540201,-1.19657 c -0.356265,-0.29043 -0.853868,-0.43564 -1.492811,-0.43565 l -1.010697,0 l 0,-0.96422 l 1.057166,0 c 0.576984,0 1.018437,-0.11424 1.324362,-0.34271 c 0.305915,-0.23234 0.458874,-0.56537 0.45888,-0.99908 c -6e-6,-0.44532 -0.158774,-0.78609 -0.476306,-1.02232 c -0.313669,-0.24008 -0.764804,-0.36012 -1.353405,-0.36013 c -0.321412,1e-5 -0.666056,0.0349 -1.033931,0.10455 c -0.367881,0.0697 -0.772546,0.17814 -1.213999,0.32529 l 0,-1.04555 c 0.445325,-0.12391 0.861608,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.758988,-0.0929 1.103635,-0.0929 c 0.890648,10e-6 1.595425,0.20331 2.114332,0.6099 c 0.518896,0.40274 0.778347,0.94875 0.778353,1.63803 c -6e-6,0.48018 -0.137477,0.88678 -0.412411,1.2198 c -0.274946,0.32916 -0.666059,0.55763 -1.173338,0.68542"
d="M 88.35851,420.06321 C 88.920003,420.18326 89.357584,420.43303 89.671255,420.81252 C 89.988785,421.19202 90.147554,421.66058 90.14756,422.2182 C 90.147554,423.074 89.853251,423.73618 89.264652,424.20474 C 88.676042,424.6733 87.839604,424.90759 86.755335,424.90759 C 86.391326,424.90759 86.015704,424.87079 85.628466,424.79722 C 85.245096,424.72752 84.848175,424.62103 84.437702,424.47775 L 84.437702,423.34507 C 84.762983,423.53482 85.119243,423.6781 85.506485,423.77491 C 85.893723,423.87171 86.298389,423.92012 86.720484,423.92012 C 87.456236,423.92012 88.015798,423.77491 88.39917,423.48448 C 88.786405,423.19405 88.980025,422.77196 88.980031,422.2182 C 88.980025,421.70705 88.799959,421.30819 88.43983,421.02163 C 88.083565,420.7312 87.585962,420.58599 86.947019,420.58598 L 85.936322,420.58598 L 85.936322,419.62176 L 86.993488,419.62176 C 87.570472,419.62176 88.011925,419.50752 88.31785,419.27905 C 88.623765,419.04671 88.776724,418.71368 88.77673,418.27997 C 88.776724,417.83465 88.617956,417.49388 88.300424,417.25765 C 87.986755,417.01757 87.53562,416.89753 86.947019,416.89752 C 86.625607,416.89753 86.280963,416.93242 85.913088,417.00207 C 85.545207,417.07177 85.140542,417.18021 84.699089,417.32736 L 84.699089,416.28181 C 85.144414,416.1579 85.560697,416.06496 85.947939,416.00299 C 86.339049,415.94109 86.706927,415.91009 87.051574,415.91009 C 87.942222,415.9101 88.646999,416.1134 89.165906,416.51999 C 89.684802,416.92273 89.944253,417.46874 89.944259,418.15802 C 89.944253,418.6382 89.806782,419.0448 89.531848,419.37782 C 89.256902,419.70698 88.865789,419.93545 88.35851,420.06324"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6277"
inkscape:connector-curvature="0" />
<path
d="m 95.93293,420.06321 c 0.561493,0.12005 0.999074,0.36982 1.312745,0.74931 c 0.31753,0.3795 0.476299,0.84806 0.476305,1.40568 c -6e-6,0.8558 -0.294309,1.51798 -0.882908,1.98654 c -0.58861,0.46856 -1.425048,0.70285 -2.509317,0.70285 c -0.364009,0 -0.739631,-0.0368 -1.126869,-0.11037 c -0.38337,-0.0697 -0.780291,-0.17619 -1.190764,-0.31947 l 0,-1.13268 c 0.325281,0.18975 0.681541,0.33303 1.068783,0.42984 c 0.387238,0.0968 0.791904,0.14521 1.213999,0.14521 c 0.735752,0 1.295314,-0.14521 1.678686,-0.43564 c 0.387235,-0.29043 0.580855,-0.71252 0.580861,-1.26628 c -6e-6,-0.51115 -0.180072,-0.91001 -0.540201,-1.19657 c -0.356265,-0.29043 -0.853868,-0.43564 -1.492811,-0.43565 l -1.010697,0 l 0,-0.96422 l 1.057166,0 c 0.576984,0 1.018437,-0.11424 1.324362,-0.34271 c 0.305915,-0.23234 0.458874,-0.56537 0.45888,-0.99908 c -6e-6,-0.44532 -0.158774,-0.78609 -0.476306,-1.02232 c -0.313669,-0.24008 -0.764804,-0.36012 -1.353405,-0.36013 c -0.321412,1e-5 -0.666056,0.0349 -1.033931,0.10455 c -0.367881,0.0697 -0.772546,0.17814 -1.213999,0.32529 l 0,-1.04555 c 0.445325,-0.12391 0.861608,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.758988,-0.0929 1.103635,-0.0929 c 0.890648,10e-6 1.595425,0.20331 2.114332,0.6099 c 0.518896,0.40274 0.778347,0.94875 0.778353,1.63803 c -6e-6,0.48018 -0.137477,0.88678 -0.412411,1.2198 c -0.274946,0.32916 -0.666059,0.55763 -1.173338,0.68542"
d="M 95.93293,420.06321 C 96.494423,420.18326 96.932004,420.43303 97.245675,420.81252 C 97.563205,421.19202 97.721974,421.66058 97.72198,422.2182 C 97.721974,423.074 97.427671,423.73618 96.839072,424.20474 C 96.250462,424.6733 95.414024,424.90759 94.329755,424.90759 C 93.965746,424.90759 93.590124,424.87079 93.202886,424.79722 C 92.819516,424.72752 92.422595,424.62103 92.012122,424.47775 L 92.012122,423.34507 C 92.337403,423.53482 92.693663,423.6781 93.080905,423.77491 C 93.468143,423.87171 93.872809,423.92012 94.294904,423.92012 C 95.030656,423.92012 95.590218,423.77491 95.97359,423.48448 C 96.360825,423.19405 96.554445,422.77196 96.554451,422.2182 C 96.554445,421.70705 96.374379,421.30819 96.01425,421.02163 C 95.657985,420.7312 95.160382,420.58599 94.521439,420.58598 L 93.510742,420.58598 L 93.510742,419.62176 L 94.567908,419.62176 C 95.144892,419.62176 95.586345,419.50752 95.89227,419.27905 C 96.198185,419.04671 96.351144,418.71368 96.35115,418.27997 C 96.351144,417.83465 96.192376,417.49388 95.874844,417.25765 C 95.561175,417.01757 95.11004,416.89753 94.521439,416.89752 C 94.200027,416.89753 93.855383,416.93242 93.487508,417.00207 C 93.119627,417.07177 92.714962,417.18021 92.273509,417.32736 L 92.273509,416.28181 C 92.718834,416.1579 93.135117,416.06496 93.522359,416.00299 C 93.913469,415.94109 94.281347,415.91009 94.625994,415.91009 C 95.516642,415.9101 96.221419,416.1134 96.740326,416.51999 C 97.259222,416.92273 97.518673,417.46874 97.518679,418.15802 C 97.518673,418.6382 97.381202,419.0448 97.106268,419.37782 C 96.831322,419.70698 96.440209,419.93545 95.93293,420.06324"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6279"
inkscape:connector-curvature="0" />
@ -5167,12 +5481,12 @@
id="compass300"
inkscape:label="#compass300">
<path
d="m -164.93444,401.01713 c 0.5615,0.12005 0.99908,0.36982 1.31275,0.74931 c 0.31753,0.3795 0.4763,0.84806 0.4763,1.40568 c 0,0.8558 -0.2943,1.51798 -0.8829,1.98654 c -0.58861,0.46856 -1.42505,0.70284 -2.50932,0.70284 c -0.36401,0 -0.73963,-0.0368 -1.12687,-0.11036 c -0.38337,-0.0697 -0.78029,-0.17619 -1.19076,-0.31947 l 0,-1.13268 c 0.32528,0.18975 0.68154,0.33303 1.06878,0.42984 c 0.38724,0.0968 0.7919,0.14521 1.214,0.14521 c 0.73575,0 1.29531,-0.14521 1.67868,-0.43564 c 0.38724,-0.29043 0.58086,-0.71252 0.58086,-1.26628 c 0,-0.51115 -0.18007,-0.91001 -0.5402,-1.19657 c -0.35626,-0.29043 -0.85386,-0.43564 -1.49281,-0.43565 l -1.01069,0 l 0,-0.96423 l 1.05716,0 c 0.57699,10e-6 1.01844,-0.11423 1.32436,-0.3427 c 0.30592,-0.23234 0.45888,-0.56537 0.45888,-0.99908 c 0,-0.44532 -0.15877,-0.78609 -0.4763,-1.02232 c -0.31367,-0.24008 -0.76481,-0.36012 -1.35341,-0.36013 c -0.32141,10e-6 -0.66605,0.0349 -1.03393,0.10455 c -0.36788,0.0697 -0.77254,0.17814 -1.214,0.32528 l 0,-1.04554 c 0.44533,-0.12391 0.86161,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.75899,-0.0929 1.10364,-0.0929 c 0.89065,0 1.59542,0.20331 2.11433,0.6099 c 0.5189,0.40274 0.77835,0.94874 0.77835,1.63803 c 0,0.48018 -0.13747,0.88678 -0.41241,1.2198 c -0.27494,0.32916 -0.66606,0.55763 -1.17334,0.68542"
d="M -164.93444,401.01713 C -164.37294,401.13718 -163.93536,401.38695 -163.62169,401.76644 C -163.30416,402.14594 -163.14539,402.6145 -163.14539,403.17212 C -163.14539,404.02792 -163.43969,404.6901 -164.02829,405.15866 C -164.6169,405.62722 -165.45334,405.8615 -166.53761,405.8615 C -166.90162,405.8615 -167.27724,405.8247 -167.66448,405.75114 C -168.04785,405.68144 -168.44477,405.57495 -168.85524,405.43167 L -168.85524,404.29899 C -168.52996,404.48874 -168.1737,404.63202 -167.78646,404.72883 C -167.39922,404.82563 -166.99456,404.87404 -166.57246,404.87404 C -165.83671,404.87404 -165.27715,404.72883 -164.89378,404.4384 C -164.50654,404.14797 -164.31292,403.72588 -164.31292,403.17212 C -164.31292,402.66097 -164.49299,402.26211 -164.85312,401.97555 C -165.20938,401.68512 -165.70698,401.53991 -166.34593,401.5399 L -167.35662,401.5399 L -167.35662,400.57567 L -166.29946,400.57567 C -165.72247,400.57568 -165.28102,400.46144 -164.9751,400.23297 C -164.66918,400.00063 -164.51622,399.6676 -164.51622,399.23389 C -164.51622,398.78857 -164.67499,398.4478 -164.99252,398.21157 C -165.30619,397.97149 -165.75733,397.85145 -166.34593,397.85144 C -166.66734,397.85145 -167.01198,397.88634 -167.37986,397.95599 C -167.74774,398.02569 -168.1524,398.13413 -168.59386,398.28127 L -168.59386,397.23573 C -168.14853,397.11182 -167.73225,397.01888 -167.34501,396.95691 C -166.9539,396.89501 -166.58602,396.86401 -166.24137,396.86401 C -165.35072,396.86401 -164.64595,397.06732 -164.12704,397.47391 C -163.60814,397.87665 -163.34869,398.42265 -163.34869,399.11194 C -163.34869,399.59212 -163.48616,399.99872 -163.7611,400.33174 C -164.03604,400.6609 -164.42716,400.88937 -164.93444,401.01716"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6272"
inkscape:connector-curvature="0" />
<path
d="m -158.40556,397.79335 c -0.6041,1e-5 -1.05911,0.29818 -1.36503,0.89453 c -0.30205,0.59248 -0.45307,1.48507 -0.45307,2.67776 c 0,1.18883 0.15102,2.08142 0.45307,2.67777 c 0.30592,0.59248 0.76093,0.88872 1.36503,0.88872 c 0.60796,0 1.06297,-0.29624 1.36502,-0.88872 c 0.30591,-0.59635 0.45887,-1.48894 0.45888,-2.67777 c -1e-5,-1.19269 -0.15297,-2.08528 -0.45888,-2.67776 c -0.30205,-0.59635 -0.75706,-0.89452 -1.36502,-0.89453 m 0,-0.92937 c 0.97196,0 1.71353,0.38531 2.22469,1.15591 c 0.51502,0.76674 0.77254,1.88199 0.77255,3.34575 c -1e-5,1.4599 -0.25753,2.57515 -0.77255,3.34576 c -0.51116,0.76674 -1.25273,1.1501 -2.22469,1.1501 c -0.97198,0 -1.71548,-0.38336 -2.23051,-1.1501 c -0.51116,-0.77061 -0.76674,-1.88586 -0.76673,-3.34576 c -10e-6,-1.46376 0.25557,-2.57901 0.76673,-3.34575 c 0.51503,-0.7706 1.25853,-1.15591 2.23051,-1.15591"
d="M -158.40556,397.79335 C -159.00966,397.79336 -159.46467,398.09153 -159.77059,398.68788 C -160.07264,399.28036 -160.22366,400.17295 -160.22366,401.36564 C -160.22366,402.55447 -160.07264,403.44706 -159.77059,404.04341 C -159.46467,404.63589 -159.00966,404.93213 -158.40556,404.93213 C -157.7976,404.93213 -157.34259,404.63589 -157.04054,404.04341 C -156.73463,403.44706 -156.58167,402.55447 -156.58166,401.36564 C -156.58167,400.17295 -156.73463,399.28036 -157.04054,398.68788 C -157.34259,398.09153 -157.7976,397.79336 -158.40556,397.79335 M -158.40556,396.86398 C -157.4336,396.86398 -156.69203,397.24929 -156.18087,398.01989 C -155.66585,398.78663 -155.40833,399.90188 -155.40832,401.36564 C -155.40833,402.82554 -155.66585,403.94079 -156.18087,404.7114 C -156.69203,405.47814 -157.4336,405.8615 -158.40556,405.8615 C -159.37754,405.8615 -160.12104,405.47814 -160.63607,404.7114 C -161.14723,403.94079 -161.40281,402.82554 -161.4028,401.36564 C -161.40281,399.90188 -161.14723,398.78663 -160.63607,398.01989 C -160.12104,397.24929 -159.37754,396.86398 -158.40556,396.86398"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6274"
inkscape:connector-curvature="0" />
@ -5184,7 +5498,7 @@
id="compass270"
inkscape:label="#compass270">
<path
d="m -378.23146,253.87991 l 2.14337,0 l 1.49862,6.30233 l 1.48701,-6.30233 l 2.15499,0 l 1.487,6.30233 l 1.49862,-6.30233 l 2.12595,0 l -2.04463,8.67224 l -2.57902,0 l -1.57413,-6.59276 l -1.55671,6.59276 l -2.57902,0 l -2.06205,-8.67224"
d="M -378.23146,253.87991 L -376.08809,253.87991 L -374.58947,260.18224 L -373.10246,253.87991 L -370.94747,253.87991 L -369.46047,260.18224 L -367.96185,253.87991 L -365.8359,253.87991 L -367.88053,262.55215 L -370.45955,262.55215 L -372.03368,255.95939 L -373.59039,262.55215 L -376.16941,262.55215 L -378.23146,253.87991"
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
id="path6269"
inkscape:connector-curvature="0" />
@ -5197,12 +5511,12 @@
id="compass240"
inkscape:label="#compass240">
<path
d="m -487.4658,32.68352 l 4.09506,0 l 0,0.987462 l -5.50655,0 l 0,-0.987462 c 0.44532,-0.460815 1.05135,-1.078463 1.81809,-1.852945 c 0.7706,-0.77835 1.25465,-1.279825 1.45215,-1.504429 c 0.37562,-0.422087 0.63701,-0.778348 0.78416,-1.068783 c 0.15102,-0.294297 0.22653,-0.582791 0.22654,-0.865482 c -1e-5,-0.460809 -0.16265,-0.836432 -0.48792,-1.126869 c -0.32142,-0.290423 -0.74157,-0.435638 -1.26047,-0.435646 c -0.36788,8e-6 -0.75706,0.0639 -1.16753,0.191684 c -0.40661,0.127797 -0.84225,0.321417 -1.30694,0.580861 l 0,-1.184956 c 0.47243,-0.189739 0.91389,-0.333018 1.32436,-0.429836 c 0.41048,-0.0968 0.7861,-0.145207 1.12687,-0.145215 c 0.8984,8e-6 1.61479,0.224608 2.14919,0.673798 c 0.53438,0.449206 0.80158,1.049428 0.80158,1.800667 c 0,0.356267 -0.0678,0.695102 -0.2033,1.016506 c -0.13166,0.317542 -0.37369,0.693165 -0.72607,1.126869 c -0.0968,0.112304 -0.40467,0.437585 -0.92357,0.975846 c -0.51891,0.534394 -1.25079,1.283703 -2.19565,2.24793"
d="M -487.4658,32.68352 L -483.37074,32.68352 L -483.37074,33.670982 L -488.87729,33.670982 L -488.87729,32.68352 C -488.43197,32.222705 -487.82594,31.605057 -487.0592,30.830575 C -486.2886,30.052225 -485.80455,29.55075 -485.60705,29.326146 C -485.23143,28.904059 -484.97004,28.547798 -484.82289,28.257363 C -484.67187,27.963066 -484.59636,27.674572 -484.59635,27.391881 C -484.59636,26.931072 -484.759,26.555449 -485.08427,26.265012 C -485.40569,25.974589 -485.82584,25.829374 -486.34474,25.829366 C -486.71262,25.829374 -487.1018,25.893266 -487.51227,26.02105 C -487.91888,26.148847 -488.35452,26.342467 -488.81921,26.601911 L -488.81921,25.416955 C -488.34678,25.227216 -487.90532,25.083937 -487.49485,24.987119 C -487.08437,24.890319 -486.70875,24.841912 -486.36798,24.841904 C -485.46958,24.841912 -484.75319,25.066512 -484.21879,25.515702 C -483.68441,25.964908 -483.41721,26.56513 -483.41721,27.316369 C -483.41721,27.672636 -483.48501,28.011471 -483.62051,28.332875 C -483.75217,28.650417 -483.9942,29.02604 -484.34658,29.459744 C -484.44338,29.572048 -484.75125,29.897329 -485.27015,30.43559 C -485.78906,30.969984 -486.52094,31.719293 -487.4658,32.68352"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6264"
inkscape:connector-curvature="0" />
<path
d="m -477.6783,26.02105 l -2.96239,4.629458 l 2.96239,0 l 0,-4.629458 m -0.30786,-1.022314 l 1.47539,0 l 0,5.651772 l 1.23723,0 l 0,0.975846 l -1.23723,0 l 0,2.044628 l -1.16753,0 l 0,-2.044628 l -3.915,0 l 0,-1.132678 l 3.60714,-5.49494"
d="M -477.6783,26.02105 L -480.64069,30.650508 L -477.6783,30.650508 L -477.6783,26.02105 M -477.98616,24.998736 L -476.51077,24.998736 L -476.51077,30.650508 L -475.27354,30.650508 L -475.27354,31.626354 L -476.51077,31.626354 L -476.51077,33.670982 L -477.6783,33.670982 L -477.6783,31.626354 L -481.5933,31.626354 L -481.5933,30.493676 L -477.98616,24.998736"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6266"
inkscape:connector-curvature="0" />
@ -5215,12 +5529,12 @@
id="compass210"
inkscape:label="#compass210">
<path
d="m -468.41969,-220.60944 l 4.09507,0 l 0,0.98746 l -5.50656,0 l 0,-0.98746 c 0.44532,-0.46082 1.05135,-1.07846 1.81809,-1.85295 c 0.77061,-0.77835 1.25466,-1.27982 1.45215,-1.50442 c 0.37562,-0.42209 0.63701,-0.77835 0.78416,-1.06879 c 0.15102,-0.29429 0.22654,-0.58279 0.22654,-0.86548 c 0,-0.46081 -0.16265,-0.83643 -0.48792,-1.12687 c -0.32142,-0.29042 -0.74157,-0.43564 -1.26047,-0.43564 c -0.36788,0 -0.75706,0.0639 -1.16753,0.19168 c -0.4066,0.1278 -0.84225,0.32142 -1.30694,0.58086 l 0,-1.18496 c 0.47244,-0.18973 0.91389,-0.33301 1.32437,-0.42983 c 0.41047,-0.0968 0.78609,-0.14521 1.12687,-0.14522 c 0.89839,1e-5 1.61478,0.22461 2.14918,0.6738 c 0.53439,0.44921 0.80158,1.04943 0.80159,1.80067 c -1e-5,0.35627 -0.0678,0.6951 -0.2033,1.0165 c -0.13167,0.31755 -0.3737,0.69317 -0.72608,1.12687 c -0.0968,0.11231 -0.40467,0.43759 -0.92357,0.97585 c -0.5189,0.53439 -1.25079,1.2837 -2.19565,2.24793"
d="M -468.41969,-220.60944 L -464.32462,-220.60944 L -464.32462,-219.62198 L -469.83118,-219.62198 L -469.83118,-220.60944 C -469.38586,-221.07026 -468.77983,-221.6879 -468.01309,-222.46239 C -467.24248,-223.24074 -466.75843,-223.74221 -466.56094,-223.96681 C -466.18532,-224.3889 -465.92393,-224.74516 -465.77678,-225.0356 C -465.62576,-225.32989 -465.55024,-225.61839 -465.55024,-225.90108 C -465.55024,-226.36189 -465.71289,-226.73751 -466.03816,-227.02795 C -466.35958,-227.31837 -466.77973,-227.46359 -467.29863,-227.46359 C -467.66651,-227.46359 -468.05569,-227.39969 -468.46616,-227.27191 C -468.87276,-227.14411 -469.30841,-226.95049 -469.7731,-226.69105 L -469.7731,-227.87601 C -469.30066,-228.06574 -468.85921,-228.20902 -468.44873,-228.30584 C -468.03826,-228.40264 -467.66264,-228.45105 -467.32186,-228.45106 C -466.42347,-228.45105 -465.70708,-228.22645 -465.17268,-227.77726 C -464.63829,-227.32805 -464.3711,-226.72783 -464.37109,-225.97659 C -464.3711,-225.62032 -464.43889,-225.28149 -464.57439,-224.96009 C -464.70606,-224.64254 -464.94809,-224.26692 -465.30047,-223.83322 C -465.39727,-223.72091 -465.70514,-223.39563 -466.22404,-222.85737 C -466.74294,-222.32298 -467.47483,-221.57367 -468.41969,-220.60944"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6259"
inkscape:connector-curvature="0" />
<path
d="m -461.65267,-220.60944 l 1.91684,0 l 0,-6.616 l -2.08529,0.41822 l 0,-1.06879 l 2.07368,-0.41822 l 1.17333,0 l 0,7.68479 l 1.91684,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
d="M -461.65267,-220.60944 L -459.73583,-220.60944 L -459.73583,-227.22544 L -461.82112,-226.80722 L -461.82112,-227.87601 L -459.74744,-228.29423 L -458.57411,-228.29423 L -458.57411,-220.60944 L -456.65727,-220.60944 L -456.65727,-219.62198 L -461.65267,-219.62198 L -461.65267,-220.60944"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6261"
inkscape:connector-curvature="0" />
@ -5232,7 +5546,7 @@
id="compass180"
inkscape:label="#compass180">
<path
d="m -317.14674,-437.8563 l 0,1.83552 c -0.47632,-0.21298 -0.941,-0.37368 -1.39407,-0.48212 c -0.45308,-0.10842 -0.88098,-0.16263 -1.2837,-0.16264 c -0.5344,1e-5 -0.92938,0.0736 -1.18496,0.22073 c -0.25558,0.14716 -0.38337,0.37563 -0.38336,0.68541 c -10e-6,0.23235 0.0852,0.41436 0.25557,0.54601 c 0.17426,0.1278 0.48792,0.23816 0.941,0.33109 l 0.95261,0.19169 c 0.96422,0.19362 1.64964,0.48792 2.05625,0.8829 c 0.40659,0.39499 0.60989,0.95649 0.6099,1.6845 c -1e-5,0.95648 -0.28463,1.66901 -0.85387,2.13757 c -0.56537,0.46468 -1.43085,0.69703 -2.59644,0.69703 c -0.54989,0 -1.1017,-0.0523 -1.65545,-0.15683 c -0.55376,-0.10456 -1.10751,-0.25946 -1.66127,-0.46469 l 0,-1.8878 c 0.55376,0.29431 1.08815,0.51697 1.60318,0.66799 c 0.5189,0.14715 1.01844,0.22073 1.49862,0.22073 c 0.48792,0 0.8616,-0.0813 1.12106,-0.24396 c 0.25945,-0.16264 0.38917,-0.39499 0.38918,-0.69704 c -1e-5,-0.27106 -0.0891,-0.48017 -0.2672,-0.62733 c -0.17426,-0.14714 -0.52471,-0.27881 -1.05136,-0.39498 l -0.86548,-0.19169 c -0.86742,-0.18587 -1.50249,-0.48211 -1.90522,-0.88871 c -0.39886,-0.4066 -0.59829,-0.95454 -0.59829,-1.64384 c 0,-0.86354 0.27881,-1.52765 0.83644,-1.99235 c 0.55763,-0.46468 1.35921,-0.69702 2.40476,-0.69703 c 0.4763,10e-6 0.96616,0.0368 1.46958,0.11036 c 0.50341,0.0697 1.02424,0.17621 1.56252,0.31948"
d="M -317.14674,-437.8563 L -317.14674,-436.02078 C -317.62306,-436.23376 -318.08774,-436.39446 -318.54081,-436.5029 C -318.99389,-436.61132 -319.42179,-436.66553 -319.82451,-436.66554 C -320.35891,-436.66553 -320.75389,-436.59194 -321.00947,-436.44481 C -321.26505,-436.29765 -321.39284,-436.06918 -321.39283,-435.7594 C -321.39284,-435.52705 -321.30763,-435.34504 -321.13726,-435.21339 C -320.963,-435.08559 -320.64934,-434.97523 -320.19626,-434.8823 L -319.24365,-434.69061 C -318.27943,-434.49699 -317.59401,-434.20269 -317.1874,-433.80771 C -316.78081,-433.41272 -316.57751,-432.85122 -316.5775,-432.12321 C -316.57751,-431.16673 -316.86213,-430.4542 -317.43137,-429.98564 C -317.99674,-429.52096 -318.86222,-429.28861 -320.02781,-429.28861 C -320.5777,-429.28861 -321.12951,-429.34091 -321.68326,-429.44544 C -322.23702,-429.55 -322.79077,-429.7049 -323.34453,-429.91013 L -323.34453,-431.79793 C -322.79077,-431.50362 -322.25638,-431.28096 -321.74135,-431.12994 C -321.22245,-430.98279 -320.72291,-430.90921 -320.24273,-430.90921 C -319.75481,-430.90921 -319.38113,-430.99051 -319.12167,-431.15317 C -318.86222,-431.31581 -318.7325,-431.54816 -318.73249,-431.85021 C -318.7325,-432.12127 -318.82159,-432.33038 -318.99969,-432.47754 C -319.17395,-432.62468 -319.5244,-432.75635 -320.05105,-432.87252 L -320.91653,-433.06421 C -321.78395,-433.25008 -322.41902,-433.54632 -322.82175,-433.95292 C -323.22061,-434.35952 -323.42004,-434.90746 -323.42004,-435.59676 C -323.42004,-436.4603 -323.14123,-437.12441 -322.5836,-437.58911 C -322.02597,-438.05379 -321.22439,-438.28613 -320.17884,-438.28614 C -319.70254,-438.28613 -319.21268,-438.24934 -318.70926,-438.17578 C -318.20585,-438.10608 -317.68502,-437.99957 -317.14674,-437.8563"
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
id="path6256"
inkscape:connector-curvature="0" />
@ -5244,12 +5558,12 @@
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="compass150">
<path
d="m -97.205015,-540.59659 l 1.91684,0 l 0,-6.616 l -2.085289,0.41822 l 0,-1.06879 l 2.073672,-0.41822 l 1.173338,0 l 0,7.68479 l 1.916839,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
d="M -97.205015,-540.59659 L -95.288175,-540.59659 L -95.288175,-547.21259 L -97.373464,-546.79437 L -97.373464,-547.86316 L -95.299792,-548.28138 L -94.126454,-548.28138 L -94.126454,-540.59659 L -92.209615,-540.59659 L -92.209615,-539.60913 L -97.205015,-539.60913 L -97.205015,-540.59659"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6251"
inkscape:connector-curvature="0" />
<path
d="m -89.822279,-548.28138 l 4.606224,0 l 0,0.98747 l -3.531632,0 l 0,2.12594 c 0.170383,-0.0581 0.340769,-0.10067 0.511157,-0.12778 c 0.170383,-0.031 0.340769,-0.0465 0.511158,-0.0465 c 0.968096,0 1.734831,0.26526 2.300207,0.79578 c 0.565365,0.53052 0.84805,1.24885 0.848056,2.15499 c -6e-6,0.93325 -0.290436,1.65932 -0.87129,2.17822 c -0.580866,0.51503 -1.399878,0.77255 -2.45704,0.77255 c -0.364009,0 -0.735759,-0.031 -1.115252,-0.0929 c -0.375625,-0.062 -0.764801,-0.1549 -1.16753,-0.27881 l 0,-1.17915 c 0.348515,0.18975 0.708649,0.33109 1.080401,0.42403 c 0.371748,0.0929 0.764797,0.13941 1.179147,0.13941 c 0.669921,0 1.20044,-0.1762 1.591557,-0.52859 c 0.391108,-0.35238 0.586664,-0.83063 0.586669,-1.43472 c -5e-6,-0.60409 -0.195561,-1.08234 -0.586669,-1.43473 c -0.391117,-0.35238 -0.921636,-0.52858 -1.591557,-0.52858 c -0.313668,0 -0.627332,0.0349 -0.940994,0.10455 c -0.309795,0.0697 -0.627331,0.17814 -0.952612,0.32529 l 0,-4.35646"
d="M -89.822279,-548.28138 L -85.216055,-548.28138 L -85.216055,-547.29391 L -88.747687,-547.29391 L -88.747687,-545.16797 C -88.577304,-545.22607 -88.406918,-545.26864 -88.23653,-545.29575 C -88.066147,-545.32675 -87.895761,-545.34225 -87.725372,-545.34225 C -86.757276,-545.34225 -85.990541,-545.07699 -85.425165,-544.54647 C -84.8598,-544.01595 -84.577115,-543.29762 -84.577109,-542.39148 C -84.577115,-541.45823 -84.867545,-540.73216 -85.448399,-540.21326 C -86.029265,-539.69823 -86.848277,-539.44071 -87.905439,-539.44071 C -88.269448,-539.44071 -88.641198,-539.47171 -89.020691,-539.53361 C -89.396316,-539.59561 -89.785492,-539.68851 -90.188221,-539.81242 L -90.188221,-540.99157 C -89.839706,-540.80182 -89.479572,-540.66048 -89.10782,-540.56754 C -88.736072,-540.47464 -88.343023,-540.42813 -87.928673,-540.42813 C -87.258752,-540.42813 -86.728233,-540.60433 -86.337116,-540.95672 C -85.946008,-541.3091 -85.750452,-541.78735 -85.750447,-542.39144 C -85.750452,-542.99553 -85.946008,-543.47378 -86.337116,-543.82617 C -86.728233,-544.17855 -87.258752,-544.35475 -87.928673,-544.35475 C -88.242341,-544.35475 -88.556005,-544.31985 -88.869667,-544.2502 C -89.179462,-544.1805 -89.496998,-544.07206 -89.822279,-543.92491 L -89.822279,-548.28137"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6253"
inkscape:connector-curvature="0" />
@ -5262,12 +5576,12 @@
id="compass120"
inkscape:label="#compass120">
<path
d="m 156.08793,-521.55051 l 1.91684,0 l 0,-6.616 l -2.08529,0.41822 l 0,-1.06879 l 2.07367,-0.41822 l 1.17334,0 l 0,7.68479 l 1.91684,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
d="M 156.08793,-521.55051 L 158.00477,-521.55051 L 158.00477,-528.16651 L 155.91948,-527.74829 L 155.91948,-528.81708 L 157.99315,-529.2353 L 159.16649,-529.2353 L 159.16649,-521.55051 L 161.08333,-521.55051 L 161.08333,-520.56305 L 156.08793,-520.56305 L 156.08793,-521.55051"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6246"
inkscape:connector-curvature="0" />
<path
d="m 164.46975,-521.55051 l 4.09506,0 l 0,0.98746 l -5.50655,0 l 0,-0.98746 c 0.44532,-0.46082 1.05135,-1.07846 1.81809,-1.85295 c 0.7706,-0.77835 1.25465,-1.27982 1.45215,-1.50443 c 0.37562,-0.42208 0.63701,-0.77834 0.78416,-1.06878 c 0.15102,-0.2943 0.22653,-0.58279 0.22654,-0.86548 c -1e-5,-0.46081 -0.16265,-0.83643 -0.48792,-1.12687 c -0.32142,-0.29042 -0.74157,-0.43564 -1.26047,-0.43565 c -0.36788,10e-6 -0.75706,0.0639 -1.16753,0.19169 c -0.40661,0.1278 -0.84225,0.32142 -1.30694,0.58086 l 0,-1.18496 c 0.47243,-0.18974 0.91389,-0.33301 1.32436,-0.42983 c 0.41048,-0.0968 0.7861,-0.14521 1.12687,-0.14522 c 0.8984,10e-6 1.61479,0.22461 2.14919,0.6738 c 0.53438,0.44921 0.80158,1.04943 0.80158,1.80067 c 0,0.35626 -0.0678,0.6951 -0.2033,1.0165 c -0.13166,0.31755 -0.37369,0.69317 -0.72607,1.12687 c -0.0968,0.11231 -0.40467,0.43759 -0.92357,0.97585 c -0.51891,0.53439 -1.25079,1.2837 -2.19565,2.24793"
d="M 164.46975,-521.55051 L 168.56481,-521.55051 L 168.56481,-520.56305 L 163.05826,-520.56305 L 163.05826,-521.55051 C 163.50358,-522.01133 164.10961,-522.62897 164.87635,-523.40346 C 165.64695,-524.18181 166.131,-524.68328 166.3285,-524.90789 C 166.70412,-525.32997 166.96551,-525.68623 167.11266,-525.97667 C 167.26368,-526.27097 167.33919,-526.55946 167.3392,-526.84215 C 167.33919,-527.30296 167.17655,-527.67858 166.85128,-527.96902 C 166.52986,-528.25944 166.10971,-528.40466 165.59081,-528.40467 C 165.22293,-528.40466 164.83375,-528.34077 164.42328,-528.21298 C 164.01667,-528.08518 163.58103,-527.89156 163.11634,-527.63212 L 163.11634,-528.81708 C 163.58877,-529.00682 164.03023,-529.15009 164.4407,-529.24691 C 164.85118,-529.34371 165.2268,-529.39212 165.56757,-529.39213 C 166.46597,-529.39212 167.18236,-529.16752 167.71676,-528.71833 C 168.25114,-528.26912 168.51834,-527.6689 168.51834,-526.91766 C 168.51834,-526.5614 168.45054,-526.22256 168.31504,-525.90116 C 168.18338,-525.58361 167.94135,-525.20799 167.58897,-524.77429 C 167.49217,-524.66198 167.1843,-524.3367 166.6654,-523.79844 C 166.14649,-523.26405 165.41461,-522.51474 164.46975,-521.55051"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6248"
inkscape:connector-curvature="0" />
@ -5279,7 +5593,7 @@
id="compass90"
inkscape:label="#compass90">
<path
d="m 369.04806,-386.0944 l 6.03514,0 l 0,1.69031 l -3.79883,0 l 0,1.61479 l 3.57229,0 l 0,1.6903 l -3.57229,0 l 0,1.98655 l 3.92662,0 l 0,1.6903 l -6.16293,0 l 0,-8.67225"
d="M 369.04806,-386.0944 L 375.0832,-386.0944 L 375.0832,-384.40409 L 371.28437,-384.40409 L 371.28437,-382.7893 L 374.85666,-382.7893 L 374.85666,-381.099 L 371.28437,-381.099 L 371.28437,-379.11245 L 375.21099,-379.11245 L 375.21099,-377.42215 L 369.04806,-377.42215 L 369.04806,-386.0944"
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
id="path6243"
inkscape:connector-curvature="0" />
@ -5291,7 +5605,7 @@
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="compass60">
<path
d="m 482.31357,-153.34469 c -0.52665,1e-5 -0.94487,0.18008 -1.25466,0.5402 c -0.30592,0.36014 -0.45888,0.85387 -0.45888,1.4812 c 0,0.62346 0.15296,1.11719 0.45888,1.48119 c 0.30979,0.36014 0.72801,0.5402 1.25466,0.5402 c 0.52664,0 0.94293,-0.18006 1.24885,-0.5402 c 0.30979,-0.364 0.46468,-0.85773 0.46469,-1.48119 c -10e-6,-0.62733 -0.1549,-1.12106 -0.46469,-1.4812 c -0.30592,-0.36012 -0.72221,-0.54019 -1.24885,-0.5402 m 2.32925,-3.67684 l 0,1.06878 c -0.29431,-0.1394 -0.59248,-0.24589 -0.89452,-0.31947 c -0.29818,-0.0736 -0.59442,-0.11036 -0.88872,-0.11037 c -0.77449,1e-5 -1.36696,0.2614 -1.77743,0.78417 c -0.40661,0.52278 -0.63895,1.31275 -0.69704,2.36991 c 0.22847,-0.3369 0.51503,-0.59441 0.85968,-0.77255 c 0.34464,-0.182 0.72413,-0.273 1.13848,-0.273 c 0.87129,0 1.55864,0.26526 2.06206,0.79578 c 0.50728,0.52665 0.76092,1.24498 0.76093,2.15499 c -10e-6,0.89065 -0.26333,1.60511 -0.78997,2.14337 c -0.52666,0.53827 -1.22756,0.8074 -2.10272,0.8074 c -1.00295,0 -1.76969,-0.38337 -2.30021,-1.1501 c -0.53052,-0.77061 -0.79578,-1.88586 -0.79578,-3.34576 c 0,-1.37083 0.32528,-2.46284 0.97585,-3.27605 c 0.65056,-0.81707 1.52379,-1.22561 2.61968,-1.22562 c 0.2943,1e-5 0.59054,0.029 0.88872,0.0871 c 0.30204,0.0581 0.6157,0.14522 0.94099,0.26139"
d="M 482.31357,-153.34469 C 481.78692,-153.34468 481.3687,-153.16461 481.05891,-152.80449 C 480.75299,-152.44435 480.60003,-151.95062 480.60003,-151.32329 C 480.60003,-150.69983 480.75299,-150.2061 481.05891,-149.8421 C 481.3687,-149.48196 481.78692,-149.3019 482.31357,-149.3019 C 482.84021,-149.3019 483.2565,-149.48196 483.56242,-149.8421 C 483.87221,-150.2061 484.0271,-150.69983 484.02711,-151.32329 C 484.0271,-151.95062 483.87221,-152.44435 483.56242,-152.80449 C 483.2565,-153.16461 482.84021,-153.34468 482.31357,-153.34469 M 484.64282,-157.02153 L 484.64282,-155.95275 C 484.34851,-156.09215 484.05034,-156.19864 483.7483,-156.27222 C 483.45012,-156.34582 483.15388,-156.38258 482.85958,-156.38259 C 482.08509,-156.38258 481.49262,-156.12119 481.08215,-155.59842 C 480.67554,-155.07564 480.4432,-154.28567 480.38511,-153.22851 C 480.61358,-153.56541 480.90014,-153.82292 481.24479,-154.00106 C 481.58943,-154.18306 481.96892,-154.27406 482.38327,-154.27406 C 483.25456,-154.27406 483.94191,-154.0088 484.44533,-153.47828 C 484.95261,-152.95163 485.20625,-152.2333 485.20626,-151.32329 C 485.20625,-150.43264 484.94293,-149.71818 484.41629,-149.17992 C 483.88963,-148.64165 483.18873,-148.37252 482.31357,-148.37252 C 481.31062,-148.37252 480.54388,-148.75589 480.01336,-149.52262 C 479.48284,-150.29323 479.21758,-151.40848 479.21758,-152.86838 C 479.21758,-154.23921 479.54286,-155.33122 480.19343,-156.14443 C 480.84399,-156.9615 481.71722,-157.37004 482.81311,-157.37005 C 483.10741,-157.37004 483.40365,-157.34105 483.70183,-157.28295 C 484.00387,-157.22485 484.31753,-157.13773 484.64282,-157.02156"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6240"
inkscape:connector-curvature="0" />
@ -5304,7 +5618,7 @@
id="compass30"
inkscape:label="#compass-30">
<path
d="m 464.16779,100.07606 c 0.56149,0.12005 0.99908,0.36982 1.31275,0.74931 c 0.31753,0.3795 0.4763,0.84806 0.4763,1.40568 c 0,0.8558 -0.29431,1.51798 -0.88291,1.98654 c -0.58861,0.46856 -1.42504,0.70284 -2.50931,0.70284 c -0.36401,0 -0.73963,-0.0368 -1.12687,-0.11036 c -0.38337,-0.0697 -0.78029,-0.17619 -1.19077,-0.31947 l 0,-1.13268 c 0.32528,0.18975 0.68155,0.33303 1.06879,0.42984 c 0.38724,0.0968 0.7919,0.14521 1.214,0.14521 c 0.73575,0 1.29531,-0.14521 1.67868,-0.43564 c 0.38724,-0.29043 0.58086,-0.71253 0.58086,-1.26628 c 0,-0.51115 -0.18007,-0.91001 -0.5402,-1.19657 c -0.35626,-0.29043 -0.85387,-0.43564 -1.49281,-0.43565 l -1.0107,0 l 0,-0.964227 l 1.05717,0 c 0.57698,5e-6 1.01844,-0.114231 1.32436,-0.342708 c 0.30592,-0.232338 0.45888,-0.565364 0.45888,-0.999079 c 0,-0.44532 -0.15877,-0.786091 -0.4763,-1.022315 c -0.31367,-0.240081 -0.76481,-0.360125 -1.35341,-0.360133 c -0.32141,8e-6 -0.66605,0.03486 -1.03393,0.104555 c -0.36788,0.06971 -0.77255,0.178138 -1.214,0.325281 l 0,-1.045548 c 0.44533,-0.123909 0.86161,-0.216846 1.24885,-0.278813 c 0.39111,-0.06195 0.75899,-0.09293 1.10364,-0.09294 c 0.89064,9e-6 1.59542,0.20331 2.11433,0.609903 c 0.51889,0.402738 0.77834,0.948746 0.77835,1.638027 c -10e-6,0.480184 -0.13748,0.886786 -0.41241,1.219807 c -0.27495,0.329159 -0.66606,0.557631 -1.17334,0.68542"
d="M 464.16779,100.07606 C 464.72928,100.19611 465.16687,100.44588 465.48054,100.82537 C 465.79807,101.20487 465.95684,101.67343 465.95684,102.23105 C 465.95684,103.08685 465.66253,103.74903 465.07393,104.21759 C 464.48532,104.68615 463.64889,104.92043 462.56462,104.92043 C 462.20061,104.92043 461.82499,104.88363 461.43775,104.81007 C 461.05438,104.74037 460.65746,104.63388 460.24698,104.4906 L 460.24698,103.35792 C 460.57226,103.54767 460.92853,103.69095 461.31577,103.78776 C 461.70301,103.88456 462.10767,103.93297 462.52977,103.93297 C 463.26552,103.93297 463.82508,103.78776 464.20845,103.49733 C 464.59569,103.2069 464.78931,102.7848 464.78931,102.23105 C 464.78931,101.7199 464.60924,101.32104 464.24911,101.03448 C 463.89285,100.74405 463.39524,100.59884 462.7563,100.59883 L 461.7456,100.59883 L 461.7456,99.634603 L 462.80277,99.634603 C 463.37975,99.634608 463.82121,99.520372 464.12713,99.291895 C 464.43305,99.059557 464.58601,98.726531 464.58601,98.292816 C 464.58601,97.847496 464.42724,97.506725 464.10971,97.270501 C 463.79604,97.03042 463.3449,96.910376 462.7563,96.910368 C 462.43489,96.910376 462.09025,96.945228 461.72237,97.014923 C 461.35449,97.084633 460.94982,97.193061 460.50837,97.340204 L 460.50837,96.294656 C 460.9537,96.170747 461.36998,96.07781 461.75722,96.015843 C 462.14833,95.953893 462.51621,95.922913 462.86086,95.922903 C 463.7515,95.922912 464.45628,96.126213 464.97519,96.532806 C 465.49408,96.935544 465.75353,97.481552 465.75354,98.170833 C 465.75353,98.651017 465.61606,99.057619 465.34113,99.39064 C 465.06618,99.719799 464.67507,99.948271 464.16779,100.07606"
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6237"
inkscape:connector-curvature="0" />
@ -5324,7 +5638,7 @@
inkscape:label="#g4651">
<path
style="fill:#008000;fill-opacity:1;stroke:none"
d="m 319.99619,305.5318 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
d="M 319.99619,305.5318 L 311.47248,314.26794 L 318.34987,314.21484 L 318.34944,341.3792 L 321.64251,341.3792 L 321.64251,314.21484 L 328.49335,314.26794 z"
id="path4653"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
@ -5352,11 +5666,11 @@
sodipodi:nodetypes="cccccccc"
inkscape:connector-curvature="0"
id="path5472"
d="m 319.99619,305.5318 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
d="M 319.99619,305.5318 L 311.47248,314.26794 L 318.34987,314.21484 L 318.34944,341.3792 L 321.64251,341.3792 L 321.64251,314.21484 L 328.49335,314.26794 z"
style="fill:#bf00bf;fill-opacity:1;stroke:none" />
<path
style="fill:#bf00bf;fill-opacity:1;stroke:none"
d="m 319.99619,402.73825 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
d="M 319.99619,402.73825 L 311.47248,411.47439 L 318.34987,411.42129 L 318.34944,438.58565 L 321.64251,438.58565 L 321.64251,411.42129 L 328.49335,411.47439 z"
id="path4628"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
@ -5373,17 +5687,17 @@
id="compass-text"
transform="translate(0,78)">
<path
d="m 311.31955,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -1e-5,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
d="M 311.31955,276.77926 C 310.62915,276.77927 310.10914,277.12004 309.75952,277.80158 C 309.41432,278.4787 309.24172,279.4988 309.24173,280.86188 C 309.24172,282.22055 309.41432,283.24065 309.75952,283.92219 C 310.10914,284.59931 310.62915,284.93786 311.31955,284.93786 C 312.01436,284.93786 312.53437,284.59931 312.87957,283.92219 C 313.22919,283.24065 313.404,282.22055 313.40401,280.86188 C 313.404,279.4988 313.22919,278.4787 312.87957,277.80158 C 312.53437,277.12004 312.01436,276.77927 311.31955,276.77926 M 311.31955,275.71712 C 312.43037,275.71713 313.27787,276.15748 313.86206,277.03816 C 314.45065,277.91444 314.74496,279.18901 314.74496,280.86188 C 314.74496,282.53034 314.45065,283.80491 313.86206,284.6856 C 313.27787,285.56187 312.43037,286.00001 311.31955,286.00001 C 310.20872,286.00001 309.359,285.56187 308.7704,284.6856 C 308.18622,283.80491 307.89413,282.53034 307.89413,280.86188 C 307.89413,279.18901 308.18622,277.91444 308.7704,277.03816 C 309.359,276.15748 310.20872,275.71713 311.31955,275.71712"
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6227"
inkscape:connector-curvature="0" />
<path
d="m 319.97603,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -1e-5,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
d="M 319.97603,276.77926 C 319.28563,276.77927 318.76562,277.12004 318.416,277.80158 C 318.0708,278.4787 317.8982,279.4988 317.89821,280.86188 C 317.8982,282.22055 318.0708,283.24065 318.416,283.92219 C 318.76562,284.59931 319.28563,284.93786 319.97603,284.93786 C 320.67084,284.93786 321.19085,284.59931 321.53605,283.92219 C 321.88567,283.24065 322.06048,282.22055 322.06049,280.86188 C 322.06048,279.4988 321.88567,278.4787 321.53605,277.80158 C 321.19085,277.12004 320.67084,276.77927 319.97603,276.77926 M 319.97603,275.71712 C 321.08685,275.71713 321.93435,276.15748 322.51854,277.03816 C 323.10713,277.91444 323.40144,279.18901 323.40144,280.86188 C 323.40144,282.53034 323.10713,283.80491 322.51854,284.6856 C 321.93435,285.56187 321.08685,286.00001 319.97603,286.00001 C 318.8652,286.00001 318.01548,285.56187 317.42688,284.6856 C 316.8427,283.80491 316.55061,282.53034 316.55061,280.86188 C 316.55061,279.18901 316.8427,277.91444 317.42688,277.03816 C 318.01548,276.15748 318.8652,275.71713 319.97603,275.71712"
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6229"
inkscape:connector-curvature="0" />
<path
d="m 328.63251,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -10e-6,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
d="M 328.63251,276.77926 C 327.94211,276.77927 327.4221,277.12004 327.07248,277.80158 C 326.72728,278.4787 326.55468,279.4988 326.55469,280.86188 C 326.55468,282.22055 326.72728,283.24065 327.07248,283.92219 C 327.4221,284.59931 327.94211,284.93786 328.63251,284.93786 C 329.32732,284.93786 329.84733,284.59931 330.19253,283.92219 C 330.54215,283.24065 330.71696,282.22055 330.71697,280.86188 C 330.71696,279.4988 330.54215,278.4787 330.19253,277.80158 C 329.84733,277.12004 329.32732,276.77927 328.63251,276.77926 M 328.63251,275.71712 C 329.74333,275.71713 330.59083,276.15748 331.17502,277.03816 C 331.76361,277.91444 332.05792,279.18901 332.05792,280.86188 C 332.05792,282.53034 331.76361,283.80491 331.17502,284.6856 C 330.59083,285.56187 329.74333,286.00001 328.63251,286.00001 C 327.52168,286.00001 326.67196,285.56187 326.08336,284.6856 C 325.49918,283.80491 325.20709,282.53034 325.20709,280.86188 C 325.20709,279.18901 325.49918,277.91444 326.08336,277.03816 C 326.67196,276.15748 327.52168,275.71713 328.63251,275.71712"
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
id="path6231"
inkscape:connector-curvature="0" />
@ -5402,13 +5716,13 @@
inkscape:transform-center-y="-72.71875"
inkscape:connector-curvature="0"
id="path4626"
d="m 320,372.78125 l -3.78125,4.5 l 3.78125,4.5 l 3.78125,-4.5 l -3.78125,-4.5 z"
d="M 320,372.78125 L 316.21875,377.28125 L 320,381.78125 L 323.78125,377.28125 L 320,372.78125 z"
style="fill:#00ffff;stroke:none" />
<path
transform="translate(0,4)"
inkscape:connector-curvature="0"
id="path3849"
d="m 320,377.78125 l -0.0171,68.20098"
d="M 320,377.78125 L 319.9829,445.98223"
style="fill:none;stroke:none" />
</g>
</g>
@ -5420,7 +5734,7 @@
<path
inkscape:connector-curvature="0"
id="compass-plane"
d="m 319.99619,439.71926 l -2.20395,1.77909 l 0,4.59378 l -8.44405,3.08022 l 0.0265,2.12429 l 8.55027,0 l -0.0796,4.72654 l -2.49604,2.07118 l 0.0531,2.15085 l 4.59378,-0.0796 l 4.56722,0.0796 l 0.0531,-2.15085 l -2.46949,-2.07118 l -0.10621,-4.72654 l 8.55026,0 l 0.0265,-2.12429 l -8.44406,-3.08022 l 0,-4.59378 l -2.17735,-1.77909 z"
d="M 319.99619,439.71926 L 317.79224,441.49835 L 317.79224,446.09213 L 309.34819,449.17235 L 309.37469,451.29664 L 317.92496,451.29664 L 317.84536,456.02318 L 315.34932,458.09436 L 315.40242,460.24521 L 319.9962,460.16561 L 324.56342,460.24521 L 324.61652,458.09436 L 322.14703,456.02318 L 322.04082,451.29664 L 330.59108,451.29664 L 330.61758,449.17235 L 322.17352,446.09213 L 322.17352,441.49835 L 319.99617,439.71926 z"
style="fill:#ffffff;stroke:none;display:inline"
inkscape:label="#path5448" />
</g>
@ -5429,7 +5743,7 @@
inkscape:groupmode="layer"
id="layer17"
inkscape:label="speed"
style="display:none"
style="display:inline"
transform="translate(0,-4)"
sodipodi:insensitive="true">
<g
@ -5443,17 +5757,17 @@
id="speed-unit"
transform="translate(0,42)">
<path
d="m 134.60681,290.91187 c 0.22461,-0.40365 0.49316,-0.7015 0.80567,-0.89356 c 0.31249,-0.19205 0.68033,-0.28808 1.10351,-0.28809 c 0.56965,1e-5 1.00911,0.20021 1.31836,0.60059 c 0.30924,0.39714 0.46386,0.96355 0.46387,1.69922 l 0,3.30078 l -0.90332,0 l 0,-3.27148 c -1e-5,-0.52409 -0.0928,-0.91309 -0.27832,-1.167 c -0.18556,-0.2539 -0.46876,-0.38085 -0.84961,-0.38086 c -0.4655,1e-5 -0.83334,0.15463 -1.10352,0.46387 c -0.27019,0.30925 -0.40528,0.7308 -0.40527,1.26465 l 0,3.09082 l -0.90332,0 l 0,-3.27148 c -1e-5,-0.52734 -0.0928,-0.91634 -0.27832,-1.167 c -0.18555,-0.2539 -0.47201,-0.38085 -0.85938,-0.38086 c -0.45898,1e-5 -0.82357,0.15626 -1.09375,0.46875 c -0.27018,0.30925 -0.40527,0.72917 -0.40527,1.25977 l 0,3.09082 l -0.90332,0 l 0,-5.46875 l 0.90332,0 l 0,0.84961 c 0.20508,-0.33528 0.45084,-0.58268 0.7373,-0.74219 c 0.28646,-0.1595 0.62663,-0.23925 1.02051,-0.23926 c 0.39713,1e-5 0.73405,0.10092 1.01074,0.30274 c 0.27995,0.20183 0.48665,0.4948 0.62012,0.87891"
d="M 134.60681,290.91187 C 134.83142,290.50822 135.09997,290.21037 135.41248,290.01831 C 135.72497,289.82626 136.09281,289.73023 136.51599,289.73022 C 137.08564,289.73023 137.5251,289.93043 137.83435,290.33081 C 138.14359,290.72795 138.29821,291.29436 138.29822,292.03003 L 138.29822,295.33081 L 137.3949,295.33081 L 137.3949,292.05933 C 137.39489,291.53524 137.3021,291.14624 137.11658,290.89233 C 136.93102,290.63843 136.64782,290.51148 136.26697,290.51147 C 135.80147,290.51148 135.43363,290.6661 135.16345,290.97534 C 134.89326,291.28459 134.75817,291.70614 134.75818,292.23999 L 134.75818,295.33081 L 133.85486,295.33081 L 133.85486,292.05933 C 133.85485,291.53199 133.76206,291.14299 133.57654,290.89233 C 133.39099,290.63843 133.10453,290.51148 132.71716,290.51147 C 132.25818,290.51148 131.89359,290.66773 131.62341,290.98022 C 131.35323,291.28947 131.21814,291.70939 131.21814,292.23999 L 131.21814,295.33081 L 130.31482,295.33081 L 130.31482,289.86206 L 131.21814,289.86206 L 131.21814,290.71167 C 131.42322,290.37639 131.66898,290.12899 131.95544,289.96948 C 132.2419,289.80998 132.58207,289.73023 132.97595,289.73022 C 133.37308,289.73023 133.71,289.83114 133.98669,290.03296 C 134.26664,290.23479 134.47334,290.52776 134.60681,290.91187"
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
id="path6208"
inkscape:connector-curvature="0" />
<path
d="m 141.69177,288.04077 l 0.83008,0 l -2.53906,8.21777 l -0.83008,0 l 2.53906,-8.21777"
d="M 141.69177,288.04077 L 142.52185,288.04077 L 139.98279,296.25854 L 139.15271,296.25854 L 141.69177,288.04077"
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
id="path6210"
inkscape:connector-curvature="0" />
<path
d="m 146.96033,290.02319 l 0,0.84961 c -0.25391,-0.1302 -0.51758,-0.22786 -0.79102,-0.29297 c -0.27344,-0.0651 -0.55664,-0.0976 -0.84961,-0.0976 c -0.44596,0 -0.78125,0.0684 -1.00586,0.20508 c -0.22135,0.13672 -0.33203,0.3418 -0.33203,0.61523 c 0,0.20834 0.0797,0.37273 0.23926,0.49316 c 0.1595,0.1172 0.48014,0.2295 0.96191,0.33692 l 0.30762,0.0684 c 0.63802,0.13672 1.09049,0.3304 1.35742,0.58105 c 0.27018,0.2474 0.40527,0.59408 0.40528,1.04004 c -1e-5,0.50781 -0.20183,0.90983 -0.60547,1.20606 c -0.4004,0.29622 -0.95215,0.44433 -1.65528,0.44433 c -0.29297,0 -0.59896,-0.0293 -0.91797,-0.0879 c -0.31575,-0.0553 -0.64941,-0.13997 -1.00097,-0.2539 l 0,-0.92774 c 0.33203,0.17253 0.65918,0.30274 0.98144,0.39063 c 0.32227,0.0846 0.64128,0.12695 0.95703,0.12695 c 0.42318,0 0.7487,-0.0716 0.97657,-0.21484 c 0.22786,-0.14649 0.34179,-0.35157 0.34179,-0.61524 c 0,-0.24414 -0.083,-0.43131 -0.24902,-0.56152 c -0.16276,-0.13021 -0.52246,-0.25553 -1.0791,-0.37598 l -0.3125,-0.0732 c -0.55664,-0.11719 -0.95866,-0.29622 -1.20606,-0.53711 c -0.24739,-0.24414 -0.37109,-0.5778 -0.37109,-1.00098 c 0,-0.51432 0.18229,-0.91145 0.54688,-1.1914 c 0.36458,-0.27995 0.88216,-0.41992 1.55273,-0.41993 c 0.33203,10e-6 0.64453,0.0244 0.9375,0.0733 c 0.29297,0.0488 0.56315,0.12207 0.81055,0.21972"
d="M 146.96033,290.02319 L 146.96033,290.8728 C 146.70642,290.7426 146.44275,290.64494 146.16931,290.57983 C 145.89587,290.51473 145.61267,290.48223 145.3197,290.48223 C 144.87374,290.48223 144.53845,290.55063 144.31384,290.68731 C 144.09249,290.82403 143.98181,291.02911 143.98181,291.30254 C 143.98181,291.51088 144.06151,291.67527 144.22107,291.7957 C 144.38057,291.9129 144.70121,292.0252 145.18298,292.13262 L 145.4906,292.20102 C 146.12862,292.33774 146.58109,292.53142 146.84802,292.78207 C 147.1182,293.02947 147.25329,293.37615 147.2533,293.82211 C 147.25329,294.32992 147.05147,294.73194 146.64783,295.02817 C 146.24743,295.32439 145.69568,295.4725 144.99255,295.4725 C 144.69958,295.4725 144.39359,295.4432 144.07458,295.3846 C 143.75883,295.3293 143.42517,295.24463 143.07361,295.1307 L 143.07361,294.20296 C 143.40564,294.37549 143.73279,294.5057 144.05505,294.59359 C 144.37732,294.67819 144.69633,294.72054 145.01208,294.72054 C 145.43526,294.72054 145.76078,294.64894 145.98865,294.5057 C 146.21651,294.35921 146.33044,294.15413 146.33044,293.89046 C 146.33044,293.64632 146.24744,293.45915 146.08142,293.32894 C 145.91866,293.19873 145.55896,293.07341 145.00232,292.95296 L 144.68982,292.87976 C 144.13318,292.76257 143.73116,292.58354 143.48376,292.34265 C 143.23637,292.09851 143.11267,291.76485 143.11267,291.34167 C 143.11267,290.82735 143.29496,290.43022 143.65955,290.15027 C 144.02413,289.87032 144.54171,289.73035 145.21228,289.73034 C 145.54431,289.73035 145.85681,289.75474 146.14978,289.80364 C 146.44275,289.85244 146.71293,289.92571 146.96033,290.02336"
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
id="path6212"
inkscape:connector-curvature="0" />
@ -5503,17 +5817,17 @@
<path
inkscape:connector-curvature="0"
id="path6219"
d="m 65.000001,148.96853 l -5.500001,0"
d="M 65.000001,148.96853 L 59.5,148.96853"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 65.000001,108.9056 l -5.500001,0"
d="M 65.000001,108.9056 L 59.5,108.9056"
id="path8329"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path8331"
d="m 65.000001,68.842666 l -5.500001,0"
d="M 65.000001,68.842666 L 59.5,68.842666"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -5529,18 +5843,18 @@
inkscape:label="#path8335" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 65.000001,268.84267 l -5.500001,0"
d="M 65.000001,268.84267 L 59.5,268.84267"
id="path8363"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 65.000001,228.9056 l -5.500001,0"
d="M 65.000001,228.9056 L 59.5,228.9056"
id="path8369"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path8371"
d="m 65.000001,188.84267 l -5.500001,0"
d="M 65.000001,188.84267 L 59.5,188.84267"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -5557,12 +5871,12 @@
<path
inkscape:connector-curvature="0"
id="path3518"
d="m 65.000001,348.84267 l -5.500001,0"
d="M 65.000001,348.84267 L 59.5,348.84267"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path3520"
d="m 65.000001,308.9056 l -5.500001,0"
d="M 65.000001,308.9056 L 59.5,308.9056"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
@ -5579,11 +5893,11 @@
<path
inkscape:connector-curvature="0"
id="path3526"
d="m 65.000001,28.9056 l -5.500001,0"
d="M 65.000001,28.9056 L 59.5,28.9056"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 65.000001,-11.157334 l -5.500001,0"
d="M 65.000001,-11.157334 L 59.5,-11.157334"
id="path3528"
inkscape:connector-curvature="0" />
<path
@ -5632,7 +5946,7 @@
sodipodi:nodetypes="cccccccccc"
inkscape:connector-curvature="0"
id="path10059"
d="m 91,148.5 l 0,20.5 l 0,20.5 l 44,0 l 0,-9.78125 l 8.5,-9.46875 l 0,-2.5 L 135,158.28125 L 135,148.5 z"
d="M 91,148.5 L 91,169 L 91,189.5 L 135,189.5 L 135,179.71875 L 143.5,170.25 L 143.5,167.75 L 135,158.28125 L 135,148.5 z"
style="fill:#000000;stroke:#ffffff" />
<rect
y="167.5"
@ -5651,7 +5965,7 @@
sodipodi:insensitive="true">
<path
style="fill:#bf00bf;fill-opacity:1;stroke:none"
d="m 135.5,200 l 0,10.09375 L 144,219.5 l 0,1.5 l 0,1.5 l -8.5,9.40625 L 135.5,242 l 13.5,0 l 0,-21 l 0,-21 l -13.5,0 z"
d="M 135.5,200 L 135.5,210.09375 L 144,219.5 L 144,221 L 144,222.5 L 135.5,231.90625 L 135.5,242 L 149,242 L 149,221 L 149,200 L 135.5,200 z"
id="speed-waypoint"
inkscape:connector-curvature="0"
inkscape:label="#path10065" />
@ -5667,27 +5981,27 @@
id="speed-text"
transform="translate(0,42)">
<path
d="m 97.728516,175.36133 c -0.609379,1e-5 -1.068362,0.30079 -1.376954,0.90234 c -0.304689,0.59766 -0.457033,1.49805 -0.457031,2.70117 c -2e-6,1.19923 0.152342,2.09962 0.457031,2.70118 c 0.308592,0.59765 0.767575,0.89648 1.376954,0.89648 c 0.613276,0 1.07226,-0.29883 1.376953,-0.89648 c 0.308588,-0.60156 0.462885,-1.50195 0.46289,-2.70118 c -5e-6,-1.20312 -0.154302,-2.10351 -0.46289,-2.70117 c -0.304693,-0.60155 -0.763677,-0.90233 -1.376953,-0.90234 m 0,-0.9375 c 0.980464,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.519524,0.77345 0.779294,1.89845 0.779294,3.375 c 0,1.47266 -0.25977,2.59766 -0.779294,3.375 C 99.457026,183.11328 98.70898,183.5 97.728516,183.5 c -0.980472,0 -1.730471,-0.38672 -2.25,-1.16016 c -0.515626,-0.77734 -0.773439,-1.90234 -0.773438,-3.375 c -10e-7,-1.47655 0.257812,-2.60155 0.773438,-3.375 c 0.519529,-0.77733 1.269528,-1.166 2.25,-1.16601"
d="M 97.728516,175.36133 C 97.119137,175.36134 96.660154,175.66212 96.351562,176.26367 C 96.046873,176.86133 95.894529,177.76172 95.894531,178.96484 C 95.894529,180.16407 96.046873,181.06446 96.351562,181.66602 C 96.660154,182.26367 97.119137,182.5625 97.728516,182.5625 C 98.341792,182.5625 98.800776,182.26367 99.105469,181.66602 C 99.414057,181.06446 99.568354,180.16407 99.568359,178.96484 C 99.568354,177.76172 99.414057,176.86133 99.105469,176.26367 C 98.800776,175.66212 98.341792,175.36134 97.728516,175.36133 M 97.728516,174.42383 C 98.70898,174.42384 99.457026,174.81251 99.972656,175.58984 C 100.49218,176.36329 100.75195,177.48829 100.75195,178.96484 C 100.75195,180.4375 100.49218,181.5625 99.972656,182.33984 C 99.457026,183.11328 98.70898,183.5 97.728516,183.5 C 96.748044,183.5 95.998045,183.11328 95.478516,182.33984 C 94.96289,181.5625 94.705077,180.4375 94.705078,178.96484 C 94.705077,177.48829 94.96289,176.36329 95.478516,175.58984 C 95.998045,174.81251 96.748044,174.42384 97.728516,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6215"
inkscape:connector-curvature="0" />
<path
d="m 105.36914,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 105.36914,175.36133 C 104.75976,175.36134 104.30078,175.66212 103.99219,176.26367 C 103.6875,176.86133 103.53515,177.76172 103.53516,178.96484 C 103.53515,180.16407 103.6875,181.06446 103.99219,181.66602 C 104.30078,182.26367 104.75976,182.5625 105.36914,182.5625 C 105.98242,182.5625 106.4414,182.26367 106.74609,181.66602 C 107.05468,181.06446 107.20898,180.16407 107.20898,178.96484 C 107.20898,177.76172 107.05468,176.86133 106.74609,176.26367 C 106.4414,175.66212 105.98242,175.36134 105.36914,175.36133 M 105.36914,174.42383 C 106.3496,174.42384 107.09765,174.81251 107.61328,175.58984 C 108.13281,176.36329 108.39257,177.48829 108.39258,178.96484 C 108.39257,180.4375 108.13281,181.5625 107.61328,182.33984 C 107.09765,183.11328 106.3496,183.5 105.36914,183.5 C 104.38867,183.5 103.63867,183.11328 103.11914,182.33984 C 102.60351,181.5625 102.3457,180.4375 102.3457,178.96484 C 102.3457,177.48829 102.60351,176.36329 103.11914,175.58984 C 103.63867,174.81251 104.38867,174.42384 105.36914,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6217"
inkscape:connector-curvature="0" />
<path
d="m 113.00977,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -1e-5,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73048,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51952,-0.77733 1.26952,-1.166 2.25,-1.16601"
d="M 113.00977,175.36133 C 112.40039,175.36134 111.9414,175.66212 111.63281,176.26367 C 111.32812,176.86133 111.17578,177.76172 111.17578,178.96484 C 111.17578,180.16407 111.32812,181.06446 111.63281,181.66602 C 111.9414,182.26367 112.40039,182.5625 113.00977,182.5625 C 113.62304,182.5625 114.08203,182.26367 114.38672,181.66602 C 114.69531,181.06446 114.8496,180.16407 114.84961,178.96484 C 114.8496,177.76172 114.69531,176.86133 114.38672,176.26367 C 114.08203,175.66212 113.62304,175.36134 113.00977,175.36133 M 113.00977,174.42383 C 113.99023,174.42384 114.73828,174.81251 115.25391,175.58984 C 115.77343,176.36329 116.0332,177.48829 116.0332,178.96484 C 116.0332,180.4375 115.77343,181.5625 115.25391,182.33984 C 114.73828,183.11328 113.99023,183.5 113.00977,183.5 C 112.02929,183.5 111.27929,183.11328 110.75977,182.33984 C 110.24414,181.5625 109.98633,180.4375 109.98633,178.96484 C 109.98633,177.48829 110.24414,176.36329 110.75977,175.58984 C 111.27929,174.81251 112.02929,174.42384 113.00977,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6220"
inkscape:connector-curvature="0" />
<path
d="m 120.65039,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 120.65039,175.36133 C 120.04101,175.36134 119.58203,175.66212 119.27344,176.26367 C 118.96875,176.86133 118.8164,177.76172 118.81641,178.96484 C 118.8164,180.16407 118.96875,181.06446 119.27344,181.66602 C 119.58203,182.26367 120.04101,182.5625 120.65039,182.5625 C 121.26367,182.5625 121.72265,182.26367 122.02734,181.66602 C 122.33593,181.06446 122.49023,180.16407 122.49023,178.96484 C 122.49023,177.76172 122.33593,176.86133 122.02734,176.26367 C 121.72265,175.66212 121.26367,175.36134 120.65039,175.36133 M 120.65039,174.42383 C 121.63085,174.42384 122.3789,174.81251 122.89453,175.58984 C 123.41406,176.36329 123.67382,177.48829 123.67383,178.96484 C 123.67382,180.4375 123.41406,181.5625 122.89453,182.33984 C 122.3789,183.11328 121.63085,183.5 120.65039,183.5 C 119.66992,183.5 118.91992,183.11328 118.40039,182.33984 C 117.88476,181.5625 117.62695,180.4375 117.62695,178.96484 C 117.62695,177.48829 117.88476,176.36329 118.40039,175.58984 C 118.91992,174.81251 119.66992,174.42384 120.65039,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6222"
inkscape:connector-curvature="0" />
<path
d="m 128.29102,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -1e-5,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73048,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51952,-0.77733 1.26952,-1.166 2.25,-1.16601"
d="M 128.29102,175.36133 C 127.68164,175.36134 127.22265,175.66212 126.91406,176.26367 C 126.60937,176.86133 126.45703,177.76172 126.45703,178.96484 C 126.45703,180.16407 126.60937,181.06446 126.91406,181.66602 C 127.22265,182.26367 127.68164,182.5625 128.29102,182.5625 C 128.90429,182.5625 129.36328,182.26367 129.66797,181.66602 C 129.97656,181.06446 130.13085,180.16407 130.13086,178.96484 C 130.13085,177.76172 129.97656,176.86133 129.66797,176.26367 C 129.36328,175.66212 128.90429,175.36134 128.29102,175.36133 M 128.29102,174.42383 C 129.27148,174.42384 130.01953,174.81251 130.53516,175.58984 C 131.05468,176.36329 131.31445,177.48829 131.31445,178.96484 C 131.31445,180.4375 131.05468,181.5625 130.53516,182.33984 C 130.01953,183.11328 129.27148,183.5 128.29102,183.5 C 127.31054,183.5 126.56054,183.11328 126.04102,182.33984 C 125.52539,181.5625 125.26758,180.4375 125.26758,178.96484 C 125.26758,177.48829 125.52539,176.36329 126.04102,175.58984 C 126.56054,174.81251 127.31054,174.42384 128.29102,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6224"
inkscape:connector-curvature="0" />
@ -5712,7 +6026,7 @@
id="altitude-unit"
transform="translate(0,42)">
<path
d="m 544.20056,290.91187 c 0.22461,-0.40365 0.49316,-0.7015 0.80567,-0.89356 c 0.31249,-0.19205 0.68033,-0.28808 1.10351,-0.28809 c 0.56965,1e-5 1.00911,0.20021 1.31836,0.60059 c 0.30924,0.39714 0.46386,0.96355 0.46387,1.69922 l 0,3.30078 l -0.90332,0 l 0,-3.27148 c -10e-6,-0.52409 -0.0928,-0.91309 -0.27832,-1.167 c -0.18556,-0.2539 -0.46876,-0.38085 -0.84961,-0.38086 c -0.4655,1e-5 -0.83334,0.15463 -1.10352,0.46387 c -0.27019,0.30925 -0.40528,0.7308 -0.40527,1.26465 l 0,3.09082 l -0.90332,0 l 0,-3.27148 c -10e-6,-0.52734 -0.0928,-0.91634 -0.27832,-1.167 c -0.18555,-0.2539 -0.47201,-0.38085 -0.85938,-0.38086 c -0.45898,1e-5 -0.82357,0.15626 -1.09375,0.46875 c -0.27018,0.30925 -0.40527,0.72917 -0.40527,1.25977 l 0,3.09082 l -0.90332,0 l 0,-5.46875 l 0.90332,0 l 0,0.84961 c 0.20508,-0.33528 0.45084,-0.58268 0.7373,-0.74219 c 0.28646,-0.1595 0.62663,-0.23925 1.02051,-0.23926 c 0.39713,1e-5 0.73405,0.10092 1.01074,0.30274 c 0.27995,0.20183 0.48665,0.4948 0.62012,0.87891"
d="M 544.20056,290.91187 C 544.42517,290.50822 544.69372,290.21037 545.00623,290.01831 C 545.31872,289.82626 545.68656,289.73023 546.10974,289.73022 C 546.67939,289.73023 547.11885,289.93043 547.4281,290.33081 C 547.73734,290.72795 547.89196,291.29436 547.89197,292.03003 L 547.89197,295.33081 L 546.98865,295.33081 L 546.98865,292.05933 C 546.98864,291.53524 546.89585,291.14624 546.71033,290.89233 C 546.52477,290.63843 546.24157,290.51148 545.86072,290.51147 C 545.39522,290.51148 545.02738,290.6661 544.7572,290.97534 C 544.48701,291.28459 544.35192,291.70614 544.35193,292.23999 L 544.35193,295.33081 L 543.44861,295.33081 L 543.44861,292.05933 C 543.4486,291.53199 543.35581,291.14299 543.17029,290.89233 C 542.98474,290.63843 542.69828,290.51148 542.31091,290.51147 C 541.85193,290.51148 541.48734,290.66773 541.21716,290.98022 C 540.94698,291.28947 540.81189,291.70939 540.81189,292.23999 L 540.81189,295.33081 L 539.90857,295.33081 L 539.90857,289.86206 L 540.81189,289.86206 L 540.81189,290.71167 C 541.01697,290.37639 541.26273,290.12899 541.54919,289.96948 C 541.83565,289.80998 542.17582,289.73023 542.5697,289.73022 C 542.96683,289.73023 543.30375,289.83114 543.58044,290.03296 C 543.86039,290.23479 544.06709,290.52776 544.20056,290.91187"
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
id="path6205"
inkscape:connector-curvature="0" />
@ -5760,23 +6074,23 @@
style="display:inline">
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,148.96853 l -5.500001,0"
d="M 64.99999,148.96853 L 59.499989,148.96853"
id="path9774"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path9776"
d="m 64.99999,108.9056 l -5.500001,0"
d="M 64.99999,108.9056 L 59.499989,108.9056"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,68.842666 l -5.500001,0"
d="M 64.99999,68.842666 L 59.499989,68.842666"
id="path9778"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="altitude1"
d="m 64.99999,129 l -13.000001,0"
d="M 64.99999,129 L 51.999989,129"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:label="#path9780" />
<path
@ -5788,61 +6102,61 @@
<path
inkscape:connector-curvature="0"
id="path9796"
d="m 64.99999,268.84267 l -5.500001,0"
d="M 64.99999,268.84267 L 59.499989,268.84267"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path9802"
d="m 64.99999,228.9056 l -5.500001,0"
d="M 64.99999,228.9056 L 59.499989,228.9056"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,188.84267 l -5.500001,0"
d="M 64.99999,188.84267 L 59.499989,188.84267"
id="path9804"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="altitude-2"
d="m 64.99999,249 l -13.000001,0"
d="M 64.99999,249 L 51.999989,249"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:label="#path9806" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,209 l -13.000001,0"
d="M 64.99999,209 L 51.999989,209"
id="altitude-1"
inkscape:connector-curvature="0"
inkscape:label="#path9808" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,348.84267 l -5.500001,0"
d="M 64.99999,348.84267 L 59.499989,348.84267"
id="path3488"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,308.9056 l -5.500001,0"
d="M 64.99999,308.9056 L 59.499989,308.9056"
id="path3490"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,329 l -13.000001,0"
d="M 64.99999,329 L 51.999989,329"
id="altitude-4"
inkscape:connector-curvature="0"
inkscape:label="#path3492" />
<path
inkscape:connector-curvature="0"
id="altitude-3"
d="m 64.99999,289 l -13.000001,0"
d="M 64.99999,289 L 51.999989,289"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:label="#path3494" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,28.9056 l -5.500001,0"
d="M 64.99999,28.9056 L 59.499989,28.9056"
id="path3496"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3498"
d="m 64.99999,-11.157334 l -5.500001,0"
d="M 64.99999,-11.157334 L 59.499989,-11.157334"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -5859,20 +6173,20 @@
<path
inkscape:connector-curvature="0"
id="altitude0"
d="m 64.99999,169 l -13.000001,0"
d="M 64.99999,169 L 51.999989,169"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:label="#path3577" />
<path
inkscape:label="#path3502"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.99999,-31 l -13.000001,0"
d="M 64.99999,-31 L 51.999989,-31"
id="altitude5"
inkscape:connector-curvature="0" />
<path
inkscape:label="#path3492"
inkscape:connector-curvature="0"
id="altitude-5"
d="m 64.99999,369 l -13.000001,0"
d="M 64.99999,369 L 51.999989,369"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
@ -5892,7 +6206,7 @@
inkscape:connector-curvature="0"
id="path10043"
transform="translate(0,4)"
d="m 506.5,144.4375 l 0,12.75 l -9.525,6.5625 l 0,2.5 l 9.525,6.5625 l 0,12.75 l 43,0 L 549.5,165 l 0,-20.5625 z"
d="M 506.5,144.4375 L 506.5,157.1875 L 496.975,163.75 L 496.975,166.25 L 506.5,172.8125 L 506.5,185.5625 L 549.5,185.5625 L 549.5,165 L 549.5,144.4375 z"
style="fill:#000000;stroke:#ffffff" />
<rect
y="167.5"
@ -5911,7 +6225,7 @@
sodipodi:insensitive="true">
<path
style="fill:#bf00bf;fill-opacity:1;stroke:none"
d="m 491,200 l 0,21 l 0,21 l 15,0 l 0,-13.0625 L 496.5625,222.5 l 0,-1.5 l 0,-1.5 L 506,213.0625 L 506,200 z"
d="M 491,200 L 491,221 L 491,242 L 506,242 L 506,228.9375 L 496.5625,222.5 L 496.5625,221 L 496.5625,219.5 L 506,213.0625 L 506,200 z"
id="altitude-waypoint"
inkscape:label="#path10053"
inkscape:connector-curvature="0"
@ -5928,27 +6242,27 @@
id="altitude-text"
transform="translate(0,42)">
<path
d="m 512.28516,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
d="M 512.28516,175.36133 C 511.67578,175.36134 511.21679,175.66212 510.9082,176.26367 C 510.60351,176.86133 510.45117,177.76172 510.45117,178.96484 C 510.45117,180.16407 510.60351,181.06446 510.9082,181.66602 C 511.21679,182.26367 511.67578,182.5625 512.28516,182.5625 C 512.89843,182.5625 513.35742,182.26367 513.66211,181.66602 C 513.9707,181.06446 514.12499,180.16407 514.125,178.96484 C 514.12499,177.76172 513.9707,176.86133 513.66211,176.26367 C 513.35742,175.66212 512.89843,175.36134 512.28516,175.36133 M 512.28516,174.42383 C 513.26562,174.42384 514.01367,174.81251 514.5293,175.58984 C 515.04882,176.36329 515.30859,177.48829 515.30859,178.96484 C 515.30859,180.4375 515.04882,181.5625 514.5293,182.33984 C 514.01367,183.11328 513.26562,183.5 512.28516,183.5 C 511.30468,183.5 510.55469,183.11328 510.03516,182.33984 C 509.51953,181.5625 509.26172,180.4375 509.26172,178.96484 C 509.26172,177.48829 509.51953,176.36329 510.03516,175.58984 C 510.55469,174.81251 511.30468,174.42384 512.28516,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6194"
inkscape:connector-curvature="0" />
<path
d="m 519.92578,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98047,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26367,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51562,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25782,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 519.92578,175.36133 C 519.3164,175.36134 518.85742,175.66212 518.54883,176.26367 C 518.24414,176.86133 518.09179,177.76172 518.0918,178.96484 C 518.09179,180.16407 518.24414,181.06446 518.54883,181.66602 C 518.85742,182.26367 519.3164,182.5625 519.92578,182.5625 C 520.53906,182.5625 520.99804,182.26367 521.30273,181.66602 C 521.61132,181.06446 521.76562,180.16407 521.76562,178.96484 C 521.76562,177.76172 521.61132,176.86133 521.30273,176.26367 C 520.99804,175.66212 520.53906,175.36134 519.92578,175.36133 M 519.92578,174.42383 C 520.90625,174.42384 521.65429,174.81251 522.16992,175.58984 C 522.68945,176.36329 522.94921,177.48829 522.94922,178.96484 C 522.94921,180.4375 522.68945,181.5625 522.16992,182.33984 C 521.65429,183.11328 520.90625,183.5 519.92578,183.5 C 518.94531,183.5 518.19531,183.11328 517.67578,182.33984 C 517.16016,181.5625 516.90234,180.4375 516.90234,178.96484 C 516.90234,177.48829 517.16016,176.36329 517.67578,175.58984 C 518.19531,174.81251 518.94531,174.42384 519.92578,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6196"
inkscape:connector-curvature="0" />
<path
d="m 527.56641,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
d="M 527.56641,175.36133 C 526.95703,175.36134 526.49804,175.66212 526.18945,176.26367 C 525.88476,176.86133 525.73242,177.76172 525.73242,178.96484 C 525.73242,180.16407 525.88476,181.06446 526.18945,181.66602 C 526.49804,182.26367 526.95703,182.5625 527.56641,182.5625 C 528.17968,182.5625 528.63867,182.26367 528.94336,181.66602 C 529.25195,181.06446 529.40624,180.16407 529.40625,178.96484 C 529.40624,177.76172 529.25195,176.86133 528.94336,176.26367 C 528.63867,175.66212 528.17968,175.36134 527.56641,175.36133 M 527.56641,174.42383 C 528.54687,174.42384 529.29492,174.81251 529.81055,175.58984 C 530.33007,176.36329 530.58984,177.48829 530.58984,178.96484 C 530.58984,180.4375 530.33007,181.5625 529.81055,182.33984 C 529.29492,183.11328 528.54687,183.5 527.56641,183.5 C 526.58593,183.5 525.83594,183.11328 525.31641,182.33984 C 524.80078,181.5625 524.54297,180.4375 524.54297,178.96484 C 524.54297,177.48829 524.80078,176.36329 525.31641,175.58984 C 525.83594,174.81251 526.58593,174.42384 527.56641,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6198"
inkscape:connector-curvature="0" />
<path
d="m 535.20703,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98047,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26367,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51562,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25782,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 535.20703,175.36133 C 534.59765,175.36134 534.13867,175.66212 533.83008,176.26367 C 533.52539,176.86133 533.37304,177.76172 533.37305,178.96484 C 533.37304,180.16407 533.52539,181.06446 533.83008,181.66602 C 534.13867,182.26367 534.59765,182.5625 535.20703,182.5625 C 535.82031,182.5625 536.27929,182.26367 536.58398,181.66602 C 536.89257,181.06446 537.04687,180.16407 537.04687,178.96484 C 537.04687,177.76172 536.89257,176.86133 536.58398,176.26367 C 536.27929,175.66212 535.82031,175.36134 535.20703,175.36133 M 535.20703,174.42383 C 536.1875,174.42384 536.93554,174.81251 537.45117,175.58984 C 537.9707,176.36329 538.23046,177.48829 538.23047,178.96484 C 538.23046,180.4375 537.9707,181.5625 537.45117,182.33984 C 536.93554,183.11328 536.1875,183.5 535.20703,183.5 C 534.22656,183.5 533.47656,183.11328 532.95703,182.33984 C 532.44141,181.5625 532.18359,180.4375 532.18359,178.96484 C 532.18359,177.48829 532.44141,176.36329 532.95703,175.58984 C 533.47656,174.81251 534.22656,174.42384 535.20703,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6200"
inkscape:connector-curvature="0" />
<path
d="m 542.84766,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
d="M 542.84766,175.36133 C 542.23828,175.36134 541.77929,175.66212 541.4707,176.26367 C 541.16601,176.86133 541.01367,177.76172 541.01367,178.96484 C 541.01367,180.16407 541.16601,181.06446 541.4707,181.66602 C 541.77929,182.26367 542.23828,182.5625 542.84766,182.5625 C 543.46093,182.5625 543.91992,182.26367 544.22461,181.66602 C 544.5332,181.06446 544.68749,180.16407 544.6875,178.96484 C 544.68749,177.76172 544.5332,176.86133 544.22461,176.26367 C 543.91992,175.66212 543.46093,175.36134 542.84766,175.36133 M 542.84766,174.42383 C 543.82812,174.42384 544.57617,174.81251 545.0918,175.58984 C 545.61132,176.36329 545.87109,177.48829 545.87109,178.96484 C 545.87109,180.4375 545.61132,181.5625 545.0918,182.33984 C 544.57617,183.11328 543.82812,183.5 542.84766,183.5 C 541.86718,183.5 541.11719,183.11328 540.59766,182.33984 C 540.08203,181.5625 539.82422,180.4375 539.82422,178.96484 C 539.82422,177.48829 540.08203,176.36329 540.59766,175.58984 C 541.11719,174.81251 541.86718,174.42384 542.84766,174.42383"
style="font-size:12px;fill:#ffffff"
id="path6202"
inkscape:connector-curvature="0" />
@ -5969,7 +6283,7 @@
sodipodi:insensitive="true">
<path
style="fill:#000000;fill-opacity:0.25098039;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 608.03211,91.918678 C 647.68617,91.918678 918,217 918,217 c 0,0 -269.64496,124.91868 -309.96789,124.91868 c -40.32293,0 -50.00001,-61.5142 -50.00001,-125 c 0,-63.4858 10.34595,-125.000002 50.00001,-125.000002 z"
d="M 608.03211,91.918678 C 647.68617,91.918678 918,217 918,217 C 918,217 648.35504,341.91868 608.03211,341.91868 C 567.70918,341.91868 558.0321,280.40448 558.0321,216.91868 C 558.0321,153.43288 568.37805,91.918678 608.03211,91.918678 z"
id="vsi-window"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zczzz" />
@ -5997,11 +6311,11 @@
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0"
id="rect4893"
d="m 593.03211,212.93018 l 85.3661,0 l 0,7.977 l -85.3661,0 l -4,-3.9885 z"
d="M 593.03211,212.93018 L 678.39821,212.93018 L 678.39821,220.90718 L 593.03211,220.90718 L 589.03211,216.91868 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#111413;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linejoin:round;stroke-opacity:1"
d="m 593.85791,214.81327 l 52.5403,0 l 0,4.21046 l -52.5403,0 l -1.9558,-2.10505 z"
d="M 593.85791,214.81327 L 646.39821,214.81327 L 646.39821,219.02373 L 593.85791,219.02373 L 591.90211,216.91868 z"
id="path4896"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
@ -6026,7 +6340,7 @@
sodipodi:insensitive="true">
<path
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 576.54916,211.75 l 6.95084,0.11285 l -0.2329,10.18229 L 576.5,222.25 z"
d="M 576.54916,211.75 L 583.5,211.86285 L 583.2671,222.04514 L 576.5,222.25 z"
id="vsi-waypoint"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
@ -6042,7 +6356,7 @@
transform="translate(-18,0)">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 607.03209,217 l -13,0"
d="M 607.03209,217 L 594.03209,217"
id="vsi-centerline"
inkscape:connector-curvature="0" />
<path
@ -6053,31 +6367,31 @@
sodipodi:cy="205"
sodipodi:rx="46.352551"
sodipodi:ry="75"
d="M 582.79539,230.65151 C 579.06819,214.08219 579.06819,195.91781 582.79539,179.34849"
d="M 582.79539,230.65151 A 46.352551,75 0 0 1 582.79539,179.34849"
transform="matrix(6.4484046,0,0,3.9853333,-3146.0425,-599.99333)"
sodipodi:start="2.7925268"
sodipodi:end="3.4906585"
sodipodi:open="true" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 611.37496,167.3539 l -12.8025,-2.25741"
d="M 611.37496,167.3539 L 598.57246,165.09649"
id="path4652"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 599.81128,204.20205 l -5.49476,-0.2399"
d="M 599.81128,204.20205 L 594.31652,203.96215"
id="path4654"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 602.04172,178.70357 l -5.45294,-0.71787"
d="M 602.04172,178.70357 L 596.58878,177.9857"
id="path4658"
inkscape:connector-curvature="0"
inkscape:transform-center-x="-3.6818999"
inkscape:transform-center-y="1.4016049" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 608.11978,192.08218 l -12.95052,-1.13304"
d="M 608.11978,192.08218 L 595.16926,190.94914"
id="path4660"
inkscape:connector-curvature="0" />
<path
@ -6085,41 +6399,41 @@
inkscape:transform-center-x="-3.5457349"
inkscape:connector-curvature="0"
id="path4662"
d="m 606.50354,153.42132 l -5.36963,-1.19039"
d="M 606.50354,153.42132 L 601.13391,152.23093"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4666"
d="m 616.46289,142.9203 l -12.55702,-3.36463"
d="M 616.46289,142.9203 L 603.90587,139.55567"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 613.11138,128.77283 l -5.24545,-1.65386"
d="M 613.11138,128.77283 L 607.86593,127.11897"
id="path4668"
inkscape:connector-curvature="0"
inkscape:transform-center-x="-3.3825849"
inkscape:transform-center-y="2.0196599" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 624.66996,119.36055 l -12.21598,-4.44623"
d="M 624.66996,119.36055 L 612.45398,114.91432"
id="path4672"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4698"
d="m 610.97895,266.79024 l -12.8025,2.25741"
d="M 610.97895,266.79024 L 598.17645,269.04765"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4700"
d="m 599.41527,229.94209 l -5.49476,0.2399"
d="M 599.41527,229.94209 L 593.92051,230.18199"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:transform-center-y="-1.4016049"
inkscape:transform-center-x="-3.6818999"
inkscape:connector-curvature="0"
id="path4702"
d="m 601.64571,255.44057 l -5.45294,0.71787"
d="M 601.64571,255.44057 L 596.19277,256.15844"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
@ -6128,14 +6442,14 @@
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 606.10753,280.72282 l -5.36963,1.19039"
d="M 606.10753,280.72282 L 600.7379,281.91321"
id="path4706"
inkscape:connector-curvature="0"
inkscape:transform-center-x="-3.5457349"
inkscape:transform-center-y="-1.7171649" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 616.06688,291.22384 l -12.55702,3.36463"
d="M 616.06688,291.22384 L 603.50986,294.58847"
id="path4708"
inkscape:connector-curvature="0" />
<path
@ -6143,12 +6457,12 @@
inkscape:transform-center-x="-3.3825849"
inkscape:connector-curvature="0"
id="path4710"
d="m 612.71537,305.37131 l -5.24545,1.65386"
d="M 612.71537,305.37131 L 607.46992,307.02517"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4712"
d="m 624.27395,314.78359 l -12.21598,4.44623"
d="M 624.27395,314.78359 L 612.05797,319.22982"
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
id="g4832"
@ -6157,17 +6471,17 @@
<path
inkscape:connector-curvature="0"
id="path5115"
d="m 603.16431,337.9502 l 2.28271,-8.14258 l 0.77344,0 l -2.27734,8.14258 l -0.77881,0"
d="M 603.16431,337.9502 L 605.44702,329.80762 L 606.22046,329.80762 L 603.94312,337.9502 L 603.16431,337.9502"
style="fill:#ffffff;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path5117"
d="m 606.55347,336.11328 l 0.95605,-0.15039 c 0.0537,0.38314 0.20231,0.67676 0.4458,0.88086 c 0.24707,0.2041 0.59082,0.30615 1.03125,0.30615 c 0.44401,0 0.77344,-0.0895 0.98828,-0.26855 c 0.21484,-0.18262 0.32227,-0.39567 0.32227,-0.63916 c 0,-0.21843 -0.0949,-0.3903 -0.28467,-0.51563 c -0.13249,-0.0859 -0.46192,-0.19514 -0.98828,-0.32763 c -0.70899,-0.17904 -1.20134,-0.33301 -1.47705,-0.46192 c -0.27214,-0.13248 -0.47982,-0.31331 -0.62305,-0.54248 c -0.13965,-0.23274 -0.20947,-0.48876 -0.20947,-0.76807 c 0,-0.25422 0.0573,-0.48876 0.17187,-0.70361 c 0.11817,-0.21842 0.27751,-0.39924 0.47803,-0.54248 c 0.15039,-0.111 0.35449,-0.20409 0.61231,-0.2793 c 0.26139,-0.0788 0.54068,-0.11815 0.83789,-0.11816 c 0.44759,10e-6 0.83967,0.0645 1.17627,0.19336 c 0.34016,0.12891 0.59081,0.30437 0.75195,0.52637 c 0.16113,0.21843 0.27213,0.51205 0.33301,0.88086 l -0.94531,0.1289 c -0.043,-0.29361 -0.1683,-0.52278 -0.37598,-0.6875 c -0.20411,-0.16471 -0.49414,-0.24706 -0.87012,-0.24707 c -0.44401,1e-5 -0.76091,0.0734 -0.95068,0.22022 c -0.18978,0.14681 -0.28467,0.31869 -0.28467,0.51562 c 0,0.12533 0.0394,0.23812 0.11816,0.33838 c 0.0788,0.10385 0.20231,0.18978 0.37061,0.25781 c 0.0967,0.0358 0.38134,0.11817 0.854,0.24707 c 0.68392,0.18262 1.16016,0.33301 1.42871,0.45118 c 0.27214,0.11458 0.48519,0.28288 0.63916,0.50488 c 0.15397,0.22201 0.23096,0.49772 0.23096,0.82715 c 0,0.32226 -0.0949,0.62663 -0.28467,0.91308 c -0.1862,0.28288 -0.45654,0.5031 -0.81103,0.66065 c -0.3545,0.15397 -0.75554,0.23095 -1.20313,0.23095 c -0.74121,0 -1.30696,-0.15397 -1.69726,-0.46191 c -0.38672,-0.30794 -0.63379,-0.76448 -0.74121,-1.36963"
d="M 606.55347,336.11328 L 607.50952,335.96289 C 607.56322,336.34603 607.71183,336.63965 607.95532,336.84375 C 608.20239,337.04785 608.54614,337.1499 608.98657,337.1499 C 609.43058,337.1499 609.76001,337.0604 609.97485,336.88135 C 610.18969,336.69873 610.29712,336.48568 610.29712,336.24219 C 610.29712,336.02376 610.20222,335.85189 610.01245,335.72656 C 609.87996,335.64066 609.55053,335.53142 609.02417,335.39893 C 608.31518,335.21989 607.82283,335.06592 607.54712,334.93701 C 607.27498,334.80453 607.0673,334.6237 606.92407,334.39453 C 606.78442,334.16179 606.7146,333.90577 606.7146,333.62646 C 606.7146,333.37224 606.7719,333.1377 606.88647,332.92285 C 607.00464,332.70443 607.16398,332.52361 607.3645,332.38037 C 607.51489,332.26937 607.71899,332.17628 607.97681,332.10107 C 608.2382,332.02227 608.51749,331.98292 608.8147,331.98291 C 609.26229,331.98292 609.65437,332.04741 609.99097,332.17627 C 610.33113,332.30518 610.58178,332.48064 610.74292,332.70264 C 610.90405,332.92107 611.01505,333.21469 611.07593,333.5835 L 610.13062,333.7124 C 610.08762,333.41879 609.96232,333.18962 609.75464,333.0249 C 609.55053,332.86019 609.2605,332.77784 608.88452,332.77783 C 608.44051,332.77784 608.12361,332.85123 607.93384,332.99805 C 607.74406,333.14486 607.64917,333.31674 607.64917,333.51367 C 607.64917,333.639 607.68857,333.75179 607.76733,333.85205 C 607.84613,333.9559 607.96964,334.04183 608.13794,334.10986 C 608.23464,334.14566 608.51928,334.22803 608.99194,334.35693 C 609.67586,334.53955 610.1521,334.68994 610.42065,334.80811 C 610.69279,334.92269 610.90584,335.09099 611.05981,335.31299 C 611.21378,335.535 611.29077,335.81071 611.29077,336.14014 C 611.29077,336.4624 611.19587,336.76677 611.0061,337.05322 C 610.8199,337.3361 610.54956,337.55632 610.19507,337.71387 C 609.84057,337.86784 609.43953,337.94482 608.99194,337.94482 C 608.25073,337.94482 607.68498,337.79085 607.29468,337.48291 C 606.90796,337.17497 606.66089,336.71843 606.55347,336.11328"
style="fill:#ffffff;stroke:none" />
<path
inkscape:connector-curvature="0"
id="path5113"
d="m 594.69409,337.81592 l 0,-5.7041 l 0.86475,0 l 0,0.80029 c 0.17903,-0.27929 0.41715,-0.50309 0.71435,-0.67139 c 0.2972,-0.17187 0.63558,-0.2578 1.01514,-0.25781 c 0.42252,10e-6 0.76806,0.0877 1.03662,0.26318 c 0.27213,0.17546 0.4637,0.42074 0.57471,0.73584 c 0.45116,-0.66601 1.0384,-0.99901 1.76172,-0.99902 c 0.56574,10e-6 1.0008,0.15756 1.30517,0.47266 c 0.30436,0.31152 0.45654,0.79313 0.45655,1.44482 l 0,3.91553 l -0.96143,0 l 0,-3.59326 c -10e-6,-0.38672 -0.0322,-0.66422 -0.0967,-0.83252 c -0.0609,-0.17187 -0.17367,-0.30973 -0.33838,-0.41358 c -0.16472,-0.10383 -0.35808,-0.15575 -0.58008,-0.15576 c -0.40104,10e-6 -0.73405,0.13428 -0.99902,0.40283 c -0.26498,0.26498 -0.39747,0.69109 -0.39746,1.27832 l 0,3.31397 l -0.9668,0 l 0,-3.70606 c 0,-0.42968 -0.0788,-0.75195 -0.23633,-0.96679 c -0.15755,-0.21484 -0.41536,-0.32226 -0.77343,-0.32227 c -0.27214,10e-6 -0.52458,0.0716 -0.75733,0.21484 c -0.22917,0.14324 -0.39567,0.35271 -0.49951,0.62842 c -0.10384,0.27572 -0.15576,0.67318 -0.15576,1.19239 l 0,2.95947 l -0.9668,0"
d="M 594.69409,337.81592 L 594.69409,332.11182 L 595.55884,332.11182 L 595.55884,332.91211 C 595.73787,332.63282 595.97599,332.40902 596.27319,332.24072 C 596.57039,332.06885 596.90877,331.98292 597.28833,331.98291 C 597.71085,331.98292 598.05639,332.07061 598.32495,332.24609 C 598.59708,332.42155 598.78865,332.66683 598.89966,332.98193 C 599.35082,332.31592 599.93806,331.98292 600.66138,331.98291 C 601.22712,331.98292 601.66218,332.14047 601.96655,332.45557 C 602.27091,332.76709 602.42309,333.2487 602.4231,333.90039 L 602.4231,337.81592 L 601.46167,337.81592 L 601.46167,334.22266 C 601.46166,333.83594 601.42947,333.55844 601.36497,333.39014 C 601.30407,333.21827 601.1913,333.08041 601.02659,332.97656 C 600.86187,332.87273 600.66851,332.82081 600.44651,332.8208 C 600.04547,332.82081 599.71246,332.95508 599.44749,333.22363 C 599.18251,333.48861 599.05002,333.91472 599.05003,334.50195 L 599.05003,337.81592 L 598.08323,337.81592 L 598.08323,334.10986 C 598.08323,333.68018 598.00443,333.35791 597.8469,333.14307 C 597.68935,332.92823 597.43154,332.82081 597.07347,332.8208 C 596.80133,332.82081 596.54889,332.8924 596.31614,333.03564 C 596.08697,333.17888 595.92047,333.38835 595.81663,333.66406 C 595.71279,333.93978 595.66087,334.33724 595.66087,334.85645 L 595.66087,337.81592 L 594.69407,337.81592"
style="fill:#ffffff;stroke:none" />
</g>
<g
@ -6178,7 +6492,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5083">
<path
d="m 590.70471,-92.619102 l 0,-2.399415 l -4.34765,0 l 0,-1.127929 l 4.57324,-6.494144 l 1.00488,0 l 0,6.494144 l 1.35352,0 l 0,1.127929 l -1.35352,0 l 0,2.399415 l -1.23047,0 m 0,-3.527344 l 0,-4.518554 l -3.13769,4.518554 l 3.13769,0"
d="M 590.70471,-92.619102 L 590.70471,-95.018517 L 586.35706,-95.018517 L 586.35706,-96.146446 L 590.9303,-102.64059 L 591.93518,-102.64059 L 591.93518,-96.146446 L 593.2887,-96.146446 L 593.2887,-95.018517 L 591.93518,-95.018517 L 591.93518,-92.619102 L 590.70471,-92.619102 M 590.70471,-96.146446 L 590.70471,-100.665 L 587.56702,-96.146446 L 590.70471,-96.146446"
id="path5162"
inkscape:connector-curvature="0" />
</g>
@ -6187,7 +6501,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5087">
<path
d="m 590.11182,-15.845105 l 1.23047,-0.164063 c 0.14127,0.697268 0.38053,1.200848 0.71777,1.510743 c 0.34179,0.305339 0.75651,0.458008 1.24414,0.458007 c 0.57877,1e-6 1.0664,-0.200519 1.46289,-0.601562 c 0.40104,-0.40104 0.60156,-0.897784 0.60156,-1.490235 c 0,-0.5651 -0.18457,-1.029944 -0.55371,-1.394531 c -0.36914,-0.369136 -0.83854,-0.553706 -1.4082,-0.553711 c -0.23243,5e-6 -0.52181,0.04558 -0.86817,0.136719 l 0.13672,-1.080078 c 0.082,0.0091 0.14811,0.01368 0.19825,0.01367 c 0.52408,6e-6 0.99576,-0.136713 1.41503,-0.410156 c 0.41927,-0.273431 0.62891,-0.694981 0.62891,-1.264649 c 0,-0.451164 -0.15267,-0.824861 -0.45801,-1.121094 c -0.30534,-0.296215 -0.69955,-0.444327 -1.18261,-0.444336 c -0.47852,9e-6 -0.87729,0.1504 -1.19629,0.451172 c -0.31902,0.30079 -0.52409,0.751961 -0.61524,1.353516 l -1.23047,-0.21875 c 0.15039,-0.824862 0.49219,-1.462882 1.02539,-1.914063 c 0.5332,-0.455719 1.19629,-0.683583 1.98926,-0.683593 c 0.54687,10e-6 1.05045,0.118499 1.51074,0.355468 c 0.46028,0.232432 0.8112,0.551442 1.05274,0.957032 c 0.24609,0.405607 0.36913,0.836271 0.36914,1.291992 c -10e-6,0.43295 -0.11622,0.827155 -0.34863,1.182617 c -0.23243,0.355475 -0.57651,0.638026 -1.03223,0.847656 c 0.59244,0.136724 1.05273,0.421555 1.38086,0.854492 c 0.32812,0.42839 0.49218,0.96615 0.49219,1.613282 c -10e-6,0.875002 -0.31902,1.61784 -0.95703,2.228515 c -0.63803,0.60612 -1.44467,0.90918 -2.41993,0.90918 c -0.87956,0 -1.611,-0.262044 -2.19433,-0.786133 c -0.57878,-0.524087 -0.90918,-1.203123 -0.99121,-2.037109"
d="M 590.11182,-15.845105 L 591.34229,-16.009168 C 591.48356,-15.3119 591.72282,-14.80832 592.06006,-14.498425 C 592.40185,-14.193086 592.81657,-14.040417 593.3042,-14.040418 C 593.88297,-14.040417 594.3706,-14.240937 594.76709,-14.64198 C 595.16813,-15.04302 595.36865,-15.539764 595.36865,-16.132215 C 595.36865,-16.697315 595.18408,-17.162159 594.81494,-17.526746 C 594.4458,-17.895882 593.9764,-18.080452 593.40674,-18.080457 C 593.17431,-18.080452 592.88493,-18.034877 592.53857,-17.943738 L 592.67529,-19.023816 C 592.75729,-19.014716 592.8234,-19.010136 592.87354,-19.010146 C 593.39762,-19.01014 593.8693,-19.146859 594.28857,-19.420302 C 594.70784,-19.693733 594.91748,-20.115283 594.91748,-20.684951 C 594.91748,-21.136115 594.76481,-21.509812 594.45947,-21.806045 C 594.15413,-22.10226 593.75992,-22.250372 593.27686,-22.250381 C 592.79834,-22.250372 592.39957,-22.099981 592.08057,-21.799209 C 591.76155,-21.498419 591.55648,-21.047248 591.46533,-20.445693 L 590.23486,-20.664443 C 590.38525,-21.489305 590.72705,-22.127325 591.26025,-22.578506 C 591.79345,-23.034225 592.45654,-23.262089 593.24951,-23.262099 C 593.79638,-23.262089 594.29996,-23.1436 594.76025,-22.906631 C 595.22053,-22.674199 595.57145,-22.355189 595.81299,-21.949599 C 596.05908,-21.543992 596.18212,-21.113328 596.18213,-20.657607 C 596.18212,-20.224657 596.06591,-19.830452 595.8335,-19.47499 C 595.60107,-19.119515 595.25699,-18.836964 594.80127,-18.627334 C 595.39371,-18.49061 595.854,-18.205779 596.18213,-17.772842 C 596.51025,-17.344452 596.67431,-16.806692 596.67432,-16.15956 C 596.67431,-15.284558 596.3553,-14.54172 595.71729,-13.931045 C 595.07926,-13.324925 594.27262,-13.021865 593.29736,-13.021865 C 592.4178,-13.021865 591.68636,-13.283909 591.10303,-13.807998 C 590.52425,-14.332085 590.19385,-15.011121 590.11182,-15.845107"
id="path5165"
inkscape:connector-curvature="0" />
</g>
@ -6196,7 +6510,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5099">
<path
d="m 594.85211,64.210739 l 0,1.182617 l -6.62402,0 c -0.009,-0.296223 0.0387,-0.581054 0.14355,-0.854492 c 0.16862,-0.45117 0.4375,-0.895506 0.80664,-1.333008 c 0.3737,-0.437497 0.91146,-0.943356 1.61328,-1.517578 c 1.08919,-0.893224 1.8252,-1.599604 2.20801,-2.11914 c 0.38281,-0.524083 0.57422,-1.018548 0.57422,-1.483399 c 0,-0.487622 -0.17546,-0.897778 -0.52637,-1.230469 c -0.34635,-0.33723 -0.7998,-0.50585 -1.36035,-0.505859 c -0.59245,9e-6 -1.06641,0.177743 -1.42187,0.533203 c -0.35547,0.355477 -0.53549,0.847664 -0.54004,1.476563 l -1.26465,-0.129883 c 0.0866,-0.943351 0.41243,-1.661124 0.97754,-2.15332 c 0.5651,-0.496735 1.32389,-0.745108 2.27637,-0.745118 c 0.96158,1e-5 1.72265,0.266612 2.2832,0.799805 c 0.56054,0.533212 0.84081,1.194018 0.84082,1.982422 c -10e-6,0.401048 -0.082,0.795254 -0.24609,1.182617 c -0.16407,0.387376 -0.43751,0.795253 -0.82032,1.223633 c -0.37826,0.42839 -1.00944,1.01628 -1.89355,1.763672 c -0.73829,0.619794 -1.21224,1.041343 -1.42188,1.264648 c -0.20963,0.218752 -0.38281,0.43978 -0.51953,0.663086 l 4.91504,0"
d="M 594.85211,64.210739 L 594.85211,65.393356 L 588.22809,65.393356 C 588.21909,65.097133 588.26679,64.812302 588.37164,64.538864 C 588.54026,64.087694 588.80914,63.643358 589.17828,63.205856 C 589.55198,62.768359 590.08974,62.2625 590.79156,61.688278 C 591.88075,60.795054 592.61676,60.088674 592.99957,59.569138 C 593.38238,59.045055 593.57379,58.55059 593.57379,58.085739 C 593.57379,57.598117 593.39833,57.187961 593.04742,56.85527 C 592.70107,56.51804 592.24762,56.34942 591.68707,56.349411 C 591.09462,56.34942 590.62066,56.527154 590.2652,56.882614 C 589.90973,57.238091 589.72971,57.730278 589.72516,58.359177 L 588.46051,58.229294 C 588.54711,57.285943 588.87294,56.56817 589.43805,56.075974 C 590.00315,55.579239 590.76194,55.330866 591.71442,55.330856 C 592.676,55.330866 593.43707,55.597468 593.99762,56.130661 C 594.55816,56.663873 594.83843,57.324679 594.83844,58.113083 C 594.83843,58.514131 594.75644,58.908337 594.59235,59.2957 C 594.42828,59.683076 594.15484,60.090953 593.77203,60.519333 C 593.39377,60.947723 592.76259,61.535613 591.87848,62.283005 C 591.14019,62.902799 590.66624,63.324348 590.4566,63.547653 C 590.24697,63.766405 590.07379,63.987433 589.93707,64.210739 L 594.85211,64.210739"
id="path5168"
inkscape:connector-curvature="0" />
</g>
@ -6205,7 +6519,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5103">
<path
d="m 583.46417,143.86147 l -1.23047,0 l 0,-7.84082 c -0.29622,0.28255 -0.68587,0.56511 -1.16894,0.84765 c -0.47852,0.28256 -0.90918,0.49447 -1.29199,0.63574 l 0,-1.18945 c 0.68814,-0.32356 1.28971,-0.71549 1.80468,-1.17578 c 0.51497,-0.46028 0.87956,-0.90689 1.09375,-1.33984 l 0.79297,0 l 0,10.0625"
d="M 583.46417,143.86147 L 582.2337,143.86147 L 582.2337,136.02065 C 581.93748,136.3032 581.54783,136.58576 581.06476,136.8683 C 580.58624,137.15086 580.15558,137.36277 579.77277,137.50404 L 579.77277,136.31459 C 580.46091,135.99103 581.06248,135.5991 581.57745,135.13881 C 582.09242,134.67853 582.45701,134.23192 582.6712,133.79897 L 583.46417,133.79897 L 583.46417,143.86147"
id="path5171"
inkscape:connector-curvature="0" />
</g>
@ -6213,7 +6527,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5137">
<path
d="m 562.91168,216.91772 c 0,-1.18489 0.12077,-2.13736 0.36231,-2.85742 c 0.24609,-0.7246 0.60839,-1.28287 1.08691,-1.6748 c 0.48307,-0.39192 1.08919,-0.58788 1.81836,-0.58789 c 0.53776,1e-5 1.00944,0.10938 1.41504,0.32812 c 0.40559,0.2142 0.74055,0.52638 1.00488,0.93653 c 0.26432,0.4056 0.47168,0.90235 0.62207,1.49023 c 0.15039,0.58334 0.22558,1.37175 0.22559,2.36523 c -10e-6,1.17579 -0.12078,2.12598 -0.36231,2.85059 c -0.24154,0.72005 -0.60384,1.27832 -1.08691,1.67481 c -0.47852,0.39192 -1.08464,0.58789 -1.81836,0.58789 c -0.96615,0 -1.72494,-0.34636 -2.27637,-1.03907 c -0.66081,-0.83398 -0.99121,-2.19205 -0.99121,-4.07422 m 1.26465,0 c 0,1.64519 0.1914,2.74122 0.57422,3.28809 c 0.38737,0.54232 0.8636,0.81348 1.42871,0.81348 c 0.5651,0 1.03906,-0.27344 1.42188,-0.82032 c 0.38736,-0.54687 0.58104,-1.64062 0.58105,-3.28125 c -10e-6,-1.64973 -0.19369,-2.74576 -0.58105,-3.28808 c -0.38282,-0.54231 -0.86134,-0.81347 -1.43555,-0.81348 c -0.56511,1e-5 -1.01628,0.23927 -1.35352,0.71778 c -0.42383,0.61068 -0.63574,1.73861 -0.63574,3.38378"
d="M 562.91168,216.91772 C 562.91168,215.73283 563.03245,214.78036 563.27399,214.0603 C 563.52008,213.3357 563.88238,212.77743 564.3609,212.3855 C 564.84397,211.99358 565.45009,211.79762 566.17926,211.79761 C 566.71702,211.79762 567.1887,211.90699 567.5943,212.12573 C 567.99989,212.33993 568.33485,212.65211 568.59918,213.06226 C 568.8635,213.46786 569.07086,213.96461 569.22125,214.55249 C 569.37164,215.13583 569.44683,215.92424 569.44684,216.91772 C 569.44683,218.09351 569.32606,219.0437 569.08453,219.76831 C 568.84299,220.48836 568.48069,221.04663 567.99762,221.44312 C 567.5191,221.83504 566.91298,222.03101 566.17926,222.03101 C 565.21311,222.03101 564.45432,221.68465 563.90289,220.99194 C 563.24208,220.15796 562.91168,218.79989 562.91168,216.91772 M 564.17633,216.91772 C 564.17633,218.56291 564.36773,219.65894 564.75055,220.20581 C 565.13792,220.74813 565.61415,221.01929 566.17926,221.01929 C 566.74436,221.01929 567.21832,220.74585 567.60114,220.19897 C 567.9885,219.6521 568.18218,218.55835 568.18219,216.91772 C 568.18218,215.26799 567.9885,214.17196 567.60114,213.62964 C 567.21832,213.08733 566.7398,212.81617 566.16559,212.81616 C 565.60048,212.81617 565.14931,213.05543 564.81207,213.53394 C 564.38824,214.14462 564.17633,215.27255 564.17633,216.91772"
id="path5186"
inkscape:connector-curvature="0" />
</g>
@ -6222,7 +6536,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5129">
<path
d="m 519.79114,369.1806 l 0,1.18262 l -6.62403,0 c -0.009,-0.29622 0.0387,-0.58105 0.14356,-0.85449 c 0.16862,-0.45117 0.4375,-0.89551 0.80664,-1.33301 c 0.3737,-0.4375 0.91146,-0.94336 1.61328,-1.51758 c 1.08919,-0.89322 1.82519,-1.5996 2.20801,-2.11914 c 0.38281,-0.52408 0.57421,-1.01855 0.57422,-1.4834 c -1e-5,-0.48762 -0.17546,-0.89778 -0.52637,-1.23047 c -0.34636,-0.33723 -0.79981,-0.50585 -1.36035,-0.50586 c -0.59245,10e-6 -1.06641,0.17775 -1.42188,0.53321 c -0.35547,0.35547 -0.53548,0.84766 -0.54004,1.47656 l -1.26464,-0.12988 c 0.0866,-0.94335 0.41243,-1.66113 0.97754,-2.15332 c 0.5651,-0.49674 1.32389,-0.74511 2.27636,-0.74512 c 0.96159,10e-6 1.72265,0.26661 2.28321,0.7998 c 0.56054,0.53322 0.84081,1.19402 0.84082,1.98243 c -10e-6,0.40105 -0.082,0.79525 -0.2461,1.18261 c -0.16407,0.38738 -0.4375,0.79526 -0.82031,1.22364 c -0.37826,0.42839 -1.00945,1.01628 -1.89356,1.76367 c -0.73828,0.61979 -1.21224,1.04134 -1.42187,1.26465 c -0.20964,0.21875 -0.38281,0.43978 -0.51953,0.66308 l 4.91504,0"
d="M 519.79114,369.1806 L 519.79114,370.36322 L 513.16711,370.36322 C 513.15811,370.067 513.20581,369.78217 513.31067,369.50873 C 513.47929,369.05756 513.74817,368.61322 514.11731,368.17572 C 514.49101,367.73822 515.02877,367.23236 515.73059,366.65814 C 516.81978,365.76492 517.55578,365.05854 517.9386,364.539 C 518.32141,364.01492 518.51281,363.52045 518.51282,363.0556 C 518.51281,362.56798 518.33736,362.15782 517.98645,361.82513 C 517.64009,361.4879 517.18664,361.31928 516.6261,361.31927 C 516.03365,361.31928 515.55969,361.49702 515.20422,361.85248 C 514.84875,362.20795 514.66874,362.70014 514.66418,363.32904 L 513.39954,363.19916 C 513.48614,362.25581 513.81197,361.53803 514.37708,361.04584 C 514.94218,360.5491 515.70097,360.30073 516.65344,360.30072 C 517.61503,360.30073 518.37609,360.56733 518.93665,361.10052 C 519.49719,361.63374 519.77746,362.29454 519.77747,363.08295 C 519.77746,363.484 519.69547,363.8782 519.53137,364.26556 C 519.3673,364.65294 519.09387,365.06082 518.71106,365.4892 C 518.3328,365.91759 517.70161,366.50548 516.8175,367.25287 C 516.07922,367.87266 515.60526,368.29421 515.39563,368.51752 C 515.18599,368.73627 515.01282,368.9573 514.8761,369.1806 L 519.79114,369.1806"
id="path5180"
inkscape:connector-curvature="0" />
</g>
@ -6231,7 +6545,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5133">
<path
d="m 545.78973,296.81775 l -1.23046,0 l 0,-7.84082 c -0.29623,0.28256 -0.68588,0.56511 -1.16895,0.84765 c -0.47852,0.28256 -0.90918,0.49448 -1.29199,0.63575 l 0,-1.18946 c 0.68815,-0.32356 1.28971,-0.71548 1.80469,-1.17578 c 0.51497,-0.46027 0.87955,-0.90689 1.09375,-1.33984 l 0.79296,0 l 0,10.0625"
d="M 545.78973,296.81775 L 544.55927,296.81775 L 544.55927,288.97693 C 544.26304,289.25949 543.87339,289.54204 543.39032,289.82458 C 542.9118,290.10714 542.48114,290.31906 542.09833,290.46033 L 542.09833,289.27087 C 542.78648,288.94731 543.38804,288.55539 543.90302,288.09509 C 544.41799,287.63482 544.78257,287.1882 544.99677,286.75525 L 545.78973,286.75525 L 545.78973,296.81775"
id="path5183"
inkscape:connector-curvature="0" />
</g>
@ -6240,7 +6554,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5125">
<path
d="m 478.23416,437.97165 l 1.23047,-0.16406 c 0.14127,0.69726 0.38053,1.20084 0.71777,1.51074 c 0.3418,0.30534 0.75651,0.45801 1.24414,0.45801 c 0.57878,0 1.06641,-0.20052 1.46289,-0.60157 c 0.40104,-0.40104 0.60156,-0.89778 0.60157,-1.49023 c -10e-6,-0.5651 -0.18458,-1.02994 -0.55371,-1.39453 c -0.36915,-0.36914 -0.83855,-0.55371 -1.40821,-0.55371 c -0.23242,0 -0.52181,0.0456 -0.86816,0.13672 l 0.13672,-1.08008 c 0.082,0.009 0.14811,0.0137 0.19824,0.0137 c 0.52408,10e-6 0.99576,-0.13671 1.41504,-0.41016 c 0.41926,-0.27343 0.6289,-0.69498 0.62891,-1.26464 c -10e-6,-0.45117 -0.15268,-0.82487 -0.45801,-1.1211 c -0.30535,-0.29621 -0.69955,-0.44433 -1.18262,-0.44433 c -0.47852,0 -0.87728,0.1504 -1.19629,0.45117 c -0.31901,0.30079 -0.52409,0.75196 -0.61523,1.35351 l -1.23047,-0.21875 c 0.15039,-0.82486 0.49218,-1.46288 1.02539,-1.91406 c 0.5332,-0.45572 1.19629,-0.68358 1.98926,-0.68359 c 0.54687,1e-5 1.05045,0.1185 1.51074,0.35547 c 0.46028,0.23243 0.81119,0.55144 1.05273,0.95703 c 0.24609,0.4056 0.36914,0.83627 0.36914,1.29199 c 0,0.43295 -0.11621,0.82715 -0.34863,1.18262 c -0.23243,0.35547 -0.5765,0.63802 -1.03223,0.84765 c 0.59245,0.13673 1.05273,0.42156 1.38086,0.85449 c 0.32812,0.42839 0.49218,0.96615 0.49219,1.61329 c -10e-6,0.875 -0.31902,1.61784 -0.95703,2.22851 c -0.63803,0.60612 -1.44467,0.90918 -2.41992,0.90918 c -0.87956,0 -1.61101,-0.26204 -2.19434,-0.78613 c -0.57877,-0.52409 -0.90918,-1.20312 -0.99121,-2.03711"
d="M 478.23416,437.97165 L 479.46463,437.80759 C 479.6059,438.50485 479.84516,439.00843 480.1824,439.31833 C 480.5242,439.62367 480.93891,439.77634 481.42654,439.77634 C 482.00532,439.77634 482.49295,439.57582 482.88943,439.17477 C 483.29047,438.77373 483.49099,438.27699 483.491,437.68454 C 483.49099,437.11944 483.30642,436.6546 482.93729,436.29001 C 482.56814,435.92087 482.09874,435.7363 481.52908,435.7363 C 481.29666,435.7363 481.00727,435.7819 480.66092,435.87302 L 480.79764,434.79294 C 480.87964,434.80194 480.94575,434.80664 480.99588,434.80664 C 481.51996,434.80665 481.99164,434.66993 482.41092,434.39648 C 482.83018,434.12305 483.03982,433.7015 483.03983,433.13184 C 483.03982,432.68067 482.88715,432.30697 482.58182,432.01074 C 482.27647,431.71453 481.88227,431.56641 481.3992,431.56641 C 480.92068,431.56641 480.52192,431.71681 480.20291,432.01758 C 479.8839,432.31837 479.67882,432.76954 479.58768,433.37109 L 478.35721,433.15234 C 478.5076,432.32748 478.84939,431.68946 479.3826,431.23828 C 479.9158,430.78256 480.57889,430.5547 481.37186,430.55469 C 481.91873,430.5547 482.42231,430.67319 482.8826,430.91016 C 483.34288,431.14259 483.69379,431.4616 483.93533,431.86719 C 484.18142,432.27279 484.30447,432.70346 484.30447,433.15918 C 484.30447,433.59213 484.18826,433.98633 483.95584,434.3418 C 483.72341,434.69727 483.37934,434.97982 482.92361,435.18945 C 483.51606,435.32618 483.97634,435.61101 484.30447,436.04394 C 484.63259,436.47233 484.79665,437.01009 484.79666,437.65723 C 484.79665,438.53223 484.47764,439.27507 483.83963,439.88574 C 483.2016,440.49186 482.39496,440.79492 481.41971,440.79492 C 480.54015,440.79492 479.8087,440.53288 479.22537,440.00879 C 478.6466,439.4847 478.31619,438.80567 478.23416,437.97168"
id="path5177"
inkscape:connector-curvature="0" />
</g>
@ -6249,7 +6563,7 @@
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
id="text5121">
<path
d="m 442.86176,508.83423 l 0,-2.39942 l -4.34766,0 l 0,-1.12793 l 4.57324,-6.49414 l 1.00488,0 l 0,6.49414 l 1.35352,0 l 0,1.12793 l -1.35352,0 l 0,2.39942 l -1.23046,0 m 0,-3.52735 l 0,-4.51855 l -3.1377,4.51855 l 3.1377,0"
d="M 442.86176,508.83423 L 442.86176,506.43481 L 438.5141,506.43481 L 438.5141,505.30688 L 443.08734,498.81274 L 444.09222,498.81274 L 444.09222,505.30688 L 445.44574,505.30688 L 445.44574,506.43481 L 444.09222,506.43481 L 444.09222,508.83423 L 442.86176,508.83423 M 442.86176,505.30688 L 442.86176,500.78833 L 439.72406,505.30688 L 442.86176,505.30688"
id="path5174"
inkscape:connector-curvature="0" />
</g>
@ -6275,7 +6589,7 @@
sodipodi:nodetypes="csssscc"
inkscape:connector-curvature="0"
id="path4655"
d="m 640.50296,463.50296 l 0,14.99408 c 0,1.108 -0.892,2 -2,2 l -636.9999976,0 c -1.10800005,0 -2.00000005,-0.892 -2.00000005,-2 l 3e-8,-14.99408 c 0,-1.108 640.99999762,0 640.99999762,0 z"
d="M 640.50296,463.50296 L 640.50296,478.49704 C 640.50296,479.60504 639.61096,480.49704 638.50296,480.49704 L 1.5029624,480.49704 C 0.39496235,480.49704 -0.49703765,479.60504 -0.49703765,478.49704 L -0.49703762,463.50296 C -0.49703762,462.39496 640.50296,463.50296 640.50296,463.50296 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;display:inline" />
<path
sodipodi:nodetypes="cc"
@ -6313,33 +6627,33 @@
style="fill:#ffffff;fill-opacity:1">
<path
id="path4770"
d="m 588.36773,476.43933 l 0,-8.77666 l 3.89142,0 c 0.78227,1e-5 1.37696,0.0798 1.78407,0.23947 c 0.4071,0.15567 0.73238,0.43306 0.97585,0.83217 c 0.24346,0.39913 0.36519,0.84016 0.3652,1.32308 c -10e-6,0.62264 -0.20157,1.14748 -0.60467,1.57453 c -0.40312,0.42707 -1.02575,0.69847 -1.86788,0.81421 c 0.30731,0.14768 0.5408,0.29336 0.70045,0.43704 c 0.33925,0.31131 0.66054,0.70046 0.96388,1.16742 l 1.52663,2.38874 l -1.46078,0 l -1.16144,-1.82598 c -0.33926,-0.52683 -0.61864,-0.92994 -0.83815,-1.20933 c -0.21952,-0.27938 -0.41709,-0.47495 -0.59269,-0.58671 c -0.17163,-0.11175 -0.34724,-0.18958 -0.52684,-0.23348 c -0.13172,-0.0279 -0.34724,-0.0419 -0.64658,-0.0419 l -1.34703,0 l 0,3.89741 l -1.16144,0 m 1.16144,-4.90319 l 2.4965,0 c 0.53082,0 0.94591,-0.0539 1.24525,-0.16165 c 0.29934,-0.11175 0.52684,-0.28736 0.6825,-0.52684 c 0.15565,-0.24345 0.23348,-0.50687 0.23349,-0.79026 c -10e-6,-0.41507 -0.15168,-0.75632 -0.455,-1.02374 c -0.29935,-0.2674 -0.7743,-0.40111 -1.42486,-0.40112 l -2.77788,0 l 0,2.90361"
d="M 588.36773,476.43933 L 588.36773,467.66267 L 592.25915,467.66267 C 593.04142,467.66268 593.63611,467.74247 594.04322,467.90214 C 594.45032,468.05781 594.7756,468.3352 595.01907,468.73431 C 595.26253,469.13344 595.38426,469.57447 595.38427,470.05739 C 595.38426,470.68003 595.1827,471.20487 594.7796,471.63192 C 594.37648,472.05899 593.75385,472.33039 592.91172,472.44613 C 593.21903,472.59381 593.45252,472.73949 593.61217,472.88317 C 593.95142,473.19448 594.27271,473.58363 594.57605,474.05059 L 596.10268,476.43933 L 594.6419,476.43933 L 593.48046,474.61335 C 593.1412,474.08652 592.86182,473.68341 592.64231,473.40402 C 592.42279,473.12464 592.22522,472.92907 592.04962,472.81731 C 591.87799,472.70556 591.70238,472.62773 591.52278,472.58383 C 591.39106,472.55593 591.17554,472.54193 590.8762,472.54193 L 589.52917,472.54193 L 589.52917,476.43934 L 588.36773,476.43934 M 589.52917,471.53615 L 592.02567,471.53615 C 592.55649,471.53615 592.97158,471.48225 593.27092,471.3745 C 593.57026,471.26275 593.79776,471.08714 593.95342,470.84766 C 594.10907,470.60421 594.1869,470.34079 594.18691,470.0574 C 594.1869,469.64233 594.03523,469.30108 593.73191,469.03366 C 593.43256,468.76626 592.95761,468.63255 592.30705,468.63254 L 589.52917,468.63254 L 589.52917,471.53615"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1" />
<path
id="path4772"
d="m 602.96955,467.66267 l 1.16144,0 l 0,5.07083 c -10e-6,0.88206 -0.0998,1.58251 -0.29934,2.10137 c -0.19957,0.51885 -0.56077,0.94192 -1.08361,1.2692 c -0.51886,0.32329 -1.20136,0.48493 -2.04749,0.48493 c -0.82219,0 -1.49471,-0.14169 -2.01755,-0.42506 c -0.52285,-0.28338 -0.89603,-0.69248 -1.11954,-1.2273 c -0.22351,-0.53881 -0.33526,-1.27319 -0.33526,-2.20314 l 0,-5.07083 l 1.16144,0 l 0,5.06484 c 0,0.76232 0.0698,1.32508 0.20954,1.68828 c 0.14368,0.35921 0.38715,0.6366 0.73039,0.83217 c 0.34723,0.19557 0.7703,0.29335 1.2692,0.29335 c 0.85412,0 1.46278,-0.19357 1.82598,-0.58072 c 0.36319,-0.38715 0.54479,-1.1315 0.5448,-2.23308 l 0,-5.06484"
d="M 602.96955,467.66267 L 604.13099,467.66267 L 604.13099,472.7335 C 604.13098,473.61556 604.03119,474.31601 603.83165,474.83487 C 603.63208,475.35372 603.27088,475.77679 602.74804,476.10407 C 602.22918,476.42736 601.54668,476.589 600.70055,476.589 C 599.87836,476.589 599.20584,476.44731 598.683,476.16394 C 598.16015,475.88056 597.78697,475.47146 597.56346,474.93664 C 597.33995,474.39783 597.2282,473.66345 597.2282,472.7335 L 597.2282,467.66267 L 598.38964,467.66267 L 598.38964,472.72751 C 598.38964,473.48983 598.45944,474.05259 598.59918,474.41579 C 598.74286,474.775 598.98633,475.05239 599.32957,475.24796 C 599.6768,475.44353 600.09987,475.54131 600.59877,475.54131 C 601.45289,475.54131 602.06155,475.34774 602.42475,474.96059 C 602.78794,474.57344 602.96954,473.82909 602.96955,472.72751 L 602.96955,467.66267"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1" />
<path
id="path4768"
d="m 579.52521,476.43933 l 0,-8.77666 l 1.16144,0 l 0,3.60406 l 4.56195,0 l 0,-3.60406 l 1.16144,0 l 0,8.77666 l -1.16144,0 l 0,-4.13688 l -4.56195,0 l 0,4.13688 l -1.16144,0"
d="M 579.52521,476.43933 L 579.52521,467.66267 L 580.68665,467.66267 L 580.68665,471.26673 L 585.2486,471.26673 L 585.2486,467.66267 L 586.41004,467.66267 L 586.41004,476.43933 L 585.2486,476.43933 L 585.2486,472.30245 L 580.68665,472.30245 L 580.68665,476.43933 L 579.52521,476.43933"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1" />
<path
id="path4774"
d="m 605.67559,473.61954 l 1.09558,-0.0958 c 0.0519,0.43903 0.17162,0.80023 0.35921,1.08361 c 0.19158,0.27938 0.48693,0.50688 0.88605,0.68249 c 0.39912,0.17163 0.84813,0.25744 1.34703,0.25744 c 0.44302,0 0.83416,-0.0659 1.17342,-0.19757 c 0.33924,-0.13171 0.59069,-0.31131 0.75433,-0.53881 c 0.16763,-0.23149 0.25144,-0.48293 0.25145,-0.75434 c -10e-6,-0.27539 -0.0798,-0.51486 -0.23947,-0.71842 c -0.15966,-0.20753 -0.42308,-0.38115 -0.79026,-0.52085 c -0.23549,-0.0918 -0.75634,-0.23348 -1.56256,-0.42506 c -0.80622,-0.19557 -1.37098,-0.37916 -1.69426,-0.55079 c -0.41908,-0.21951 -0.73239,-0.49091 -0.93993,-0.8142 c -0.20356,-0.32728 -0.30533,-0.69247 -0.30533,-1.09559 c 0,-0.44302 0.12572,-0.8561 0.37717,-1.23927 c 0.25144,-0.38714 0.61863,-0.68049 1.10157,-0.88006 c 0.48293,-0.19955 1.01975,-0.29933 1.61045,-0.29934 c 0.65056,10e-6 1.2233,0.10578 1.71822,0.3173 c 0.49889,0.20755 0.88205,0.51488 1.14946,0.92197 c 0.26741,0.40711 0.41109,0.86809 0.43105,1.38295 l -1.11354,0.0838 c -0.0599,-0.55477 -0.26343,-0.97385 -0.61066,-1.25723 c -0.34325,-0.28337 -0.85212,-0.42506 -1.52663,-0.42506 c -0.70246,0 -1.21533,0.12972 -1.53861,0.38914 c -0.3193,0.25544 -0.47895,0.56476 -0.47895,0.92795 c 0,0.31531 0.11375,0.57474 0.34125,0.77829 c 0.22351,0.20355 0.80622,0.41309 1.74815,0.62861 c 0.94591,0.21154 1.59448,0.39713 1.94571,0.55678 c 0.51087,0.23548 0.88804,0.53482 1.13151,0.89802 c 0.24345,0.35921 0.36518,0.77429 0.36519,1.24525 c -10e-6,0.46698 -0.13371,0.908 -0.40111,1.32309 c -0.26742,0.41109 -0.65257,0.73238 -1.15546,0.96387 c -0.4989,0.2275 -1.06166,0.34125 -1.68828,0.34125 c -0.79425,0 -1.46078,-0.11574 -1.99959,-0.34723 c -0.53482,-0.23149 -0.9559,-0.57873 -1.26322,-1.04171 c -0.30333,-0.46697 -0.46298,-0.99381 -0.47894,-1.58052"
d="M 605.67559,473.61954 L 606.77117,473.52374 C 606.82307,473.96277 606.94279,474.32397 607.13038,474.60735 C 607.32196,474.88673 607.61731,475.11423 608.01643,475.28984 C 608.41555,475.46147 608.86456,475.54728 609.36346,475.54728 C 609.80648,475.54728 610.19762,475.48138 610.53688,475.34971 C 610.87612,475.218 611.12757,475.0384 611.29121,474.8109 C 611.45884,474.57941 611.54265,474.32797 611.54266,474.05656 C 611.54265,473.78117 611.46286,473.5417 611.30319,473.33814 C 611.14353,473.13061 610.88011,472.95699 610.51293,472.81729 C 610.27744,472.72549 609.75659,472.58381 608.95037,472.39223 C 608.14415,472.19666 607.57939,472.01307 607.25611,471.84144 C 606.83703,471.62193 606.52372,471.35053 606.31618,471.02724 C 606.11262,470.69996 606.01085,470.33477 606.01085,469.93165 C 606.01085,469.48863 606.13657,469.07555 606.38802,468.69238 C 606.63946,468.30524 607.00665,468.01189 607.48959,467.81232 C 607.97252,467.61277 608.50934,467.51299 609.10004,467.51298 C 609.7506,467.51299 610.32334,467.61876 610.81826,467.83028 C 611.31715,468.03783 611.70031,468.34516 611.96772,468.75225 C 612.23513,469.15936 612.37881,469.62034 612.39877,470.1352 L 611.28523,470.219 C 611.22533,469.66423 611.0218,469.24515 610.67457,468.96177 C 610.33132,468.6784 609.82245,468.53671 609.14794,468.53671 C 608.44548,468.53671 607.93261,468.66643 607.60933,468.92585 C 607.29003,469.18129 607.13038,469.49061 607.13038,469.8538 C 607.13038,470.16911 607.24413,470.42854 607.47163,470.63209 C 607.69514,470.83564 608.27785,471.04518 609.21978,471.2607 C 610.16569,471.47224 610.81426,471.65783 611.16549,471.81748 C 611.67636,472.05296 612.05353,472.3523 612.297,472.7155 C 612.54045,473.07471 612.66218,473.48979 612.66219,473.96075 C 612.66218,474.42773 612.52848,474.86875 612.26108,475.28384 C 611.99366,475.69493 611.60851,476.01622 611.10562,476.24771 C 610.60672,476.47521 610.04396,476.58896 609.41734,476.58896 C 608.62309,476.58896 607.95656,476.47322 607.41775,476.24173 C 606.88293,476.01024 606.46185,475.663 606.15453,475.20002 C 605.8512,474.73305 605.69155,474.20621 605.67559,473.6195"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1" />
<path
id="path4766"
d="m 574.17899,476.43933 l 0,-7.74094 l -2.89162,0 l 0,-1.03572 l 6.95667,0 l 0,1.03572 l -2.9036,0 l 0,7.74094 l -1.16145,0"
d="M 574.17899,476.43933 L 574.17899,468.69839 L 571.28737,468.69839 L 571.28737,467.66267 L 578.24404,467.66267 L 578.24404,468.69839 L 575.34044,468.69839 L 575.34044,476.43933 L 574.17899,476.43933"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1" />
<path
style="font-size:12.26098156px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
id="path4776"
d="m 616.49354,476.43933 l 0,-7.74094 l -2.89163,0 l 0,-1.03572 l 6.95667,0 l 0,1.03572 l -2.9036,0 l 0,7.74094 l -1.16144,0"
d="M 616.49354,476.43933 L 616.49354,468.69839 L 613.60191,468.69839 L 613.60191,467.66267 L 620.55858,467.66267 L 620.55858,468.69839 L 617.65498,468.69839 L 617.65498,476.43933 L 616.49354,476.43933"
inkscape:connector-curvature="0" />
</g>
</g>
@ -6373,23 +6687,23 @@
<path
inkscape:connector-curvature="0"
id="path4715"
d="m 404.79999,473.51954 l 1.09559,-0.0958 c 0.0519,0.43903 0.17162,0.80024 0.35921,1.08361 c 0.19157,0.27939 0.48692,0.50689 0.88604,0.6825 c 0.39912,0.17162 0.84813,0.25743 1.34704,0.25743 c 0.44302,0 0.83415,-0.0659 1.17341,-0.19756 c 0.33925,-0.13171 0.59069,-0.31132 0.75434,-0.53882 c 0.16762,-0.23148 0.25144,-0.48293 0.25144,-0.75433 c 0,-0.27539 -0.0798,-0.51487 -0.23947,-0.71842 c -0.15965,-0.20754 -0.42307,-0.38116 -0.79026,-0.52085 c -0.23548,-0.0918 -0.75633,-0.23349 -1.56255,-0.42507 c -0.80623,-0.19556 -1.37098,-0.37916 -1.69427,-0.55078 c -0.41908,-0.21951 -0.73239,-0.49092 -0.93993,-0.81421 c -0.20355,-0.32727 -0.30533,-0.69247 -0.30533,-1.09558 c 0,-0.44302 0.12573,-0.85611 0.37717,-1.23927 c 0.25145,-0.38714 0.61864,-0.6805 1.10158,-0.88006 c 0.48293,-0.19956 1.01974,-0.29934 1.61045,-0.29934 c 0.65056,0 1.2233,0.10577 1.71821,0.3173 c 0.49889,0.20755 0.88205,0.51487 1.14947,0.92196 c 0.2674,0.40711 0.41108,0.8681 0.43105,1.38296 l -1.11355,0.0838 c -0.0599,-0.55477 -0.26342,-0.97384 -0.61065,-1.25723 c -0.34325,-0.28337 -0.85213,-0.42505 -1.52664,-0.42506 c -0.70245,1e-5 -1.21532,0.12972 -1.53861,0.38914 c -0.3193,0.25545 -0.47894,0.56476 -0.47894,0.92796 c 0,0.31531 0.11374,0.57474 0.34125,0.77828 c 0.2235,0.20356 0.80622,0.4131 1.74814,0.62862 c 0.94591,0.21154 1.59448,0.39713 1.94572,0.55677 c 0.51086,0.23549 0.88803,0.53483 1.1315,0.89802 c 0.24346,0.35921 0.36519,0.7743 0.3652,1.24526 c -1e-5,0.46697 -0.13372,0.908 -0.40112,1.32308 c -0.26742,0.4111 -0.65257,0.73239 -1.15545,0.96388 c -0.49891,0.2275 -1.06167,0.34124 -1.68828,0.34125 c -0.79426,-1e-5 -1.46079,-0.11575 -1.9996,-0.34724 c -0.53482,-0.23149 -0.95589,-0.57872 -1.26321,-1.0417 c -0.30333,-0.46697 -0.46298,-0.99381 -0.47895,-1.58052" />
d="M 404.79999,473.51954 L 405.89558,473.42374 C 405.94748,473.86277 406.0672,474.22398 406.25479,474.50735 C 406.44636,474.78674 406.74171,475.01424 407.14083,475.18985 C 407.53995,475.36147 407.98896,475.44728 408.48787,475.44728 C 408.93089,475.44728 409.32202,475.38138 409.66128,475.24972 C 410.00053,475.11801 410.25197,474.9384 410.41562,474.7109 C 410.58324,474.47942 410.66706,474.22797 410.66706,473.95657 C 410.66706,473.68118 410.58726,473.4417 410.42759,473.23815 C 410.26794,473.03061 410.00452,472.85699 409.63733,472.7173 C 409.40185,472.6255 408.881,472.48381 408.07478,472.29223 C 407.26855,472.09667 406.7038,471.91307 406.38051,471.74145 C 405.96143,471.52194 405.64812,471.25053 405.44058,470.92724 C 405.23703,470.59997 405.13525,470.23477 405.13525,469.83166 C 405.13525,469.38864 405.26098,468.97555 405.51242,468.59239 C 405.76387,468.20525 406.13106,467.91189 406.614,467.71233 C 407.09693,467.51277 407.63374,467.41299 408.22445,467.41299 C 408.87501,467.41299 409.44775,467.51876 409.94266,467.73029 C 410.44155,467.93784 410.82471,468.24516 411.09213,468.65225 C 411.35953,469.05936 411.50321,469.52035 411.52318,470.03521 L 410.40963,470.11901 C 410.34973,469.56424 410.14621,469.14517 409.79898,468.86178 C 409.45573,468.57841 408.94685,468.43673 408.27234,468.43672 C 407.56989,468.43673 407.05702,468.56644 406.73373,468.82586 C 406.41443,469.08131 406.25479,469.39062 406.25479,469.75382 C 406.25479,470.06913 406.36853,470.32856 406.59604,470.5321 C 406.81954,470.73566 407.40226,470.9452 408.34418,471.16072 C 409.29009,471.37226 409.93866,471.55785 410.2899,471.71749 C 410.80076,471.95298 411.17793,472.25232 411.4214,472.61551 C 411.66486,472.97472 411.78659,473.38981 411.7866,473.86077 C 411.78659,474.32774 411.65288,474.76877 411.38548,475.18385 C 411.11806,475.59495 410.73291,475.91624 410.23003,476.14773 C 409.73112,476.37523 409.16836,476.48897 408.54175,476.48898 C 407.74749,476.48897 407.08096,476.37323 406.54215,476.14174 C 406.00733,475.91025 405.58626,475.56302 405.27894,475.10004 C 404.97561,474.63307 404.81596,474.10623 404.79999,473.51952" />
<path
inkscape:connector-curvature="0"
id="path4717"
d="m 415.61815,476.33932 l 0,-7.74094 l -2.89162,0 l 0,-1.03571 l 6.95667,0 l 0,1.03571 l -2.90361,0 l 0,7.74094 l -1.16144,0" />
d="M 415.61815,476.33932 L 415.61815,468.59838 L 412.72653,468.59838 L 412.72653,467.56267 L 419.6832,467.56267 L 419.6832,468.59838 L 416.77959,468.59838 L 416.77959,476.33932 L 415.61815,476.33932" />
<path
inkscape:connector-curvature="0"
id="path4719"
d="m 419.05458,476.33932 l 3.37057,-8.77665 l 1.25125,0 l 3.59208,8.77665 l -1.32308,0 l -1.02375,-2.65814 l -3.66991,0 l -0.96388,2.65814 l -1.23328,0 m 2.53242,-3.60405 l 2.97544,0 l -0.91598,-2.43065 c -0.27939,-0.73836 -0.48693,-1.34503 -0.62262,-1.81999 c -0.11176,0.56277 -0.26941,1.12154 -0.47296,1.67631 l -0.96388,2.57433" />
d="M 419.05458,476.33932 L 422.42515,467.56267 L 423.6764,467.56267 L 427.26848,476.33932 L 425.9454,476.33932 L 424.92165,473.68118 L 421.25174,473.68118 L 420.28786,476.33932 L 419.05458,476.33932 M 421.587,472.73527 L 424.56244,472.73527 L 423.64646,470.30462 C 423.36707,469.56626 423.15953,468.95959 423.02384,468.48463 C 422.91208,469.0474 422.75443,469.60617 422.55088,470.16094 L 421.587,472.73527" />
<path
inkscape:connector-curvature="0"
id="path4721"
d="m 428.16052,476.33932 l 0,-8.77665 l 3.29274,0 c 0.67052,0 1.20733,0.0898 1.61045,0.2694 c 0.4071,0.17562 0.7244,0.44902 0.9519,0.82019 c 0.23149,0.3672 0.34723,0.75235 0.34724,1.15546 c -10e-6,0.37518 -0.10178,0.7284 -0.30533,1.05966 c -0.20356,0.33128 -0.51088,0.59869 -0.92197,0.80224 c 0.53083,0.15566 0.93793,0.42107 1.22131,0.79624 c 0.28736,0.37518 0.43104,0.8182 0.43105,1.32907 c -1e-5,0.4111 -0.0878,0.79425 -0.26342,1.14947 c -0.17163,0.35123 -0.38516,0.62263 -0.64059,0.8142 c -0.25544,0.19158 -0.57673,0.33726 -0.96387,0.43704 c -0.38316,0.0958 -0.85412,0.14368 -1.41289,0.14368 l -3.34662,0 m 1.16144,-5.08878 l 1.89781,0 c 0.51487,0 0.88405,-0.0339 1.10756,-0.10178 c 0.29535,-0.0878 0.51686,-0.23348 0.66454,-0.43703 c 0.15166,-0.20355 0.22749,-0.45899 0.2275,-0.76632 c -1e-5,-0.29135 -0.0699,-0.54678 -0.20954,-0.76631 c -0.1397,-0.2235 -0.33926,-0.37516 -0.59868,-0.45499 c -0.25943,-0.0838 -0.70445,-0.12572 -1.33506,-0.12573 l -1.75413,0 l 0,2.65216 m 0,4.05307 l 2.18518,0 c 0.37517,0 0.63859,-0.014 0.79026,-0.0419 c 0.26741,-0.0479 0.49091,-0.12772 0.67052,-0.23947 c 0.1796,-0.11175 0.32728,-0.2734 0.44303,-0.48493 c 0.11573,-0.21553 0.17361,-0.46298 0.17361,-0.74237 c 0,-0.32727 -0.0838,-0.61065 -0.25144,-0.85012 c -0.16764,-0.24346 -0.40112,-0.41309 -0.70046,-0.50888 c -0.29535,-0.0998 -0.72241,-0.14967 -1.28118,-0.14967 l -2.02952,0 l 0,3.01735" />
d="M 428.16052,476.33932 L 428.16052,467.56267 L 431.45326,467.56267 C 432.12378,467.56267 432.66059,467.65247 433.06371,467.83207 C 433.47081,468.00769 433.78811,468.28109 434.01561,468.65226 C 434.2471,469.01946 434.36284,469.40461 434.36285,469.80772 C 434.36284,470.1829 434.26107,470.53612 434.05752,470.86738 C 433.85396,471.19866 433.54664,471.46607 433.13555,471.66962 C 433.66638,471.82528 434.07348,472.09069 434.35686,472.46586 C 434.64422,472.84104 434.7879,473.28406 434.78791,473.79493 C 434.7879,474.20603 434.70011,474.58918 434.52449,474.9444 C 434.35286,475.29563 434.13933,475.56703 433.8839,475.7586 C 433.62846,475.95018 433.30717,476.09586 432.92003,476.19564 C 432.53687,476.29144 432.06591,476.33932 431.50714,476.33932 L 428.16052,476.33932 M 429.32196,471.25054 L 431.21977,471.25054 C 431.73464,471.25054 432.10382,471.21664 432.32733,471.14876 C 432.62268,471.06096 432.84419,470.91528 432.99187,470.71173 C 433.14353,470.50818 433.21936,470.25274 433.21937,469.94541 C 433.21936,469.65406 433.14947,469.39863 433.00983,469.1791 C 432.87013,468.9556 432.67057,468.80394 432.41115,468.72411 C 432.15172,468.64031 431.7067,468.59839 431.07609,468.59838 L 429.32196,468.59838 L 429.32196,471.25054 M 429.32196,475.30361 L 431.50714,475.30361 C 431.88231,475.30361 432.14573,475.28961 432.2974,475.26171 C 432.56481,475.21381 432.78831,475.13399 432.96792,475.02224 C 433.14752,474.91049 433.2952,474.74884 433.41095,474.53731 C 433.52668,474.32178 433.58456,474.07433 433.58456,473.79494 C 433.58456,473.46767 433.50076,473.18429 433.33312,472.94482 C 433.16548,472.70136 432.932,472.53173 432.63266,472.43594 C 432.33731,472.33614 431.91025,472.28627 431.35148,472.28627 L 429.32196,472.28627 L 429.32196,475.30362" />
<path
inkscape:connector-curvature="0"
id="path4723"
d="m 443.42089,476.33932 l -1.07763,0 l 0,-6.86686 c -0.25943,0.24746 -0.60068,0.49491 -1.02374,0.74236 c -0.41908,0.24746 -0.79625,0.43305 -1.13151,0.55677 l 0,-1.0417 c 0.60267,-0.28337 1.12951,-0.62661 1.58052,-1.02973 c 0.451,-0.4031 0.7703,-0.79424 0.95789,-1.17342 l 0.69447,0 l 0,8.81258" />
d="M 443.42089,476.33932 L 442.34326,476.33932 L 442.34326,469.47246 C 442.08383,469.71992 441.74258,469.96737 441.31952,470.21482 C 440.90044,470.46228 440.52327,470.64787 440.18801,470.77159 L 440.18801,469.72989 C 440.79068,469.44652 441.31752,469.10328 441.76853,468.70016 C 442.21953,468.29706 442.53883,467.90592 442.72642,467.52674 L 443.42089,467.52674 L 443.42089,476.33932" />
</g>
</g>
</g>
@ -6417,47 +6731,47 @@
id="warning-autopilot-label"
transform="matrix(1.1017863,0,0,1.1017863,-42.744908,-48.294497)">
<path
d="m 393.41498,468.10666 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79688,2.24414 l -1.24804,0 l 3.33984,-8.74805"
d="M 393.41498,468.10666 L 391.80951,472.46017 L 395.02631,472.46017 L 393.41498,468.10666 M 392.74701,466.94064 L 394.08881,466.94064 L 397.42279,475.68869 L 396.19232,475.68869 L 395.39545,473.44455 L 391.45209,473.44455 L 390.65521,475.68869 L 389.40717,475.68869 L 392.74701,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6165"
inkscape:connector-curvature="0" />
<path
d="m 398.55951,466.94064 l 1.18945,0 l 0,5.31446 c 0,0.9375 0.16992,1.61328 0.50977,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33983,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18945,0 l 0,5.46094 c 0,1.14063 -0.28321,2.00196 -0.8496,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.94141,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
d="M 398.55951,466.94064 L 399.74896,466.94064 L 399.74896,472.2551 C 399.74896,473.1926 399.91888,473.86838 400.25873,474.28244 C 400.59857,474.6926 401.14935,474.89768 401.91107,474.89767 C 402.66888,474.89768 403.21771,474.6926 403.55756,474.28244 C 403.89739,473.86838 404.06732,473.1926 404.06732,472.2551 L 404.06732,466.94064 L 405.25677,466.94064 L 405.25677,472.40158 C 405.25677,473.54221 404.97356,474.40354 404.40717,474.98557 C 403.84466,475.5676 403.01263,475.85861 401.91107,475.85861 C 400.8056,475.85861 399.96966,475.5676 399.40326,474.98557 C 398.84076,474.40354 398.55951,473.54221 398.55951,472.40158 L 398.55951,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6167"
inkscape:connector-curvature="0" />
<path
d="m 406.27045,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
d="M 406.27045,466.94064 L 413.67084,466.94064 L 413.67084,467.93674 L 410.56537,467.93674 L 410.56537,475.68869 L 409.37592,475.68869 L 409.37592,467.93674 L 406.27045,467.93674 L 406.27045,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6169"
inkscape:connector-curvature="0" />
<path
d="m 418.37006,467.74338 c -0.85938,10e-6 -1.54298,0.32032 -2.05079,0.96094 c -0.5039,0.64063 -0.75586,1.51367 -0.75585,2.61914 c -1e-5,1.10156 0.25195,1.97265 0.75585,2.61328 c 0.50781,0.64062 1.19141,0.96094 2.05079,0.96093 c 0.85937,10e-6 1.53905,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75585,-1.51172 0.75586,-2.61328 c -1e-5,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.50001,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22655,10e-6 2.20702,0.41212 2.9414,1.23633 c 0.73437,0.82032 1.10156,1.92188 1.10156,3.30469 c 0,1.37891 -0.36719,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.9414,1.23047 c -1.23048,0 -2.21485,-0.41015 -2.95313,-1.23047 c -0.73437,-0.82031 -1.10156,-1.92187 -1.10156,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10156,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95313,-1.23633"
d="M 418.37006,467.74338 C 417.51068,467.74339 416.82708,468.0637 416.31927,468.70432 C 415.81537,469.34495 415.56341,470.21799 415.56342,471.32346 C 415.56341,472.42502 415.81537,473.29611 416.31927,473.93674 C 416.82708,474.57736 417.51068,474.89768 418.37006,474.89767 C 419.22943,474.89768 419.90911,474.57736 420.40912,473.93674 C 420.91302,473.29611 421.16497,472.42502 421.16498,471.32346 C 421.16497,470.21799 420.91302,469.34495 420.40912,468.70432 C 419.90911,468.0637 419.22943,467.74339 418.37006,467.74338 M 418.37006,466.78244 C 419.59661,466.78245 420.57708,467.19456 421.31146,468.01877 C 422.04583,468.83909 422.41302,469.94065 422.41302,471.32346 C 422.41302,472.70237 422.04583,473.80393 421.31146,474.62814 C 420.57708,475.44846 419.59661,475.85861 418.37006,475.85861 C 417.13958,475.85861 416.15521,475.44846 415.41693,474.62814 C 414.68256,473.80783 414.31537,472.70627 414.31537,471.32346 C 414.31537,469.94065 414.68256,468.83909 415.41693,468.01877 C 416.15521,467.19456 417.13958,466.78245 418.37006,466.78244"
style="font-size:12px;fill:#ffffff"
id="path6171"
inkscape:connector-curvature="0" />
<path
d="m 425.44818,467.9133 l 0,3.28711 l 1.48828,0 c 0.55078,0 0.97656,-0.14257 1.27735,-0.42774 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92772 -0.45117,-1.21289 c -0.30079,-0.28514 -0.72657,-0.42772 -1.27735,-0.42773 l -1.48828,0 m -1.18359,-0.97266 l 2.67187,0 c 0.98047,1e-5 1.7207,0.22267 2.22071,0.66797 c 0.5039,0.44142 0.75585,1.08985 0.75585,1.94531 c 0,0.86329 -0.25195,1.51563 -0.75585,1.95704 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51562 l -1.18359,0 l 0,-8.74805"
d="M 425.44818,467.9133 L 425.44818,471.20041 L 426.93646,471.20041 C 427.48724,471.20041 427.91302,471.05784 428.21381,470.77267 C 428.51458,470.48752 428.66497,470.08127 428.66498,469.55392 C 428.66497,469.03049 428.51458,468.6262 428.21381,468.34103 C 427.91302,468.05589 427.48724,467.91331 426.93646,467.9133 L 425.44818,467.9133 M 424.26459,466.94064 L 426.93646,466.94064 C 427.91693,466.94065 428.65716,467.16331 429.15717,467.60861 C 429.66107,468.05003 429.91302,468.69846 429.91302,469.55392 C 429.91302,470.41721 429.66107,471.06955 429.15717,471.51096 C 428.65716,471.95237 427.91693,472.17307 426.93646,472.17307 L 425.44818,472.17307 L 425.44818,475.68869 L 424.26459,475.68869 L 424.26459,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6173"
inkscape:connector-curvature="0" />
<path
d="m 431.50677,466.94064 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
d="M 431.50677,466.94064 L 432.69037,466.94064 L 432.69037,475.68869 L 431.50677,475.68869 L 431.50677,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6175"
inkscape:connector-curvature="0" />
<path
d="m 435.04584,466.94064 l 1.18359,0 l 0,7.75196 l 4.25977,0 l 0,0.99609 l -5.44336,0 l 0,-8.74805"
d="M 435.04584,466.94064 L 436.22943,466.94064 L 436.22943,474.6926 L 440.4892,474.6926 L 440.4892,475.68869 L 435.04584,475.68869 L 435.04584,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6177"
inkscape:connector-curvature="0" />
<path
d="m 444.85443,467.74338 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,10e-6 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21485,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73827,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
d="M 444.85443,467.74338 C 443.99505,467.74339 443.31146,468.0637 442.80365,468.70432 C 442.29974,469.34495 442.04779,470.21799 442.04779,471.32346 C 442.04779,472.42502 442.29974,473.29611 442.80365,473.93674 C 443.31146,474.57736 443.99505,474.89768 444.85443,474.89767 C 445.7138,474.89768 446.39349,474.57736 446.89349,473.93674 C 447.39739,473.29611 447.64935,472.42502 447.64935,471.32346 C 447.64935,470.21799 447.39739,469.34495 446.89349,468.70432 C 446.39349,468.0637 445.7138,467.74339 444.85443,467.74338 M 444.85443,466.78244 C 446.08099,466.78245 447.06146,467.19456 447.79584,468.01877 C 448.5302,468.83909 448.89739,469.94065 448.8974,471.32346 C 448.89739,472.70237 448.5302,473.80393 447.79584,474.62814 C 447.06146,475.44846 446.08099,475.85861 444.85443,475.85861 C 443.62396,475.85861 442.63958,475.44846 441.90131,474.62814 C 441.16693,473.80783 440.79974,472.70627 440.79974,471.32346 C 440.79974,469.94065 441.16693,468.83909 441.90131,468.01877 C 442.63958,467.19456 443.62396,466.78245 444.85443,466.78244"
style="font-size:12px;fill:#ffffff"
id="path6179"
inkscape:connector-curvature="0" />
<path
d="m 449.53607,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
d="M 449.53607,466.94064 L 456.93646,466.94064 L 456.93646,467.93674 L 453.83099,467.93674 L 453.83099,475.68869 L 452.64154,475.68869 L 452.64154,467.93674 L 449.53607,467.93674 L 449.53607,466.94064"
style="font-size:12px;fill:#ffffff"
id="path6181"
inkscape:connector-curvature="0" />
@ -6486,67 +6800,67 @@
inkscape:label="#warning-master-caution-label"
transform="matrix(1.1017863,0,0,1.1017863,-33.088618,-48.971446)">
<path
d="m 267.67041,467.55505 l 1.76367,0 l 2.23242,5.95313 l 2.24414,-5.95313 l 1.76368,0 l 0,8.74805 l -1.1543,0 l 0,-7.68164 l -2.25586,6 l -1.18945,0 l -2.25586,-6 l 0,7.68164 l -1.14844,0 l 0,-8.74805"
d="M 267.67041,467.55505 L 269.43408,467.55505 L 271.6665,473.50818 L 273.91064,467.55505 L 275.67432,467.55505 L 275.67432,476.3031 L 274.52002,476.3031 L 274.52002,468.62146 L 272.26416,474.62146 L 271.07471,474.62146 L 268.81885,468.62146 L 268.81885,476.3031 L 267.67041,476.3031 L 267.67041,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6138"
inkscape:connector-curvature="0" />
<path
d="m 280.95361,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33399,8.74805 l -1.23047,0 l -0.79688,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
d="M 280.95361,468.72107 L 279.34814,473.07458 L 282.56494,473.07458 L 280.95361,468.72107 M 280.28564,467.55505 L 281.62744,467.55505 L 284.96143,476.3031 L 283.73096,476.3031 L 282.93408,474.05896 L 278.99072,474.05896 L 278.19385,476.3031 L 276.9458,476.3031 L 280.28564,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6140"
inkscape:connector-curvature="0" />
<path
d="m 291.47705,467.84216 l 0,1.1543 c -0.44922,-0.21484 -0.87305,-0.37499 -1.27148,-0.48047 c -0.39845,-0.10546 -0.78321,-0.15819 -1.1543,-0.1582 c -0.64454,10e-6 -1.14258,0.12501 -1.49414,0.375 c -0.34766,0.25001 -0.52149,0.60547 -0.52149,1.0664 c 0,0.38673 0.11524,0.6797 0.34571,0.87891 c 0.23437,0.19532 0.67578,0.35352 1.32422,0.47461 l 0.71484,0.14648 c 0.88281,0.16798 1.5332,0.46485 1.95117,0.89063 c 0.42187,0.42188 0.63281,0.98828 0.63281,1.69922 c 0,0.84766 -0.28516,1.49023 -0.85546,1.92773 c -0.56642,0.4375 -1.39845,0.65625 -2.4961,0.65625 c -0.41406,0 -0.85547,-0.0469 -1.32422,-0.14062 c -0.46484,-0.0937 -0.94726,-0.23242 -1.44726,-0.41602 l 0,-1.21875 c 0.48047,0.26953 0.95117,0.47266 1.41211,0.60938 c 0.46093,0.13672 0.91406,0.20508 1.35937,0.20507 c 0.67578,10e-6 1.19726,-0.13281 1.56446,-0.39843 c 0.36718,-0.26563 0.55077,-0.64453 0.55078,-1.13672 c -1e-5,-0.42969 -0.13282,-0.76562 -0.39844,-1.00781 c -0.26172,-0.24219 -0.69337,-0.42383 -1.29492,-0.54493 l -0.72071,-0.14062 c -0.88281,-0.17578 -1.52148,-0.45117 -1.91601,-0.82617 c -0.39453,-0.375 -0.5918,-0.89648 -0.5918,-1.56446 c 0,-0.77343 0.27148,-1.3828 0.81445,-1.82812 c 0.54688,-0.4453 1.29883,-0.66796 2.25586,-0.66797 c 0.41016,1e-5 0.82812,0.0371 1.25391,0.11133 c 0.42578,0.0742 0.86132,0.18555 1.30664,0.33398"
d="M 291.47705,467.84216 L 291.47705,468.99646 C 291.02783,468.78162 290.604,468.62147 290.20557,468.51599 C 289.80712,468.41053 289.42236,468.3578 289.05127,468.35779 C 288.40673,468.3578 287.90869,468.4828 287.55713,468.73279 C 287.20947,468.9828 287.03564,469.33826 287.03564,469.79919 C 287.03564,470.18592 287.15088,470.47889 287.38135,470.6781 C 287.61572,470.87342 288.05713,471.03162 288.70557,471.15271 L 289.42041,471.29919 C 290.30322,471.46717 290.95361,471.76404 291.37158,472.18982 C 291.79345,472.6117 292.00439,473.1781 292.00439,473.88904 C 292.00439,474.7367 291.71923,475.37927 291.14893,475.81677 C 290.58251,476.25427 289.75048,476.47302 288.65283,476.47302 C 288.23877,476.47302 287.79736,476.42612 287.32861,476.3324 C 286.86377,476.2387 286.38135,476.09998 285.88135,475.91638 L 285.88135,474.69763 C 286.36182,474.96716 286.83252,475.17029 287.29346,475.30701 C 287.75439,475.44373 288.20752,475.51209 288.65283,475.51208 C 289.32861,475.51209 289.85009,475.37927 290.21729,475.11365 C 290.58447,474.84802 290.76806,474.46912 290.76807,473.97693 C 290.76806,473.54724 290.63525,473.21131 290.36963,472.96912 C 290.10791,472.72693 289.67626,472.54529 289.07471,472.42419 L 288.354,472.28357 C 287.47119,472.10779 286.83252,471.8324 286.43799,471.4574 C 286.04346,471.0824 285.84619,470.56092 285.84619,469.89294 C 285.84619,469.11951 286.11767,468.51014 286.66064,468.06482 C 287.20752,467.61952 287.95947,467.39686 288.9165,467.39685 C 289.32666,467.39686 289.74462,467.43395 290.17041,467.50818 C 290.59619,467.58238 291.03173,467.69373 291.47705,467.84216"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6142"
inkscape:connector-curvature="0" />
<path
d="m 292.63721,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
d="M 292.63721,467.55505 L 300.0376,467.55505 L 300.0376,468.55115 L 296.93213,468.55115 L 296.93213,476.3031 L 295.74268,476.3031 L 295.74268,468.55115 L 292.63721,468.55115 L 292.63721,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6144"
inkscape:connector-curvature="0" />
<path
d="m 301.18604,467.55505 l 5.53125,0 l 0,0.9961 l -4.34766,0 l 0,2.58984 l 4.16601,0 l 0,0.99609 l -4.16601,0 l 0,3.16993 l 4.45312,0 l 0,0.99609 l -5.63671,0 l 0,-8.74805"
d="M 301.18604,467.55505 L 306.71729,467.55505 L 306.71729,468.55115 L 302.36963,468.55115 L 302.36963,471.14099 L 306.53564,471.14099 L 306.53564,472.13708 L 302.36963,472.13708 L 302.36963,475.30701 L 306.82275,475.30701 L 306.82275,476.3031 L 301.18604,476.3031 L 301.18604,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6146"
inkscape:connector-curvature="0" />
<path
d="m 312.92822,472.20154 c 0.2539,0.0859 0.5,0.26953 0.73828,0.55078 c 0.24219,0.28125 0.48437,0.66797 0.72657,1.16016 l 1.20117,2.39062 l -1.27149,0 l -1.11914,-2.24414 c -0.28906,-0.58593 -0.57031,-0.97461 -0.84375,-1.16602 c -0.26953,-0.1914 -0.63867,-0.2871 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.18359,0 l 0,-8.74805 l 2.67187,0 c 1,1e-5 1.74609,0.209 2.23828,0.62696 c 0.49218,0.41797 0.73828,1.04883 0.73828,1.89257 c 0,0.55079 -0.12891,1.00782 -0.38672,1.3711 c -0.25391,0.36328 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,0 1,-0.13086 1.28906,-0.39258 c 0.29297,-0.26562 0.43945,-0.65429 0.43946,-1.16602 c -1e-5,-0.51171 -0.14649,-0.89647 -0.43946,-1.15429 c -0.28906,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
d="M 312.92822,472.20154 C 313.18212,472.28744 313.42822,472.47107 313.6665,472.75232 C 313.90869,473.03357 314.15087,473.42029 314.39307,473.91248 L 315.59424,476.3031 L 314.32275,476.3031 L 313.20361,474.05896 C 312.91455,473.47303 312.6333,473.08435 312.35986,472.89294 C 312.09033,472.70154 311.72119,472.60584 311.25244,472.60583 L 309.96338,472.60583 L 309.96338,476.3031 L 308.77979,476.3031 L 308.77979,467.55505 L 311.45166,467.55505 C 312.45166,467.55506 313.19775,467.76405 313.68994,468.18201 C 314.18212,468.59998 314.42822,469.23084 314.42822,470.07458 C 314.42822,470.62537 314.29931,471.0824 314.0415,471.44568 C 313.78759,471.80896 313.4165,472.06092 312.92822,472.20154 M 309.96338,468.52771 L 309.96338,471.63318 L 311.45166,471.63318 C 312.02197,471.63318 312.45166,471.50232 312.74072,471.2406 C 313.03369,470.97498 313.18017,470.58631 313.18018,470.07458 C 313.18017,469.56287 313.03369,469.17811 312.74072,468.92029 C 312.45166,468.65858 312.02197,468.52772 311.45166,468.52771 L 309.96338,468.52771"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6148"
inkscape:connector-curvature="0" />
<path
d="m 327.49463,468.22888 l 0,1.24805 c -0.39845,-0.37109 -0.82423,-0.64843 -1.27734,-0.83203 c -0.44923,-0.18359 -0.92774,-0.27539 -1.43555,-0.27539 c -1.00001,0 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79687,1.49219 -0.79687,2.64844 c 0,1.15234 0.26562,2.03515 0.79687,2.64843 c 0.53125,0.60938 1.29687,0.91407 2.29688,0.91407 c 0.50781,0 0.98632,-0.0918 1.43555,-0.27539 c 0.45311,-0.1836 0.87889,-0.46094 1.27734,-0.83204 l 0,1.23633 c -0.41407,0.28125 -0.85352,0.49219 -1.31836,0.63281 c -0.46094,0.14063 -0.94922,0.21094 -1.46484,0.21094 c -1.32423,0 -2.36719,-0.40429 -3.12891,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32226 c 0,-1.40625 0.38086,-2.51367 1.14258,-3.32227 c 0.76172,-0.81249 1.80468,-1.21874 3.12891,-1.21875 c 0.52343,1e-5 1.01561,0.0703 1.47656,0.21094 c 0.46484,0.13673 0.90038,0.34376 1.30664,0.62109"
d="M 327.49463,468.22888 L 327.49463,469.47693 C 327.09618,469.10584 326.6704,468.8285 326.21729,468.6449 C 325.76806,468.46131 325.28955,468.36951 324.78174,468.36951 C 323.78173,468.36951 323.01611,468.67616 322.48486,469.28943 C 321.95361,469.89881 321.68799,470.78162 321.68799,471.93787 C 321.68799,473.09021 321.95361,473.97302 322.48486,474.5863 C 323.01611,475.19568 323.78173,475.50037 324.78174,475.50037 C 325.28955,475.50037 325.76806,475.40857 326.21729,475.22498 C 326.6704,475.04138 327.09618,474.76404 327.49463,474.39294 L 327.49463,475.62927 C 327.08056,475.91052 326.64111,476.12146 326.17627,476.26208 C 325.71533,476.40271 325.22705,476.47302 324.71143,476.47302 C 323.3872,476.47302 322.34424,476.06873 321.58252,475.26013 C 320.8208,474.44763 320.43994,473.34021 320.43994,471.93787 C 320.43994,470.53162 320.8208,469.4242 321.58252,468.6156 C 322.34424,467.80311 323.3872,467.39686 324.71143,467.39685 C 325.23486,467.39686 325.72704,467.46715 326.18799,467.60779 C 326.65283,467.74452 327.08837,467.95155 327.49463,468.22888"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6150"
inkscape:connector-curvature="0" />
<path
d="m 332.2583,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
d="M 332.2583,468.72107 L 330.65283,473.07458 L 333.86963,473.07458 L 332.2583,468.72107 M 331.59033,467.55505 L 332.93213,467.55505 L 336.26611,476.3031 L 335.03564,476.3031 L 334.23877,474.05896 L 330.29541,474.05896 L 329.49854,476.3031 L 328.25049,476.3031 L 331.59033,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6152"
inkscape:connector-curvature="0" />
<path
d="m 337.40283,467.55505 l 1.18946,0 l 0,5.31446 c -10e-6,0.9375 0.16991,1.61328 0.50976,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33984,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18946,0 l 0,5.46094 c -10e-6,1.14063 -0.28321,2.00196 -0.84961,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.9414,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
d="M 337.40283,467.55505 L 338.59229,467.55505 L 338.59229,472.86951 C 338.59228,473.80701 338.7622,474.48279 339.10205,474.89685 C 339.44189,475.30701 339.99267,475.51209 340.75439,475.51208 C 341.5122,475.51209 342.06103,475.30701 342.40088,474.89685 C 342.74072,474.48279 342.91064,473.80701 342.91064,472.86951 L 342.91064,467.55505 L 344.1001,467.55505 L 344.1001,473.01599 C 344.10009,474.15662 343.81689,475.01795 343.25049,475.59998 C 342.68798,476.18201 341.85595,476.47302 340.75439,476.47302 C 339.64892,476.47302 338.81299,476.18201 338.24658,475.59998 C 337.68408,475.01795 337.40283,474.15662 337.40283,473.01599 L 337.40283,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6154"
inkscape:connector-curvature="0" />
<path
d="m 345.11377,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
d="M 345.11377,467.55505 L 352.51416,467.55505 L 352.51416,468.55115 L 349.40869,468.55115 L 349.40869,476.3031 L 348.21924,476.3031 L 348.21924,468.55115 L 345.11377,468.55115 L 345.11377,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6156"
inkscape:connector-curvature="0" />
<path
d="m 353.6626,467.55505 l 1.18359,0 l 0,8.74805 l -1.18359,0 l 0,-8.74805"
d="M 353.6626,467.55505 L 354.84619,467.55505 L 354.84619,476.3031 L 353.6626,476.3031 L 353.6626,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6158"
inkscape:connector-curvature="0" />
<path
d="m 360.75244,468.35779 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,1e-5 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21484,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
d="M 360.75244,468.35779 C 359.89306,468.3578 359.20947,468.67811 358.70166,469.31873 C 358.19775,469.95936 357.9458,470.8324 357.9458,471.93787 C 357.9458,473.03943 358.19775,473.91052 358.70166,474.55115 C 359.20947,475.19177 359.89306,475.51209 360.75244,475.51208 C 361.61181,475.51209 362.2915,475.19177 362.7915,474.55115 C 363.2954,473.91052 363.54736,473.03943 363.54736,471.93787 C 363.54736,470.8324 363.2954,469.95936 362.7915,469.31873 C 362.2915,468.67811 361.61181,468.3578 360.75244,468.35779 M 360.75244,467.39685 C 361.979,467.39686 362.95947,467.80897 363.69385,468.63318 C 364.42821,469.4535 364.7954,470.55506 364.79541,471.93787 C 364.7954,473.31678 364.42821,474.41834 363.69385,475.24255 C 362.95947,476.06287 361.979,476.47302 360.75244,476.47302 C 359.52197,476.47302 358.5376,476.06287 357.79932,475.24255 C 357.06494,474.42224 356.69775,473.32068 356.69775,471.93787 C 356.69775,470.55506 357.06494,469.4535 357.79932,468.63318 C 358.5376,467.80897 359.52197,467.39686 360.75244,467.39685"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6160"
inkscape:connector-curvature="0" />
<path
d="m 366.64697,467.55505 l 1.59375,0 l 3.87891,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14844,0 l 0,-8.74805"
d="M 366.64697,467.55505 L 368.24072,467.55505 L 372.11963,474.87341 L 372.11963,467.55505 L 373.26807,467.55505 L 373.26807,476.3031 L 371.67432,476.3031 L 367.79541,468.98474 L 367.79541,476.3031 L 366.64697,476.3031 L 366.64697,467.55505"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6162"
inkscape:connector-curvature="0" />
@ -6576,37 +6890,37 @@
id="warning-rc-input-label"
transform="matrix(1.1017863,0,0,1.1017863,-23.124025,-49.099088)">
<path
d="m 193.82991,472.31738 c 0.2539,0.0859 0.49999,0.26954 0.73828,0.55078 c 0.24218,0.28126 0.48437,0.66798 0.72656,1.16016 l 1.20118,2.39063 l -1.27149,0 l -1.11914,-2.24415 c -0.28907,-0.58593 -0.57032,-0.9746 -0.84375,-1.16601 c -0.26953,-0.1914 -0.63868,-0.28711 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.1836,0 l 0,-8.74805 l 2.67188,0 c 0.99999,10e-6 1.74609,0.20899 2.23828,0.62695 c 0.49218,0.41798 0.73827,1.04884 0.73828,1.89258 c -1e-5,0.55079 -0.12891,1.00782 -0.38672,1.37109 c -0.25391,0.36329 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,1e-5 0.99999,-0.13085 1.28906,-0.39257 c 0.29296,-0.26562 0.43945,-0.6543 0.43945,-1.16602 c 0,-0.51171 -0.14649,-0.89648 -0.43945,-1.1543 c -0.28907,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
d="M 193.82991,472.31738 C 194.08381,472.40328 194.3299,472.58692 194.56819,472.86816 C 194.81037,473.14942 195.05256,473.53614 195.29475,474.02832 L 196.49593,476.41895 L 195.22444,476.41895 L 194.1053,474.1748 C 193.81623,473.58887 193.53498,473.2002 193.26155,473.00879 C 192.99202,472.81739 192.62287,472.72168 192.15413,472.72168 L 190.86507,472.72168 L 190.86507,476.41895 L 189.68147,476.41895 L 189.68147,467.6709 L 192.35335,467.6709 C 193.35334,467.67091 194.09944,467.87989 194.59163,468.29785 C 195.08381,468.71583 195.3299,469.34669 195.32991,470.19043 C 195.3299,470.74122 195.201,471.19825 194.94319,471.56152 C 194.68928,471.92481 194.31819,472.17676 193.82991,472.31738 M 190.86507,468.64355 L 190.86507,471.74902 L 192.35335,471.74902 C 192.92366,471.74903 193.35334,471.61817 193.64241,471.35645 C 193.93537,471.09083 194.08186,470.70215 194.08186,470.19043 C 194.08186,469.67872 193.93537,469.29395 193.64241,469.03613 C 193.35334,468.77442 192.92366,468.64356 192.35335,468.64355 L 190.86507,468.64355"
style="font-size:12px;fill:#ffffff"
id="path6123"
inkscape:connector-curvature="0" />
<path
d="m 203.99007,468.34473 l 0,1.24804 c -0.39845,-0.37108 -0.82423,-0.64843 -1.27735,-0.83203 c -0.44922,-0.18358 -0.92774,-0.27538 -1.43554,-0.27539 c -1.00001,1e-5 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79688,1.4922 -0.79687,2.64844 c -10e-6,1.15235 0.26562,2.03516 0.79687,2.64844 c 0.53125,0.60937 1.29687,0.91406 2.29688,0.91406 c 0.5078,0 0.98632,-0.0918 1.43554,-0.27539 c 0.45312,-0.18359 0.8789,-0.46094 1.27735,-0.83203 l 0,1.23633 c -0.41407,0.28125 -0.85353,0.49218 -1.31836,0.63281 c -0.46095,0.14062 -0.94923,0.21094 -1.46485,0.21094 c -1.32422,0 -2.36719,-0.4043 -3.1289,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32227 c 0,-1.40624 0.38086,-2.51366 1.14258,-3.32226 c 0.76171,-0.8125 1.80468,-1.21875 3.1289,-1.21875 c 0.52344,0 1.01562,0.0703 1.47657,0.21093 c 0.46483,0.13673 0.90038,0.34376 1.30664,0.6211"
d="M 203.99007,468.34473 L 203.99007,469.59277 C 203.59162,469.22169 203.16584,468.94434 202.71272,468.76074 C 202.2635,468.57716 201.78498,468.48536 201.27718,468.48535 C 200.27717,468.48536 199.51155,468.792 198.9803,469.40527 C 198.44905,470.01465 198.18342,470.89747 198.18343,472.05371 C 198.18342,473.20606 198.44905,474.08887 198.9803,474.70215 C 199.51155,475.31152 200.27717,475.61621 201.27718,475.61621 C 201.78498,475.61621 202.2635,475.52441 202.71272,475.34082 C 203.16584,475.15723 203.59162,474.87988 203.99007,474.50879 L 203.99007,475.74512 C 203.576,476.02637 203.13654,476.2373 202.67171,476.37793 C 202.21076,476.51855 201.72248,476.58887 201.20686,476.58887 C 199.88264,476.58887 198.83967,476.18457 198.07796,475.37598 C 197.31624,474.56348 196.93538,473.45606 196.93538,472.05371 C 196.93538,470.64747 197.31624,469.54005 198.07796,468.73145 C 198.83967,467.91895 199.88264,467.5127 201.20686,467.5127 C 201.7303,467.5127 202.22248,467.583 202.68343,467.72363 C 203.14826,467.86036 203.58381,468.06739 203.99007,468.34473"
style="font-size:12px;fill:#ffffff"
id="path6125"
inkscape:connector-curvature="0" />
<path
d="m 209.65022,467.6709 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
d="M 209.65022,467.6709 L 210.83382,467.6709 L 210.83382,476.41895 L 209.65022,476.41895 L 209.65022,467.6709"
style="font-size:12px;fill:#ffffff"
id="path6127"
inkscape:connector-curvature="0" />
<path
d="m 213.18929,467.6709 l 1.59375,0 l 3.8789,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14843,0 l 0,-8.74805"
d="M 213.18929,467.6709 L 214.78304,467.6709 L 218.66194,474.98926 L 218.66194,467.6709 L 219.81038,467.6709 L 219.81038,476.41895 L 218.21663,476.41895 L 214.33772,469.10059 L 214.33772,476.41895 L 213.18929,476.41895 L 213.18929,467.6709"
style="font-size:12px;fill:#ffffff"
id="path6129"
inkscape:connector-curvature="0" />
<path
d="m 223.34944,468.64355 l 0,3.28711 l 1.48828,0 c 0.55078,1e-5 0.97656,-0.14257 1.27735,-0.42773 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92773 -0.45117,-1.21289 c -0.30079,-0.28515 -0.72657,-0.42773 -1.27735,-0.42774 l -1.48828,0 m -1.18359,-0.97265 l 2.67187,0 c 0.98047,10e-6 1.7207,0.22266 2.22071,0.66797 c 0.5039,0.44141 0.75585,1.08985 0.75586,1.94531 c -1e-5,0.86329 -0.25196,1.51563 -0.75586,1.95703 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51563 l -1.18359,0 l 0,-8.74805"
d="M 223.34944,468.64355 L 223.34944,471.93066 L 224.83772,471.93066 C 225.3885,471.93067 225.81428,471.78809 226.11507,471.50293 C 226.41584,471.21778 226.56623,470.81153 226.56624,470.28418 C 226.56623,469.76075 226.41584,469.35645 226.11507,469.07129 C 225.81428,468.78614 225.3885,468.64356 224.83772,468.64355 L 223.34944,468.64355 M 222.16585,467.6709 L 224.83772,467.6709 C 225.81819,467.67091 226.55842,467.89356 227.05843,468.33887 C 227.56233,468.78028 227.81428,469.42872 227.81429,470.28418 C 227.81428,471.14747 227.56233,471.79981 227.05843,472.24121 C 226.55842,472.68262 225.81819,472.90332 224.83772,472.90332 L 223.34944,472.90332 L 223.34944,476.41895 L 222.16585,476.41895 L 222.16585,467.6709"
style="font-size:12px;fill:#ffffff"
id="path6131"
inkscape:connector-curvature="0" />
<path
d="m 229.27327,467.6709 l 1.18945,0 l 0,5.31445 c 0,0.9375 0.16992,1.61328 0.50977,2.02735 c 0.33984,0.41015 0.89062,0.61523 1.65234,0.61523 c 0.75781,0 1.30664,-0.20508 1.64649,-0.61523 c 0.33983,-0.41407 0.50976,-1.08985 0.50976,-2.02735 l 0,-5.31445 l 1.18946,0 l 0,5.46094 c -1e-5,1.14062 -0.28322,2.00195 -0.84961,2.58398 c -0.56251,0.58203 -1.39454,0.87305 -2.4961,0.87305 c -1.10547,0 -1.94141,-0.29102 -2.50781,-0.87305 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58398 l 0,-5.46094"
d="M 229.27327,467.6709 L 230.46272,467.6709 L 230.46272,472.98535 C 230.46272,473.92285 230.63264,474.59863 230.97249,475.0127 C 231.31233,475.42285 231.86311,475.62793 232.62483,475.62793 C 233.38264,475.62793 233.93147,475.42285 234.27132,475.0127 C 234.61115,474.59863 234.78108,473.92285 234.78108,472.98535 L 234.78108,467.6709 L 235.97054,467.6709 L 235.97054,473.13184 C 235.97053,474.27246 235.68732,475.13379 235.12093,475.71582 C 234.55842,476.29785 233.72639,476.58887 232.62483,476.58887 C 231.51936,476.58887 230.68342,476.29785 230.11702,475.71582 C 229.55452,475.13379 229.27327,474.27246 229.27327,473.13184 L 229.27327,467.6709"
style="font-size:12px;fill:#ffffff"
id="path6133"
inkscape:connector-curvature="0" />
<path
d="m 236.98421,467.6709 l 7.40039,0 l 0,0.99609 l -3.10547,0 l 0,7.75196 l -1.18945,0 l 0,-7.75196 l -3.10547,0 l 0,-0.99609"
d="M 236.98421,467.6709 L 244.3846,467.6709 L 244.3846,468.66699 L 241.27913,468.66699 L 241.27913,476.41895 L 240.08968,476.41895 L 240.08968,468.66699 L 236.98421,468.66699 L 236.98421,467.6709"
style="font-size:12px;fill:#ffffff"
id="path6135"
inkscape:connector-curvature="0" />
@ -6637,15 +6951,15 @@
<path
inkscape:connector-curvature="0"
id="path4800"
d="m 121,476.58899 l 3.48553,-9.076 l 1.29392,0 l 3.71459,9.076 l -1.36821,0 l -1.05866,-2.7488 l -3.79508,0 l -0.99675,2.7488 l -1.27534,0 m 2.61879,-3.72698 l 3.07692,0 l -0.94722,-2.51354 c -0.28892,-0.76355 -0.50354,-1.39091 -0.64386,-1.88207 c -0.11557,0.58196 -0.2786,1.15979 -0.48909,1.73348 l -0.99675,2.66213" />
d="M 121,476.58899 L 124.48553,467.51299 L 125.77945,467.51299 L 129.49404,476.58899 L 128.12583,476.58899 L 127.06717,473.84019 L 123.27209,473.84019 L 122.27534,476.58899 L 121,476.58899 M 123.61879,472.86201 L 126.69571,472.86201 L 125.74849,470.34847 C 125.45957,469.58492 125.24495,468.95756 125.10463,468.4664 C 124.98906,469.04836 124.82603,469.62619 124.61554,470.19988 L 123.61879,472.86201" />
<path
inkscape:connector-curvature="0"
id="path4802"
d="m 130.4846,476.58899 l 0,-9.076 l 4.02415,0 c 0.80895,10e-6 1.42392,0.0826 1.84492,0.24764 c 0.42098,0.16097 0.75735,0.44782 1.00913,0.86055 c 0.25176,0.41274 0.37764,0.86881 0.37765,1.36821 c -1e-5,0.64387 -0.20844,1.18661 -0.62529,1.62823 c -0.41687,0.44163 -1.06073,0.72229 -1.93159,0.84198 c 0.3178,0.15271 0.55925,0.30336 0.72434,0.45194 c 0.35082,0.32193 0.68307,0.72435 0.99675,1.20724 l 1.57871,2.47021 l -1.5106,0 l -1.20106,-1.88825 c -0.35083,-0.54481 -0.63974,-0.96167 -0.86674,-1.25059 c -0.22701,-0.28891 -0.43131,-0.49114 -0.61291,-0.60671 c -0.17748,-0.11556 -0.35908,-0.19605 -0.5448,-0.24145 c -0.13621,-0.0289 -0.35908,-0.0433 -0.66863,-0.0433 l -1.39297,0 l 0,4.03034 l -1.20106,0 m 1.20106,-5.07043 l 2.58164,0 c 0.54893,1e-5 0.97817,-0.0557 1.28773,-0.16715 c 0.30954,-0.11556 0.5448,-0.29717 0.70577,-0.54481 c 0.16096,-0.25176 0.24144,-0.52417 0.24145,-0.81721 c -1e-5,-0.42924 -0.15685,-0.78212 -0.47052,-1.05866 c -0.30955,-0.27653 -0.8007,-0.41479 -1.47345,-0.4148 l -2.87262,0 l 0,3.00263" />
d="M 130.4846,476.58899 L 130.4846,467.51299 L 134.50875,467.51299 C 135.3177,467.513 135.93267,467.59559 136.35367,467.76063 C 136.77465,467.9216 137.11102,468.20845 137.3628,468.62118 C 137.61456,469.03392 137.74044,469.48999 137.74045,469.98939 C 137.74044,470.63326 137.53201,471.176 137.11516,471.61762 C 136.69829,472.05925 136.05443,472.33991 135.18357,472.4596 C 135.50137,472.61231 135.74282,472.76296 135.90791,472.91154 C 136.25873,473.23347 136.59098,473.63589 136.90466,474.11878 L 138.48337,476.58899 L 136.97277,476.58899 L 135.77171,474.70074 C 135.42088,474.15593 135.13197,473.73907 134.90497,473.45015 C 134.67796,473.16124 134.47366,472.95901 134.29206,472.84344 C 134.11458,472.72788 133.93298,472.64739 133.74726,472.60199 C 133.61105,472.57309 133.38818,472.55869 133.07863,472.55869 L 131.68566,472.55869 L 131.68566,476.58903 L 130.4846,476.58903 M 131.68566,471.5186 L 134.2673,471.5186 C 134.81623,471.51861 135.24547,471.4629 135.55503,471.35145 C 135.86457,471.23589 136.09983,471.05428 136.2608,470.80664 C 136.42176,470.55488 136.50224,470.28247 136.50225,469.98943 C 136.50224,469.56019 136.3454,469.20731 136.03173,468.93077 C 135.72218,468.65424 135.23103,468.51598 134.55828,468.51597 L 131.68566,468.51597 L 131.68566,471.5186" />
<path
inkscape:connector-curvature="0"
id="path4804"
d="m 139.59156,476.58899 l 0,-9.076 l 1.80777,0 l 2.14827,6.42625 c 0.19811,0.59847 0.34257,1.04628 0.43337,1.34345 c 0.10318,-0.33019 0.26415,-0.81515 0.4829,-1.45488 l 2.17304,-6.31482 l 1.61585,0 l 0,9.076 l -1.15772,0 l 0,-7.59635 l -2.63736,7.59635 l -1.08342,0 l -2.62499,-7.72636 l 0,7.72636 l -1.15771,0" />
d="M 139.59156,476.58899 L 139.59156,467.51299 L 141.39933,467.51299 L 143.5476,473.93924 C 143.74571,474.53771 143.89017,474.98552 143.98097,475.28269 C 144.08415,474.9525 144.24512,474.46754 144.46387,473.82781 L 146.63691,467.51299 L 148.25276,467.51299 L 148.25276,476.58899 L 147.09504,476.58899 L 147.09504,468.99264 L 144.45768,476.58899 L 143.37426,476.58899 L 140.74927,468.86263 L 140.74927,476.58899 L 139.59156,476.58899" />
</g>
</g>
</g>
@ -6760,7 +7074,7 @@
inkscape:groupmode="layer"
id="layer13"
inkscape:label="pfd-window"
style="display:none"
style="display:inline"
transform="translate(0,-4)"
sodipodi:insensitive="true">
<rect

Before

Width:  |  Height:  |  Size: 640 KiB

After

Width:  |  Height:  |  Size: 721 KiB