Skip to content

Instantly share code, notes, and snippets.

@sabicalija
Last active October 30, 2019 15:41
Show Gist options
  • Save sabicalija/b1229bee89599dd1b15abfcbaa095655 to your computer and use it in GitHub Desktop.
Save sabicalija/b1229bee89599dd1b15abfcbaa095655 to your computer and use it in GitHub Desktop.
TM4C1294NCPDT Timer

Timer

The GPT Modules of the TM4C1294NCDPT can be driven by 4 different clock sources. Either by the

  • System Clock, or a global
  • Alternate Clock (ALTCLK)
    • Precision Internal Oscillator (PIOSC)
    • Hibernation Module Real-time clock output (RTCOSC)
    • Low-frequency internal oscillator (LFIOSC)

When operating the GPT Modules with a system clock of 5 MHz, the modules will receive the same amount of clock ticks.

timer1

For a better presentation, we may display the clock ticks in the following way.

timer2

During the time of 1 second, the clock receives 5.000.000 ticks.

Timeout

To generate a timeout with a 5 Hz frequency, for instance, we have to divide the clock ticks per second by the desired frequency, that is 5.000.000 by 5. We can now use a timer to count the clock ticks (= 1.000.000) to generate timeout events with the desired frequency.

timer3

Alternatively, if we want a timeout every 200 ms, we can multiply the clock ticks by the duration (in seconds), that is 5.000.000 by 0.2.

These timeout events could be used to register a ISR which toggles LEDs on the board.

timer4

NOTE: When counting up, the timer will start from 0 and count until reaching the timeout value (LOAD).
It won't (!) load the value (LOAD) as a initial value, counting until reaching an overflow.

Match

The GPT Modules of the TM4C1294NCPDT support the generation of IRQs when the clock counter matches a specific value. The counter of the timer is only reloaded after a timeout event. However, interrupts are generated on both events.

timer7

PWM with Match
The match and load values of the GPT Modules can be used, to generate PWM signals with duty cycles corresponding the ratio of the values of the match and load register. However, PWM signal generation (with varying duty cycle) can be achieved without a match interrupt event, simply by reloading the timeout value (LOAD) after each cycle.

For a duty cycle of 25%, with a PWM frequency of 5 Hz, we have to activate the LED for 25% of the PWM period. The PWM period is 200 ms (T). Therefore, we have to activate the LED for 50 ms (Ton) and deactivate for 150 ms (Toff).

timer5

If we update the match value of the timer during operation, we can generate PWM signals with different duty cycles.

timer6

Prescaler

The GPTM of the TM4C1294NCPDT provides two independent 16 bit timer per module (Timer A, Timer B), which can be concatenated to operate as a single 32 bit timer.

When working as a 32 bit timer, the prescaler settings have no effect. However, when operated as 16 bit timer, each timer has a 8 bit prescaler.

A prescaler basically behaves as a frequency divider, scaling the frequency of the clock provided to the timer. Following figure illustrates the frequency (and ticks) of the timer counter with different prescaler values.

timer8

Exercises

Practice makes perfect!

Exercise 01: Toggle

Implement a simple timer application which toggles the board LED with a frequency configurable with a macro.

#define FREQUENCY (8) // in Hz

The timer should trigger an IRQ, which is served by an ISR, toggling the LED.

Implement the application with different timer and timer configurations.

  • Systick
  • GPTM: 16 Bit (down, prescaler)
  • GPTM: 16 Bit (up, prescaler)
  • GPTM: 32 Bit (down)
  • GPTM: 32 Bit (up)

What maximal and minimal values are possible for the macro FREQUENCY, for the different setups?

Exercise 02: Chasing Light

Implement a simple chasing light application, which increments the position of the chasing light after every timeout

Use either of the two:

  • Systick
  • GPTM: 32 Bit (down)

Extension 1:
Provide a macro to define the frequency in a single place.

Extension 2:
Allow changing (increment/decrement) the direction of the chasing light by pressing the buttons.

Exercise 03: Dimmer

Implement a simple dimmer application, allowing to set the brightness (duty cycle) of the LEDs from 0-100%.

#define BRIGHTNESS (75) // in %

Use either of the two:

  • Systick
  • GPTM: 32 Bit (down)

Advanced
Implement the same functionality, but use the PWM mode and the CCP functionality of the GPTMs, connected GPIO pins, to drive the pin state.

Exercise 04: Chasing Light & Button

Implement a simple chasing light application, which increments the position of the chasing light after a timeout.
Allow the user to increment/decrement the speed, from 1 to 10 s, in 1 s steps.

Exercise 05: Dimmer & Button

Implement a simple dimmer application, allowing to set the brightness (duty cycle) of the LED.
Allow the user to increment/decrement the brightness from 0-100%, in 10% steps.

Extension 1:
After reaching 100%, the application should restart again from 0% on the next button press.

HowTo: Timers on TivaC

API

There are basically two approaches. You can either study

  • the microcontroller manual (TM4C1294NCPDT) and implement your application by directly manipulating the registers and special function registers (SFR), or study
  • the peripheral driver manual (TivaWare) and implement your application using the functions provided by the API.

When working at "register" level, there are several files defining useful macros, for working with both timers.

  • hw_nvic.h: defines macros for the SysTick timer, which is a part of the NVIC controller
  • hw_timer.h: defines macros for the GPTM timer

Using the TivaWare "driver" API is outlined below. For further details on both approaches, please refer to the mentioned manuals.

TivaWare

TivaWare provides several function for working with timers (SysTick, GPTM) on the TM4C1294NCPDT. First section shows functions most important functions of the SysTick timer. The second section show functions related to GPTMs and provides some guidance on LOAD and MATCH calculation for different modes (16 bit up/down, 32 bit).

SysTick

SysTick is a simple 24 bit timer that is part of the NVIC controller in the Cortex-M microprocessor. Its intended purpose is to provide a periodic interrupt for an RTOS, but it can be used for other simple timing purposes.

#include <driverlib/systick.h>

Loading start values (LOAD) is achieved with the following function.

  • SysTickPeriodSet()

ISRs can be registered with a register function.

  • SysTickIntRegister()

The SysTick ISR does not need to clear the SysTick interrupt source as it is cleared automatically by the NVIC when the SysTick ISR is called. Following two functions are used to enable or disable the IRQ, respectively.

  • SysTickIntEnable()
  • SysTickIntDisable()

Finally, the following functions are provided allowing to enable or disable the SysTick timer, respectively.

  • SysTickEnable()
  • SysTickDisable()

GPTM

The GPT Module is probably one of the most complex modules of the TM4C1294NCPDT microcontroller.

#include <driverlib/timer.h>

Usually, you'll want to operate a GPT module as a 32 bit (count-down) timer. However, each timer module consists of two independent 16 bit timer (Timer A, Timer B) which can be concatenated to a single 32 bit timer. Each timer unit can be operated in different modes (one-shot, periodic, input edge count/time, PWM).


Configuration
The TivaWare provides a function to configure the timer modules (Timer A, Timer B).

  • TimerConfigure()

Several macros are provided and can be used in combination to enable the different modes. Make sure that the timer is disabled before providing a new configuration. When using a GPTM in split-pair mode, that is, one of the 16 bit timers, you have to provide a configuration for both.

// Periodic 32 bit timer (down).
TimerConfigure(TIMER0_BASE, TIMER_CFG_PERIODIC);
// Periodic 16 bit timer (down) and one-shot 16 bit timer (up).
TimerConfigure(TIMER0_BASE, TIMER_CFG_SPLIT_PAIR | TIMER_CFG_A_PERIODIC | TIMER_CFG_B_ONE_SHOT_UP);

Note, however, that the SysTick timer does not provide such a function, as no other mode, except for count down, is provided.


Interval Load & Match
Loading start (or overflow) values (LOAD) is achieved with the following function.

  • TimerLoadSet()

When in count-down mode, the timer will load this value and start couting down to 0 (timeout). In count-up mode, the timer will start from 0 and count-up until reaching the loaded value.

Note, that when using the GPT module as 32 bit timer, you have to use TIMER_A for the configuration and loading values (LOAD, MATCH).

// Set 32 bit LOAD value
TimerLoadSet(TIMER0_BASE, TIMER_A, 0xffffffff);
// Set 16-bit LOAD value for both timer
TimerLoadSet(TIMER0_BASE, TIMER_BOTH, 0xffff);

In periodic mode, the timer will reload the initial value, depending on the current count direction, and repeat the complete operation. In one-shot mode, the timer will stop after the first iteration.

To provide the timer a value to compare against the counter (MATCH), use the following function.

  • TimerMatchSet()

Update
The default behavior of the timer is to update the counter or match values (LOAD, MATCH), immediately, on the next clock cycle, when TimerLoadSet() is called. If desired, the counter and match values can be updated after a timeout, independently.

  • TimerUpdateMode()

Prescaler
To set the prescaler value of a timer, use the following function.

  • TimerPrescalerSet()

NOTE: Values from 0-255, will result in prescale values from 1-256.
IMPORTANT: The prescaler of GPT modules of the TM4C1294NCPDT behaves differently, depending on the count direction (up/down). When counting down, the prescaler behaves as a true prescaler, effectively, dividing the clock frequency of the timer. However, when counting up, the prescaler behaves as a linear extension to the counter, effectively creating a 24 bit timer.

When counting down, you have to choose a prescaler and load the 16 bit start value (LOAD). Note, that the size of the prescaler has changes the resolution of the timer.

When counting up, you have to calculate a 24 bit start value (without frequency division). The upper 8 bits are loaded into the prescaler, the lower 16 bits are the required timeout value (LOAD).


Interrupt

ISRs for timer interrupts can be registered with a register function.

  • TimerIntRegister()

Individual interrupt sources (timeout, match) within the a timer module are managed with following two functions.

  • TimerIntEnable()
  • TimerIntDisable()

Inside the ISR, you can use following function to retrieve and clear the current interrupt status, respectively.

  • TimerIntStatus()
  • TimerIntClear()

Debugging

When stoping the microcontroller during debugging, the timer continues counting, on default. Following function can be used to configure the behavior during debugging.

  • TimerControlStall()

Pin Control
Some GPIO are connected to the GPT Modules (Alternate Pin Function, cf. GPIO Pins and Alternate Functions, Table 10-2). When enabled, the state of those pins can be control by timers. Hence, ISRs to toggle the pin state are not required.

  • GPIOPinConfigure(): allow the timer to drive the GPIO pin state.
  • TimerConfigure(): enable and configure timer functionality.

This could be used to toggle the board LED without an intervention by the Cortex-M microprocessor. Additionally, with a changing match value, different Duty Cycles can be achieved, without manually controlling the pin state (cf. 16-Bit PWM Mode Example, Figure 13-4).

Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="121.09544mm"
height="202.52266mm"
viewBox="0 0 121.09544 202.52266"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="timer.svg">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2387"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path2385"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker25120"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path25118"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker24118"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path24116"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker23796"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mstart">
<path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path23794"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker23480"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path23478"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker23070"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mstart">
<path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path23068"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path5952"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path5949"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker20612"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path20610"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker20314"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
inkscape:connector-curvature="0"
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path20312" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker17952"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path17950"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker17066"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
id="path17064"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker16772"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#71787d;fill-opacity:1;fill-rule:evenodd;stroke:#71787d;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path16770"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker15694"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path15692"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker15426"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path15424"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker15176"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path15174"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker14944"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path14942"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#71787d;fill-opacity:1;fill-rule:evenodd;stroke:#71787d;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker14316"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path14314"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker13588"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path13586"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker13368"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path13366"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker13090"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path13088"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker12228"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
id="path12226"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11844"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11842"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11624"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#08649a;fill-opacity:1;fill-rule:evenodd;stroke:#08649a;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11622"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11260"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11258"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10419"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10417"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path9173"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker8299"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8297"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5214"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend"
inkscape:collect="always">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5212"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker3531"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3529"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker2612"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
inkscape:connector-curvature="0"
id="path2610"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker13070"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#72777a;fill-opacity:1;fill-rule:evenodd;stroke:#72777a;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path13068"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker12657"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#72777a;fill-opacity:1;fill-rule:evenodd;stroke:#72777a;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path12655"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker10310"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path10308"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker10168"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path10166"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker9267"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path9265"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker9137"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path9135"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker9007"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#d40000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path9005"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker8881"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8879"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker8757"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8755"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker8131"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#72777a;fill-opacity:1;fill-rule:evenodd;stroke:#72777a;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8129"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5792"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5790"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175-7"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path9173-0"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175-3"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path9173-6"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175-6"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path9173-2"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175-1"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path9173-8"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker9175-9"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path9173-20"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#8bb124;fill-opacity:1;fill-rule:evenodd;stroke:#8bb124;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11844-5"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11842-9"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker11844-2"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path11842-8"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker14944-1"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path14942-9"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#71787d;fill-opacity:1;fill-rule:evenodd;stroke:#71787d;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1148-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
inkscape:connector-curvature="0"
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1146-1" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="marker18804-0"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path18802-6"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path5949-0"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path5952-1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4142136"
inkscape:cx="300.96487"
inkscape:cy="387.42709"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="2560"
inkscape:window-height="1376"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:snap-nodes="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-global="true">
<inkscape:grid
type="xygrid"
id="grid4485"
originx="-12.122256"
originy="8.1860708" />
<sodipodi:guide
position="2.4298258,145.7694"
orientation="1,0"
id="guide1032"
inkscape:locked="false" />
<sodipodi:guide
position="-0.21600744,205.30064"
orientation="0,1"
id="guide1034"
inkscape:locked="false" />
<sodipodi:guide
position="2.9589925,172.7569"
orientation="1,0"
id="guide3488"
inkscape:locked="false" />
<sodipodi:guide
position="2.4298258,172.22773"
orientation="0,1"
inkscape:locked="false"
id="guide3492" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-12.122258,-102.66341)">
<rect
style="opacity:1;vector-effect:none;fill:#08649a;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5198"
width="105.83333"
height="1.3229088"
x="14.552083"
y="158.09375"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<g
aria-label="}"
style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:500%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text13684" />
<text
id="text13881"
y="329.50803"
x="427.69028"
style="font-style:normal;font-weight:normal;font-size:28.22222137px;line-height:500%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332px"
y="407.39474"
x="427.69028"
id="tspan13879"
sodipodi:role="line" /></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 13.229167,125.02076 H 62.177083"
id="path1042"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="13.879256"
y="128.74405"
id="text1038-3"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan1036-6"
x="13.879256"
y="128.74405"
style="font-size:2.11666656px;stroke-width:0.26458332">0</tspan></text>
<text
id="text1130"
y="128.74405"
x="119.69347"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="128.74405"
x="119.69347"
id="tspan1128"
sodipodi:role="line">1</tspan></text>
<path
inkscape:connector-curvature="0"
id="path2608"
d="M 74.083333,125.02076 H 128.32291"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2387)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3340"
d="M 62.177084,125.02076 H 74.083333"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.1, 0.1;stroke-dashoffset:0;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,122.37493 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5"
id="path3494"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path3527"
d="m 73.818754,122.37493 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529164 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529172 v 0.52916 h 0.52915 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5"
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#08649a;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1"
d="M 62.177084,122.01035 H 73.289583"
id="path3647"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,119.7291 c 0,-3.96876 52.916668,1.32291 52.916667,-2.64584 10e-7,3.96875 52.91667,-1.32292 52.91666,2.64584"
id="path3871"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="58.371113"
y="116.26005"
id="text1038-5"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan1036-3"
x="58.371113"
y="116.26005"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">5.000.000 Clock Ticks (<tspan
style="font-weight:bold"
id="tspan2733">System</tspan> Clock)</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="129.3244"
y="125.69427"
id="text3893"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan3891"
x="129.3244"
y="125.69427"
style="font-size:2.11666656px;stroke-width:0.26458332">t / s</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 15.610417,124.49159 v 1.05834"
id="path3895"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3897"
d="m 16.66875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 17.677083,124.49159 v 1.05834"
id="path3899"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3901"
d="m 18.735417,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.84375,124.22701 v 1.5875"
id="path3903"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3905"
d="m 20.902083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 21.960416,124.49159 v 1.05834"
id="path3907"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3909"
d="m 22.968749,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 24.027083,124.49159 v 1.05834"
id="path3911"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3913"
d="m 25.135416,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 26.19375,124.49159 v 1.05834"
id="path3915"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3917"
d="m 27.252083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.260416,124.49159 v 1.05834"
id="path3919"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3921"
d="m 29.31875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 30.427083,124.22701 v 1.5875"
id="path3923"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text1130-2"
y="128.74405"
x="18.406111"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="128.74405"
x="18.406111"
id="tspan1128-9"
sodipodi:role="line">1µ</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="23.736534"
y="128.74405"
id="text3937"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan3935"
x="23.736534"
y="128.74405"
style="font-size:2.11666656px;stroke-width:0.26458332">2µ</tspan></text>
<text
id="text3941"
y="128.74405"
x="29.025101"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="128.74405"
x="29.025101"
id="tspan3939"
sodipodi:role="line">3µ</tspan></text>
<path
inkscape:connector-curvature="0"
id="path3983"
d="m 31.435417,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 32.49375,124.49159 v 1.05834"
id="path3985"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3987"
d="m 33.502083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 34.560417,124.49159 v 1.05834"
id="path3989"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3991"
d="m 35.66875,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="34.266766"
y="128.74405"
id="text3995"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan3993"
x="34.266766"
y="128.74405"
style="font-size:2.11666656px;stroke-width:0.26458332">4µ</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 36.777083,124.49159 v 1.05834"
id="path3997"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path3999"
d="m 37.835416,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 38.843749,124.49159 v 1.05834"
id="path4001"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4003"
d="m 39.902083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 41.010416,124.22701 v 1.5875"
id="path4005"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text4009"
y="128.74405"
x="39.608433"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="128.74405"
x="39.608433"
id="tspan4007"
sodipodi:role="line">5µ</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4011"
d="m 42.06875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 43.127083,124.49159 v 1.05834"
id="path4013"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4015"
d="m 44.135416,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 45.19375,124.49159 v 1.05834"
id="path4017"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4019"
d="m 46.302083,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="44.900101"
y="128.74405"
id="text4023"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan4021"
x="44.900101"
y="128.74405"
style="font-size:2.11666656px;stroke-width:0.26458332">6µ</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 47.360417,124.49159 v 1.05834"
id="path4025"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4027"
d="m 48.41875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 49.427083,124.49159 v 1.05834"
id="path4029"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4031"
d="m 50.485417,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 51.59375,124.22701 v 1.5875"
id="path4033"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text4037"
y="128.74405"
x="50.191769"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="128.74405"
x="50.191769"
id="tspan4035"
sodipodi:role="line">7µ</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4039"
d="m 52.602083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 53.660416,124.49159 v 1.05834"
id="path4041"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4043"
d="m 54.668749,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 55.727083,124.49159 v 1.05834"
id="path4045"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4047"
d="m 56.835416,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="55.433434"
y="128.74405"
id="text4051"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan4049"
x="55.433434"
y="128.74405"
style="font-size:2.11666656px;stroke-width:0.26458332">8µ</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57.94375,124.49159 v 1.05834"
id="path4053"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4055"
d="m 59.002083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 60.010416,124.49159 v 1.05834"
id="path4057"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4059"
d="m 61.06875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4541"
d="m 14.552083,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4558"
d="m 116.15208,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 117.21042,124.49159 v 1.05834"
id="path4560"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4562"
d="m 118.21875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.27708,124.49159 v 1.05834"
id="path4564"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4566"
d="m 120.38542,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 110.8692,124.49159 v 1.05834"
id="path4572"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4574"
d="m 111.92754,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 112.93587,124.49159 v 1.05834"
id="path4576"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4578"
d="m 113.9942,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 115.10254,124.22701 v 1.5875"
id="path4580"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4601"
d="m 105.56874,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 106.62708,124.49159 v 1.05834"
id="path4603"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4605"
d="m 107.63541,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 108.69374,124.49159 v 1.05834"
id="path4607"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4609"
d="m 109.80208,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100.27708,124.49159 v 1.05834"
id="path4615"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4617"
d="m 101.33542,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 102.34375,124.49159 v 1.05834"
id="path4619"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4621"
d="m 103.40208,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 104.51042,124.22701 v 1.5875"
id="path4623"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4629"
d="m 94.98541,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 96.04375,124.49159 v 1.05834"
id="path4631"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4633"
d="m 97.05208,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 98.11041,124.49159 v 1.05834"
id="path4635"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4637"
d="m 99.21875,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 89.693743,124.49159 v 1.05834"
id="path4643"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4645"
d="m 90.752083,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 91.760413,124.49159 v 1.05834"
id="path4647"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4649"
d="m 92.818743,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 93.927083,124.22701 v 1.5875"
id="path4651"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text4655"
y="128.74405"
x="90.897812"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="128.74405"
x="90.897812"
id="tspan4653"
sodipodi:role="line">995m</tspan></text>
<path
inkscape:connector-curvature="0"
id="path4657"
d="m 84.402077,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 85.460417,124.49159 v 1.05834"
id="path4659"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4661"
d="m 86.468747,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 87.527077,124.49159 v 1.05834"
id="path4663"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4665"
d="m 88.635417,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 79.11041,124.49159 v 1.05834"
id="path4671"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4673"
d="m 80.16875,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.17708,124.49159 v 1.05834"
id="path4675"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4677"
d="m 82.23541,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 83.34375,124.22701 v 1.5875"
id="path4679"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 74.877083,124.49159 v 1.05834"
id="path4687"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4689"
d="m 75.885413,124.49159 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 76.943743,124.49159 v 1.05834"
id="path4691"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path4693"
d="m 78.052083,124.22701 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text4964"
y="165.78529"
x="13.879256"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="165.78529"
x="13.879256"
id="tspan4962"
sodipodi:role="line">0</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="119.69347"
y="165.78529"
id="text4968"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan4966"
x="119.69347"
y="165.78529"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2612)"
d="M 13.229167,162.06261 H 128.32291"
id="path4970"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text4982"
y="162.73557"
x="129.3244"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="162.73557"
x="129.3244"
id="tspan4980"
sodipodi:role="line">t / s</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,161.26886 v 1.5875"
id="path5104"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 120.38542,161.26886 v 1.5875"
id="path5114"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5792"
d="m 35.71875,161.26886 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.885416,161.26886 v 1.5875"
id="path5794"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5796"
d="m 78.052085,161.26886 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 99.218751,161.26886 v 1.5875"
id="path5798"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text5808"
y="159.14046"
x="64.767876"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.05833328px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="159.14046"
x="64.767876"
id="tspan5806"
sodipodi:role="line">5.000.000</tspan></text>
<g
id="g5872"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5810"
width="21.166668"
height="1.3229065"
x="14.552083"
y="155.44792" />
<text
id="text5814"
y="156.49463"
x="22.417236"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="22.417236"
id="tspan5812"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
id="g5877"
transform="translate(-0.05000099)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="35.768749"
height="1.3229065"
width="21.166668"
id="rect5840"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="43.633904"
y="156.49463"
id="text5844"><tspan
sodipodi:role="line"
id="tspan5842"
x="43.633904"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
id="g5882"
transform="translate(0.04392093)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5846"
width="21.166668"
height="1.3229065"
x="56.841492"
y="155.44792" />
<text
id="text5850"
y="156.49463"
x="64.706642"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="64.706642"
id="tspan5848"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
id="g5887"
transform="translate(-0.05000502)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="78.102081"
height="1.3229065"
width="21.166668"
id="rect5852"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="85.967232"
y="156.49463"
id="text5856"><tspan
sodipodi:role="line"
id="tspan5854"
x="85.967232"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
id="g5867"
transform="translate(-6.6757202e-6)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5858"
width="21.166668"
height="1.3229065"
x="99.21875"
y="155.44792" />
<text
id="text5862"
y="156.49463"
x="107.0839"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="107.0839"
id="tspan5860"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="96.184311"
y="165.78529"
id="text5891"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan5889"
x="96.184311"
y="165.78529"
style="font-size:2.11666656px;stroke-width:0.26458332">800m</tspan></text>
<text
id="text5895"
y="165.78529"
x="32.678627"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="165.78529"
x="32.678627"
id="tspan5893"
sodipodi:role="line">200m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="53.871128"
y="165.78529"
id="text5899"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan5897"
x="53.871128"
y="165.78529"
style="font-size:2.11666656px;stroke-width:0.26458332">400m</tspan></text>
<text
id="text5903"
y="165.78529"
x="75.015579"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="165.78529"
x="75.015579"
id="tspan5901"
sodipodi:role="line">600m</tspan></text>
<path
inkscape:connector-curvature="0"
id="path6333"
d="M 99.21875,152.52449 V 150.6724"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13588)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13368)"
d="M 78.052083,152.52449 V 150.6724"
id="path7113"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path7653"
d="M 56.885417,152.52449 V 150.6724"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13090)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11260)"
d="M 35.71875,152.52449 V 150.6724"
id="path8295"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9175)"
d="M 120.37866,152.52449 V 150.6724"
id="path9171"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker10419)"
d="M 120.37866,152.52449 V 150.6724"
id="path9171-9"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="13.879256"
y="148.66508"
id="text11802"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan11800"
x="13.879256"
y="148.66508"
style="font-size:2.11666656px;stroke-width:0.26458332">0</tspan></text>
<text
id="text11806"
y="148.66508"
x="119.69347"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="148.66508"
x="119.69347"
id="tspan11804"
sodipodi:role="line">1</tspan></text>
<path
inkscape:connector-curvature="0"
id="path11808"
d="M 13.229167,144.94209 H 128.32291"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11844)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="129.3244"
y="145.61536"
id="text11812"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan11810"
x="129.3244"
y="145.61536"
style="font-size:2.11666656px;stroke-width:0.26458332">t / s</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path11814"
d="m 14.552083,146.45895 v -6.61458"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker12228)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path11816"
d="m 120.38542,144.14834 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.71875,144.14834 v 1.5875"
id="path11818"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path11820"
d="m 56.885416,144.14834 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 78.052085,144.14834 v 1.5875"
id="path11822"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path11824"
d="m 99.218751,144.14834 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="11.93829"
y="138.47206"
id="text11812-7"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan11810-3"
x="11.93829"
y="138.47206"
style="font-size:2.11666656px;stroke-width:0.26458332">U / V</tspan></text>
<path
style="fill:#000000;fill-opacity:0;stroke:#08649a;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,144.94188 v -2.64584 h 21.166666 v 2.64584 h 21.166666 v -2.64584 h 21.166667 v 2.64584 h 21.166661 v -2.64584 h 21.166677 v 2.56854"
id="path12758"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text12768"
y="148.66508"
x="96.184311"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="148.66508"
x="96.184311"
id="tspan12766"
sodipodi:role="line">800m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.678627"
y="148.66508"
id="text12772"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan12770"
x="32.678627"
y="148.66508"
style="font-size:2.11666656px;stroke-width:0.26458332">200m</tspan></text>
<text
id="text12776"
y="148.66508"
x="53.871128"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="148.66508"
x="53.871128"
id="tspan12774"
sodipodi:role="line">400m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="75.015579"
y="148.66508"
id="text12780"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan12778"
x="75.015579"
y="148.66508"
style="font-size:2.11666656px;stroke-width:0.26458332">600m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.468647"
y="154.10501"
id="text12942"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan12940"
x="32.468647"
y="154.10501"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text13334"
y="154.10501"
x="53.635315"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="154.10501"
x="53.635315"
id="tspan13332"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.801979"
y="154.10501"
id="text13338"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan13336"
x="74.801979"
y="154.10501"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text13342"
y="154.10501"
x="95.968643"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="154.10501"
x="95.968643"
id="tspan13340"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="117.12854"
y="154.10501"
id="text13346"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan13344"
x="117.12854"
y="154.10501"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<rect
y="203.07268"
x="14.552083"
height="1.3229088"
width="105.83333"
id="rect14034"
style="opacity:1;vector-effect:none;fill:#08649a;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="13.879256"
y="210.76422"
id="text14038"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14036"
x="13.879256"
y="210.76422"
style="font-size:2.11666656px;stroke-width:0.26458332">0</tspan></text>
<text
id="text14042"
y="210.76422"
x="119.69347"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="210.76422"
x="119.69347"
id="tspan14040"
sodipodi:role="line">1</tspan></text>
<path
inkscape:connector-curvature="0"
id="path14044"
d="M 13.229167,207.04182 H 128.32291"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2612)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="129.3244"
y="207.71449"
id="text14048"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14046"
x="129.3244"
y="207.71449"
style="font-size:2.11666656px;stroke-width:0.26458332">t / s</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14050"
d="m 14.552083,206.24807 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14052"
d="m 120.38542,206.24807 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.71875,206.24807 v 1.5875"
id="path14054"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14056"
d="m 56.885416,206.24807 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 78.052085,206.24807 v 1.5875"
id="path14058"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14060"
d="m 99.218751,206.24807 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="64.767876"
y="204.11938"
id="text14064"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14062"
x="64.767876"
y="204.11938"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.05833328px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">5.000.000</tspan></text>
<g
id="g14072"
transform="translate(0,44.97917)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="14.552083"
height="1.3229065"
width="21.166668"
id="rect14066"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="22.417236"
y="156.49463"
id="text14070"><tspan
sodipodi:role="line"
id="tspan14068"
x="22.417236"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
transform="translate(-0.05000099,44.97917)"
id="g14080"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14074"
width="21.166668"
height="1.3229065"
x="35.768749"
y="155.44792" />
<text
id="text14078"
y="156.49463"
x="43.633904"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="43.633904"
id="tspan14076"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
transform="translate(0.04392093,44.97917)"
id="g14088"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="56.841492"
height="1.3229065"
width="21.166668"
id="rect14082"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="64.706642"
y="156.49463"
id="text14086"><tspan
sodipodi:role="line"
id="tspan14084"
x="64.706642"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
transform="translate(-0.05000502,44.97917)"
id="g14096"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14090"
width="21.166668"
height="1.3229065"
x="78.102081"
y="155.44792" />
<text
id="text14094"
y="156.49463"
x="85.967232"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="85.967232"
id="tspan14092"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
transform="translate(-6.6757202e-6,44.97917)"
id="g14104"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="99.21875"
height="1.3229065"
width="21.166668"
id="rect14098"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="107.0839"
y="156.49463"
id="text14102"><tspan
sodipodi:role="line"
id="tspan14100"
x="107.0839"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<text
id="text14108"
y="210.76422"
x="96.184311"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="210.76422"
x="96.184311"
id="tspan14106"
sodipodi:role="line">800m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.678627"
y="210.76422"
id="text14112"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14110"
x="32.678627"
y="210.76422"
style="font-size:2.11666656px;stroke-width:0.26458332">200m</tspan></text>
<text
id="text14116"
y="210.76422"
x="53.871128"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="210.76422"
x="53.871128"
id="tspan14114"
sodipodi:role="line">400m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="75.015579"
y="210.76422"
id="text14120"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14118"
x="75.015579"
y="210.76422"
style="font-size:2.11666656px;stroke-width:0.26458332">600m</tspan></text>
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13588)"
d="m 99.21875,193.79951 v -1.85209"
id="path14122"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path14124"
d="m 78.052083,193.79951 v -1.85209"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13368)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13090)"
d="m 56.885417,193.79951 v -1.85209"
id="path14126"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path14128"
d="m 35.71875,193.79951 v -1.85209"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11260)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path14130"
d="m 120.44478,193.79951 v -1.85209"
style="fill:none;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9175)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path14132"
d="m 120.44478,193.79951 v -1.85209"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker10419)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text14136"
y="189.63251"
x="13.879256"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="189.63251"
x="13.879256"
id="tspan14134"
sodipodi:role="line">0</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="119.69347"
y="189.63251"
id="text14140"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14138"
x="119.69347"
y="189.63251"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker17066)"
d="M 13.229167,185.91041 H 128.32291"
id="path14142"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text14146"
y="186.58278"
x="129.3244"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="186.58278"
x="129.3244"
id="tspan14144"
sodipodi:role="line">t / s</tspan></text>
<path
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker17952)"
d="M 14.552083,187.42727 V 176.61458"
id="path14148"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 120.38542,185.11666 v 1.5875"
id="path14150"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14152"
d="m 35.71875,185.11666 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.885416,185.11666 v 1.5875"
id="path14154"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path14156"
d="m 78.052085,185.11666 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 99.218751,185.11666 v 1.5875"
id="path14158"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text14162"
y="175.96501"
x="11.93829"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="175.96501"
x="11.93829"
id="tspan14160"
sodipodi:role="line">U / V</tspan></text>
<path
inkscape:connector-curvature="0"
id="path14164"
d="m 14.552083,185.9102 v -2.64584 h 5.291667 v 2.64584 h 15.875 v -2.64584 h 5.291667 v 2.64584 h 15.875 v -2.64584 h 5.291666 v 2.64579 h 15.875 v -2.64583 h 5.291667 v 2.64583 h 15.875 v -2.64583 h 5.29167 v 2.64583 h 15.875"
style="fill:#000000;fill-opacity:0;stroke:#08649a;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="96.184311"
y="189.63251"
id="text14168"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14166"
x="96.184311"
y="189.63251"
style="font-size:2.11666656px;stroke-width:0.26458332">800m</tspan></text>
<text
id="text14172"
y="189.63251"
x="32.678627"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="189.63251"
x="32.678627"
id="tspan14170"
sodipodi:role="line">200m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="53.871128"
y="189.63251"
id="text14176"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14174"
x="53.871128"
y="189.63251"
style="font-size:2.11666656px;stroke-width:0.26458332">400m</tspan></text>
<text
id="text14180"
y="189.63251"
x="75.015579"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="189.63251"
x="75.015579"
id="tspan14178"
sodipodi:role="line">600m</tspan></text>
<text
id="text14184"
y="195.37982"
x="32.468647"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="195.37982"
x="32.468647"
id="tspan14182"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="53.635315"
y="195.37982"
id="text14188"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14186"
x="53.635315"
y="195.37982"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text14192"
y="195.37982"
x="74.801979"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="195.37982"
x="74.801979"
id="tspan14190"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="95.968643"
y="195.37982"
id="text14196"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14194"
x="95.968643"
y="195.37982"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text14200"
y="195.37982"
x="117.19469"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="195.37982"
x="117.19469"
id="tspan14198"
sodipodi:role="line">Timeout</tspan></text>
<g
id="g14248"
transform="translate(0,1.2890708)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14202"
width="5.291667"
height="1.3229167"
x="14.552083"
y="197.78125" />
<text
id="text14206"
y="198.82796"
x="15.00451"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="198.82796"
x="15.00451"
id="tspan14204"
sodipodi:role="line">250.000</tspan></text>
</g>
<g
id="g14216"
transform="translate(-0.05000099,42.333326)" />
<g
transform="translate(21.166665,1.2890708)"
id="g14256"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="197.78125"
x="14.552083"
height="1.3229167"
width="5.291667"
id="rect14250"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="15.00451"
y="198.82796"
id="text14254"><tspan
sodipodi:role="line"
id="tspan14252"
x="15.00451"
y="198.82796"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">250.000</tspan></text>
</g>
<g
id="g14264"
transform="translate(42.33333,1.2890708)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14258"
width="5.291667"
height="1.3229167"
x="14.552083"
y="197.78125" />
<text
id="text14262"
y="198.82796"
x="15.00451"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="198.82796"
x="15.00451"
id="tspan14260"
sodipodi:role="line">250.000</tspan></text>
</g>
<g
transform="translate(63.499993,1.2890708)"
id="g14272"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="197.78125"
x="14.552083"
height="1.3229167"
width="5.291667"
id="rect14266"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="15.00451"
y="198.82796"
id="text14270"><tspan
sodipodi:role="line"
id="tspan14268"
x="15.00451"
y="198.82796"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">250.000</tspan></text>
</g>
<g
id="g14280"
transform="translate(84.66666,1.2890708)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14274"
width="5.291667"
height="1.3229167"
x="14.552083"
y="197.78125" />
<text
id="text14278"
y="198.82796"
x="15.00451"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="198.82796"
x="15.00451"
id="tspan14276"
sodipodi:role="line">250.000</tspan></text>
</g>
<path
inkscape:connector-curvature="0"
id="path14282"
d="M 83.343754,195.91619 V 194.0641"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
d="M 62.177087,195.91619 V 194.0641"
id="path14284"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path14286"
d="M 41.010421,195.91619 V 194.0641"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
d="M 19.843754,195.91619 V 194.0641"
id="path14288"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9175)"
d="M 104.56978,195.91619 V 194.0641"
id="path14290"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker16772)"
d="M 104.56978,195.91619 V 194.0641"
id="path14292"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="17.39567"
y="197.49646"
id="text14296"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14294"
x="17.39567"
y="197.49646"
style="font-weight:bold;font-size:1.41111112px;fill:#71787d;fill-opacity:1;stroke-width:0.26458332">Match</tspan></text>
<text
id="text14300"
y="197.49646"
x="38.562336"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="197.49646"
x="38.562336"
id="tspan14298"
sodipodi:role="line">Match</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="59.729004"
y="197.49646"
id="text14304"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14302"
x="59.729004"
y="197.49646"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Match</tspan></text>
<text
id="text14308"
y="197.49646"
x="80.895668"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="197.49646"
x="80.895668"
id="tspan14306"
sodipodi:role="line">Match</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="102.1217"
y="197.49646"
id="text14312"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan14310"
x="102.1217"
y="197.49646"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Match</tspan></text>
<path
inkscape:connector-curvature="0"
id="path17332"
d="M 14.552083,181.90625 H 19.84375"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow1Mstart);marker-end:url(#Arrow1Mend)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker23070);marker-end:url(#marker23480)"
d="M 14.552083,179.26041 H 35.71875"
id="path18800"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker23796);marker-end:url(#marker24118)"
d="m 19.84375,181.90625 h 15.875"
id="path20310"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<g
id="g24774"
transform="translate(-8.4125903,6.4657542)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<text
id="text24746"
y="174.74028"
x="24.753529"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:1.41111112px;stroke-width:0.26458332"
y="174.74028"
x="24.753529"
id="tspan24744"
sodipodi:role="line">T</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="25.457727"
y="175.04276"
id="text24750"><tspan
sodipodi:role="line"
id="tspan24748"
x="25.457727"
y="175.04276"
style="font-size:0.70555556px;stroke-width:0.26458332">ON</tspan></text>
</g>
<g
id="g24768"
transform="translate(-0.89607975,6.4657542)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="27.663944"
y="174.74028"
id="text24754"><tspan
sodipodi:role="line"
id="tspan24752"
x="27.663944"
y="174.74028"
style="font-size:1.41111112px;stroke-width:0.26458332">T</tspan></text>
<text
id="text24758"
y="175.04276"
x="28.368143"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:0.70555556px;stroke-width:0.26458332"
y="175.04276"
x="28.368143"
id="tspan24756"
sodipodi:role="line">OFF</tspan></text>
</g>
<text
id="text24762"
y="178.45184"
x="24.704435"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:1.41111112px;stroke-width:0.26458332"
y="178.45184"
x="24.704435"
id="tspan24760"
sodipodi:role="line">T</tspan></text>
<rect
style="opacity:1;vector-effect:none;fill:#08649a;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24848"
width="105.83333"
height="1.3229088"
x="14.552083"
y="248.05174"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text24852"
y="255.7433"
x="13.879256"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="255.7433"
x="13.879256"
id="tspan24850"
sodipodi:role="line">0</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="119.69347"
y="255.7433"
id="text24856"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24854"
x="119.69347"
y="255.7433"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1</tspan></text>
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2612)"
d="M 13.229167,252.02094 H 128.32291"
id="path24858"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text24862"
y="252.69356"
x="129.3244"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="252.69356"
x="129.3244"
id="tspan24860"
sodipodi:role="line">t / s</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,251.22719 v 1.5875"
id="path24864"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 120.38542,251.22719 v 1.5875"
id="path24866"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24868"
d="m 35.71875,251.22719 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.885416,251.22719 v 1.5875"
id="path24870"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24872"
d="m 78.052085,251.22719 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 99.218751,251.22719 v 1.5875"
id="path24874"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text24878"
y="249.09845"
x="64.767876"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.05833328px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="249.09845"
x="64.767876"
id="tspan24876"
sodipodi:role="line">5.000.000</tspan></text>
<g
transform="translate(0,89.958332)"
id="g24886"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24880"
width="21.166668"
height="1.3229065"
x="14.552083"
y="155.44792" />
<text
id="text24884"
y="156.49463"
x="22.417236"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="22.417236"
id="tspan24882"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
id="g24894"
transform="translate(-0.05000099,89.958332)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="35.768749"
height="1.3229065"
width="21.166668"
id="rect24888"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="43.633904"
y="156.49463"
id="text24892"><tspan
sodipodi:role="line"
id="tspan24890"
x="43.633904"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
id="g24902"
transform="translate(0.04392093,89.958332)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24896"
width="21.166668"
height="1.3229065"
x="56.841492"
y="155.44792" />
<text
id="text24900"
y="156.49463"
x="64.706642"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="64.706642"
id="tspan24898"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<g
id="g24910"
transform="translate(-0.05000502,89.958332)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="155.44792"
x="78.102081"
height="1.3229065"
width="21.166668"
id="rect24904"
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="85.967232"
y="156.49463"
id="text24908"><tspan
sodipodi:role="line"
id="tspan24906"
x="85.967232"
y="156.49463"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1.000.000</tspan></text>
</g>
<g
id="g24918"
transform="translate(-6.6757202e-6,89.958332)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#8bb124;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24912"
width="21.166668"
height="1.3229065"
x="99.21875"
y="155.44792" />
<text
id="text24916"
y="156.49463"
x="107.0839"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="156.49463"
x="107.0839"
id="tspan24914"
sodipodi:role="line">1.000.000</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="96.184311"
y="255.7433"
id="text24922"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24920"
x="96.184311"
y="255.7433"
style="font-size:2.11666656px;stroke-width:0.26458332">800m</tspan></text>
<text
id="text24926"
y="255.7433"
x="32.678627"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="255.7433"
x="32.678627"
id="tspan24924"
sodipodi:role="line">200m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="53.871128"
y="255.7433"
id="text24930"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24928"
x="53.871128"
y="255.7433"
style="font-size:2.11666656px;stroke-width:0.26458332">400m</tspan></text>
<text
id="text24934"
y="255.7433"
x="75.015579"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="255.7433"
x="75.015579"
id="tspan24932"
sodipodi:role="line">600m</tspan></text>
<path
inkscape:connector-curvature="0"
id="path24936"
d="m 99.21875,238.77863 v -1.85209"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13588)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13368)"
d="m 78.052083,238.77863 v -1.85209"
id="path24938"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path24940"
d="m 56.885417,238.77863 v -1.85209"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13090)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11260)"
d="m 35.71875,238.77863 v -1.85209"
id="path24942"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9175)"
d="m 120.44478,238.77863 v -1.85209"
id="path24944"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker10419)"
d="m 120.44478,238.77863 v -1.85209"
id="path24946"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="13.879256"
y="234.61157"
id="text24950"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24948"
x="13.879256"
y="234.61157"
style="font-size:2.11666656px;stroke-width:0.26458332">0</tspan></text>
<text
id="text24954"
y="234.61157"
x="119.69347"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="234.61157"
x="119.69347"
id="tspan24952"
sodipodi:role="line">1</tspan></text>
<path
inkscape:connector-curvature="0"
id="path24956"
d="M 13.229167,230.88953 H 128.32291"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker17066)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="129.3244"
y="231.56184"
id="text24960"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24958"
x="129.3244"
y="231.56184"
style="font-size:2.11666656px;stroke-width:0.26458332">t / s</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24962"
d="M 14.552083,232.40639 V 225.5625"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker25120)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24964"
d="m 120.38542,230.09578 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.71875,230.09578 v 1.5875"
id="path24966"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24968"
d="m 56.885416,230.09578 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 78.052085,230.09578 v 1.5875"
id="path24970"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path24972"
d="m 99.218751,230.09578 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="11.93829"
y="224.91292"
id="text24976"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24974"
x="11.93829"
y="224.91292"
style="font-size:2.11666656px;stroke-width:0.26458332">U / V</tspan></text>
<path
sodipodi:nodetypes="ccccccccccccccccccccc"
style="fill:#000000;fill-opacity:0;stroke:#08649a;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,230.88932 v -2.64584 h 5.291667 v 2.64584 h 15.875 v -2.64584 h 10.583333 v 2.64584 h 10.583334 v -2.64584 h 15.875 v 2.64579 h 5.291666 v -2.64583 h 15.875 v 2.64583 h 5.291667 v -2.64583 h 15.875 v 2.64583 h 5.29167"
id="path24978"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text24982"
y="234.61157"
x="96.184311"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="234.61157"
x="96.184311"
id="tspan24980"
sodipodi:role="line">800m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.678627"
y="234.61157"
id="text24986"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24984"
x="32.678627"
y="234.61157"
style="font-size:2.11666656px;stroke-width:0.26458332">200m</tspan></text>
<text
id="text24990"
y="234.61157"
x="53.871128"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="234.61157"
x="53.871128"
id="tspan24988"
sodipodi:role="line">400m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="75.015579"
y="234.61157"
id="text24994"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24992"
x="75.015579"
y="234.61157"
style="font-size:2.11666656px;stroke-width:0.26458332">600m</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="32.468647"
y="240.35889"
id="text24998"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan24996"
x="32.468647"
y="240.35889"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text25002"
y="240.35889"
x="53.635315"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="240.35889"
x="53.635315"
id="tspan25000"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="74.801979"
y="240.35889"
id="text25006"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25004"
x="74.801979"
y="240.35889"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<text
id="text25010"
y="240.35889"
x="95.968643"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332"
y="240.35889"
x="95.968643"
id="tspan25008"
sodipodi:role="line">Timeout</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#8bb124;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="117.19469"
y="240.35889"
id="text25014"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25012"
x="117.19469"
y="240.35889"
style="font-weight:bold;font-size:1.41111112px;fill:#8bb124;fill-opacity:1;stroke-width:0.26458332">Timeout</tspan></text>
<g
transform="translate(0,46.268235)"
id="g25022"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="197.78125"
x="14.552083"
height="1.3229167"
width="5.291667"
id="rect25016"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="15.00451"
y="198.82796"
id="text25020"><tspan
sodipodi:role="line"
id="tspan25018"
x="15.00451"
y="198.82796"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">250.000</tspan></text>
</g>
<g
id="g25030"
transform="translate(21.166665,46.268235)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect25024"
width="10.583335"
height="1.3229218"
x="14.552083"
y="197.78125" />
<text
id="text25028"
y="198.82796"
x="17.648277"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="198.82796"
x="17.648277"
id="tspan25026"
sodipodi:role="line">500.000</tspan></text>
</g>
<g
transform="translate(42.33333,46.268235)"
id="g25038"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="197.78125"
x="14.552083"
height="1.3229218"
width="15.875004"
id="rect25032"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="20.291527"
y="198.82796"
id="text25036"><tspan
sodipodi:role="line"
id="tspan25034"
x="20.291527"
y="198.82796"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">750.000</tspan></text>
</g>
<g
id="g25046"
transform="translate(63.499993,46.268235)"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect25040"
width="15.875008"
height="1.3229218"
x="14.552083"
y="197.78125" />
<text
id="text25044"
y="198.82796"
x="20.291529"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="198.82796"
x="20.291529"
id="tspan25042"
sodipodi:role="line">750.000</tspan></text>
</g>
<g
transform="translate(84.699733,46.268235)"
id="g25054"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200">
<rect
y="197.78125"
x="14.552083"
height="1.3229218"
width="15.875007"
id="rect25048"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="20.291529"
y="198.82796"
id="text25052"><tspan
sodipodi:role="line"
id="tspan25050"
x="20.291529"
y="198.82796"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.0583334px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">750.000</tspan></text>
</g>
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
d="m 93.927084,240.89531 v -1.85209"
id="path25056"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path25058"
d="m 72.760417,240.89531 v -1.85209"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
sodipodi:nodetypes="cc"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
d="m 46.302083,240.89531 v -1.85209"
id="path25060"
inkscape:connector-curvature="0"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path25062"
d="m 19.843754,240.89531 v -1.85209"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker14944)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path25064"
d="m 115.15311,240.89531 v -1.85209"
style="fill:none;stroke:#8bb124;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9175)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:connector-curvature="0"
id="path25066"
d="m 115.15311,240.89531 v -1.85209"
style="opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:#71787d;stroke-width:0.12105117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker16772)"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
id="text25070"
y="242.47552"
x="17.39567"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#71787d;fill-opacity:1;stroke-width:0.26458332"
y="242.47552"
x="17.39567"
id="tspan25068"
sodipodi:role="line">Match</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="43.854"
y="242.47552"
id="text25074"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25072"
x="43.854"
y="242.47552"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Match</tspan></text>
<text
id="text25078"
y="242.47552"
x="70.312332"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="242.47552"
x="70.312332"
id="tspan25076"
sodipodi:role="line">Match</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="91.478996"
y="242.47552"
id="text25082"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25080"
x="91.478996"
y="242.47552"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Match</tspan></text>
<text
id="text25086"
y="242.47552"
x="112.70502"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111112px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#71787d;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="242.47552"
x="112.70502"
id="tspan25084"
sodipodi:role="line">Match</tspan></text>
<text
id="text25856"
y="227.39908"
x="23.413902"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#08649a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#08649a;fill-opacity:1;stroke-width:0.26458332"
y="227.39908"
x="23.413902"
id="tspan25854"
sodipodi:role="line">25%</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#08649a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="44.580566"
y="227.39908"
id="text25862"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25860"
x="44.580566"
y="227.39908"
style="font-weight:bold;font-size:1.41111112px;fill:#08649a;fill-opacity:1;stroke-width:0.26458332">50%</tspan></text>
<text
id="text25866"
y="227.39908"
x="65.747231"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#08649a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
style="font-weight:bold;font-size:1.41111112px;fill:#08649a;fill-opacity:1;stroke-width:0.26458332"
y="227.39908"
x="65.747231"
id="tspan25864"
sodipodi:role="line">75%</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#08649a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="86.913895"
y="227.39908"
id="text25870"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25868"
x="86.913895"
y="227.39908"
style="font-weight:bold;font-size:1.41111112px;fill:#08649a;fill-opacity:1;stroke-width:0.26458332">75%</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#08649a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="108.08057"
y="227.39908"
id="text25878"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan25876"
x="108.08057"
y="227.39908"
style="font-weight:bold;font-size:1.41111112px;fill:#08649a;fill-opacity:1;stroke-width:0.26458332">75%</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2035"
d="M 13.229168,301.02242 H 62.177084"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2039"
y="304.74579"
x="13.879257"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="304.74579"
x="13.879257"
id="tspan2037"
sodipodi:role="line">0</tspan></text>
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="119.69347"
y="304.74579"
id="text2043"><tspan
sodipodi:role="line"
id="tspan2041"
x="119.69347"
y="304.74579"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">1</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5214)"
d="M 74.083334,301.02242 H 128.32291"
id="path2045"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.1, 0.1;stroke-dashoffset:0;stroke-opacity:1"
d="M 62.177085,301.02242 H 74.083334"
id="path2047"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path2049"
d="m 14.552084,298.37659 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5"
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.818755,298.37659 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529164 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529171 v 0.52916 h 0.52915 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5"
id="path2051"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2053"
d="M 62.177085,298.01201 H 73.289584"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#08649a;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path2055"
d="m 14.552084,295.73076 c 0,-3.96876 52.916668,1.32291 52.916667,-2.64584 10e-7,3.96875 52.916669,-1.32292 52.916659,2.64584"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2059"
y="292.26184"
x="58.371113"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="292.26184"
x="58.371113"
id="tspan2057"
sodipodi:role="line">5.000.000 Clock Ticks (<tspan
style="font-weight:bold"
id="tspan2333">System</tspan> Clock)</tspan></text>
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2063"
y="301.69601"
x="129.3244"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="301.69601"
x="129.3244"
id="tspan2061"
sodipodi:role="line">t / s</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2065"
d="m 15.610418,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.668751,300.49325 v 1.05834"
id="path2067"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2069"
d="m 17.677084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.735418,300.49325 v 1.05834"
id="path2071"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2073"
d="m 19.843751,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.902084,300.49325 v 1.05834"
id="path2075"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2077"
d="m 21.960417,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 22.96875,300.49325 v 1.05834"
id="path2079"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2081"
d="m 24.027084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 25.135417,300.22867 v 1.5875"
id="path2083"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2085"
d="m 26.193751,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 27.252084,300.49325 v 1.05834"
id="path2087"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2089"
d="m 28.260417,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 29.318751,300.49325 v 1.05834"
id="path2091"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2093"
d="m 30.427084,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="18.406111"
y="304.74579"
id="text2097"><tspan
sodipodi:role="line"
id="tspan2095"
x="18.406111"
y="304.74579"
style="font-size:2.11666656px;stroke-width:0.26458332">1µ</tspan></text>
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2101"
y="304.74579"
x="23.736534"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="304.74579"
x="23.736534"
id="tspan2099"
sodipodi:role="line">2µ</tspan></text>
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="29.025101"
y="304.74579"
id="text2105"><tspan
sodipodi:role="line"
id="tspan2103"
x="29.025101"
y="304.74579"
style="font-size:2.11666656px;stroke-width:0.26458332">3µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 31.435418,300.49325 v 1.05834"
id="path2107"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2109"
d="m 32.493751,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 33.502084,300.49325 v 1.05834"
id="path2111"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2113"
d="m 34.560418,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.668751,300.22867 v 1.5875"
id="path2115"
inkscape:connector-curvature="0" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2119"
y="304.74579"
x="34.266766"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="304.74579"
x="34.266766"
id="tspan2117"
sodipodi:role="line">4µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2121"
d="m 36.777084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 37.835417,300.49325 v 1.05834"
id="path2123"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2125"
d="m 38.84375,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 39.902084,300.49325 v 1.05834"
id="path2127"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2129"
d="m 41.010417,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="39.608433"
y="304.74579"
id="text2133"><tspan
sodipodi:role="line"
id="tspan2131"
x="39.608433"
y="304.74579"
style="font-size:2.11666656px;stroke-width:0.26458332">5µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 42.068751,300.49325 v 1.05834"
id="path2135"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2137"
d="m 43.127084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 44.135417,300.49325 v 1.05834"
id="path2139"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2141"
d="m 45.193751,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 46.302084,300.22867 v 1.5875"
id="path2143"
inkscape:connector-curvature="0" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2147"
y="304.74579"
x="44.900101"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="304.74579"
x="44.900101"
id="tspan2145"
sodipodi:role="line">6µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2149"
d="m 47.360418,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 48.418751,300.49325 v 1.05834"
id="path2151"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2153"
d="m 49.427084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.485418,300.49325 v 1.05834"
id="path2155"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2157"
d="m 51.593751,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="50.191769"
y="304.74579"
id="text2161"><tspan
sodipodi:role="line"
id="tspan2159"
x="50.191769"
y="304.74579"
style="font-size:2.11666656px;stroke-width:0.26458332">7µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52.602084,300.49325 v 1.05834"
id="path2163"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2165"
d="m 53.660417,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 54.66875,300.49325 v 1.05834"
id="path2167"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2169"
d="m 55.727084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.835417,300.22867 v 1.5875"
id="path2171"
inkscape:connector-curvature="0" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2175"
y="304.74579"
x="55.433434"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:2.11666656px;stroke-width:0.26458332"
y="304.74579"
x="55.433434"
id="tspan2173"
sodipodi:role="line">8µ</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2177"
d="m 57.943751,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 59.002084,300.49325 v 1.05834"
id="path2179"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2181"
d="m 60.010417,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 61.068751,300.49325 v 1.05834"
id="path2183"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552084,300.22867 v 1.5875"
id="path2185"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 116.15208,300.49325 v 1.05834"
id="path2187"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2189"
d="m 117.21042,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 118.21875,300.49325 v 1.05834"
id="path2191"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2193"
d="m 119.27708,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 120.38542,300.22867 v 1.5875"
id="path2195"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2197"
d="m 110.8692,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 111.92754,300.49325 v 1.05834"
id="path2199"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2201"
d="m 112.93587,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 113.9942,300.49325 v 1.05834"
id="path2203"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2205"
d="m 115.10254,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 105.56874,300.49325 v 1.05834"
id="path2207"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2209"
d="m 106.62708,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 107.63541,300.49325 v 1.05834"
id="path2211"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2213"
d="m 108.69374,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 109.80208,300.22867 v 1.5875"
id="path2215"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2217"
d="m 100.27708,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 101.33542,300.49325 v 1.05834"
id="path2219"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2221"
d="m 102.34375,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 103.40208,300.49325 v 1.05834"
id="path2223"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2225"
d="m 104.51042,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 94.985411,300.49325 v 1.05834"
id="path2227"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2229"
d="m 96.043751,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 97.052081,300.49325 v 1.05834"
id="path2231"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2233"
d="m 98.110411,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 99.218751,300.22867 v 1.5875"
id="path2235"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2237"
d="m 89.693744,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 90.752084,300.49325 v 1.05834"
id="path2239"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2241"
d="m 91.760414,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 92.818744,300.49325 v 1.05834"
id="path2243"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2245"
d="m 93.927084,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="90.897812"
y="304.74579"
id="text2249"><tspan
sodipodi:role="line"
id="tspan2247"
x="90.897812"
y="304.74579"
style="font-size:2.11666656px;stroke-width:0.26458332">995m</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 84.402078,300.49325 v 1.05834"
id="path2251"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2253"
d="m 85.460418,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 86.468748,300.49325 v 1.05834"
id="path2255"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2257"
d="m 87.527078,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 88.635418,300.22867 v 1.5875"
id="path2259"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2261"
d="m 79.110411,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 80.168751,300.49325 v 1.05834"
id="path2263"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2265"
d="m 81.177081,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 82.235411,300.49325 v 1.05834"
id="path2267"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2269"
d="m 83.343751,300.22867 v 1.5875"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2271"
d="m 74.877084,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 75.885414,300.49325 v 1.05834"
id="path2273"
inkscape:connector-curvature="0" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="path2275"
d="m 76.943744,300.49325 v 1.05834"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.15000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 78.052084,300.22867 v 1.5875"
id="path2277"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,286.37682 h 1.058335 v -0.52917 h 1.058333 v 0.52916 l 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 v 0.52916 l 1.058335,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -2e-6,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 v 0.52916 l 1.058335,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -2e-6,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 v 0.52916 l 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058334,1e-5 v -0.52917 h 1.058333 v 0.52916 l 1.058335,1e-5 v -0.52917 h 1.058333 l -1e-6,0.52916 0.529165,1e-5"
id="path2283"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="opacity:1;vector-effect:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1"
d="M 62.177084,286.01224 H 73.289583"
id="path2287"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14.552083,283.73099 c 0,-3.96876 52.916668,1.32291 52.916667,-2.64584 10e-7,3.96875 52.91667,-1.32292 52.91666,2.64584"
id="path2289"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
x="58.371113"
y="280.26199"
id="text2293"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200"><tspan
sodipodi:role="line"
id="tspan2291"
x="58.371113"
y="280.26199"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">2.500.000 Clock Ticks (<tspan
style="font-weight:bold"
id="tspan2331">Timer</tspan> Clock, Prescaler: 2)</tspan></text>
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path2311"
d="m 73.818749,286.37212 h 1.058335 v -0.52917 h 1.058333 v 0.52916 l 1.058335,10e-6 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058335,10e-6 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058334,10e-6 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058335,10e-6 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,10e-6 v -0.52917 h 1.058333 v 0.52916 l 1.058335,10e-6 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,10e-6 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058334,10e-6 v -0.52917 h 1.058333 l -10e-7,0.52916 1.058335,10e-6 v -0.52917 h 1.058333 l -2e-6,0.52916 1.058334,10e-6 v -0.52917 h 1.058333 v 0.52916 l 1.058335,10e-6 v -0.52917 h 1.058333 l -1e-6,0.52916 1.058338,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05834 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05834,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05834 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05834,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05834 v 0.52916 l 1.05833,10e-6 v -0.52917 h 1.05833 v 0.52916 l 1.05834,10e-6 v -0.52917 h 1.05833 v 0.52916 l 0.52916,10e-6"
style="fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path2313"
d="m 14.552083,274.50417 h 2.645835 V 273.975 h 2.645833 v 0.52916 l 2.645835,10e-6 V 273.975 h 2.645833 l -10e-7,0.52916 2.645834,10e-6 V 273.975 h 2.645833 l -1e-6,0.52916 2.645835,10e-6 V 273.975 h 2.645833 l -1e-6,0.52916 2.645835,10e-6 V 273.975 h 2.645833 l -10e-7,0.52916 2.645835,10e-6 V 273.975 h 2.645833 l -1e-6,0.52916 2.645834,10e-6 V 273.975 h 2.645833 l -1e-6,0.53229 2.645834,0.003 v -0.52917 h 2.645833 v 0.52917 h 2.645835 v -0.52917 h 1.322915"
style="fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2315"
d="M 62.177084,274.13959 H 73.289583"
style="opacity:1;vector-effect:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path2317"
d="m 14.552083,271.85834 c 0,-3.96876 52.916668,1.32291 52.916667,-2.64584 10e-7,3.96875 52.91667,-1.32292 52.91666,2.64584"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2321"
y="268.38934"
x="58.371113"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="268.38934"
x="58.371113"
id="tspan2319"
sodipodi:role="line">1.000.000 Clock Ticks (<tspan
style="font-weight:bold"
id="tspan2329">Timer</tspan> Clock, Prescaler: 5)</tspan></text>
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#8bb124;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1"
d="M 62.177085,274.14584 H 73.289584"
id="path2339"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
style="fill:none;fill-opacity:1;stroke:#8bb124;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.818751,274.50417 h 2.645835 V 273.975 h 2.645833 v 0.52916 l 2.645835,10e-6 V 273.975 h 2.645833 l -10e-7,0.52916 2.645834,10e-6 V 273.975 h 2.645833 l -10e-7,0.52916 2.645835,10e-6 V 273.975 h 2.645833 l -1e-6,0.52916 2.645835,10e-6 V 273.975 h 2.645836 v 0.52916 l 2.64583,10e-6 V 273.975 h 2.64584 v 0.52916 l 2.64583,10e-6 V 273.975 h 2.64583 v 0.53229 l 2.64584,0.003 v -0.52917 h 2.64583 v 0.52917 h 2.64583 v -0.52917 h 1.32292"
id="path2357"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
inkscape:export-xdpi="200"
inkscape:export-ydpi="200" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path2373"
d="m 14.552083,110.3865 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5"
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
style="fill:none;stroke:#08649a;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.818754,110.3865 h 0.529167 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529166,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529167 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529167 v 0.52916 h 0.529166 v -0.52916 h 0.529164 v 0.52916 l 0.529167,1e-5 v -0.52917 h 0.529172 v 0.52916 h 0.52915 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52916 v 0.52916 h 0.52917 v -0.52916 h 0.52917 v 0.52916 l 0.52916,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52917 v -0.52916 h 0.52916 v 0.52916 l 0.52917,1e-5 v -0.52917 h 0.52917 v 0.52916 h 0.52916 v -0.52916 h 0.52917 v 0.52916 l 0.52917,1e-5"
id="path2375"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path2377"
d="M 62.177084,110.02192 H 73.289583"
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#08649a;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.2, 0.2;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path2379"
d="m 14.552083,107.74067 c 0,-3.96876 52.916668,1.32291 52.916667,-2.64584 10e-7,3.96875 52.91667,-1.32292 52.91666,2.64584"
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
id="text2383"
y="104.27158"
x="58.371113"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666656px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
y="104.27158"
x="58.371113"
id="tspan2381"
sodipodi:role="line">5.000.000 Clock Ticks (<tspan
style="font-weight:bold"
id="tspan2731">Timer</tspan> Clock)</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer 2"
style="opacity:0.6"
transform="translate(-12.122258,-102.66341)" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment