diff options
71 files changed, 8113 insertions, 2020 deletions
diff --git a/keyboards/converter/Makefile b/keyboards/converter/Makefile new file mode 100644 index 0000000000..4e2a6f00fd --- /dev/null +++ b/keyboards/converter/Makefile @@ -0,0 +1,3 @@ +ifndef MAKEFILE_INCLUDED + include ../../Makefile +endif
\ No newline at end of file diff --git a/keyboards/converter/converter.c b/keyboards/converter/converter.c new file mode 100644 index 0000000000..aa4bef63a9 --- /dev/null +++ b/keyboards/converter/converter.c @@ -0,0 +1 @@ +#include "converter.h"
\ No newline at end of file diff --git a/keyboards/converter/converter.h b/keyboards/converter/converter.h new file mode 100644 index 0000000000..7a4a4835e6 --- /dev/null +++ b/keyboards/converter/converter.h @@ -0,0 +1 @@ +#include "quantum.h"
\ No newline at end of file diff --git a/keyboards/converter/ibm_terminal/Makefile b/keyboards/converter/ibm_terminal/Makefile new file mode 100644 index 0000000000..191c6bb664 --- /dev/null +++ b/keyboards/converter/ibm_terminal/Makefile @@ -0,0 +1,3 @@ +ifndef MAKEFILE_INCLUDED + include ../../../Makefile +endif
\ No newline at end of file diff --git a/keyboards/converter/ibm_terminal/README b/keyboards/converter/ibm_terminal/README new file mode 100644 index 0000000000..6b7aff2c84 --- /dev/null +++ b/keyboards/converter/ibm_terminal/README @@ -0,0 +1,40 @@ +Keyboard converter for IBM terminal keyboard +============================================ + +This is a port of TMK's converter/terminal_usb to QMK. + +It supports PS/2 Scan Code Set 3 and runs on USB AVR chips such like PJRC Teensy. +I tested the converter on ATMega32U4 with 1392595(102keys) and 6110345(122keys). + +Source code: https://github.com/tmk/tmk_keyboard +Article: http://geekhack.org/index.php?topic=27272.0 + + +CONNECTION +---------- +Keyboard ATMega32U4 +---------------------- +Data: PD2 +Clock: PD5 + +And VCC and GND, of course. See RESOURCE for keyboard connector pin assign. + + +BUILD +----- +$ git clone https://github.com/tmk/tmk_keyboard.git +$ cd converter/terminal_usb +$ make + + +RESOURCE +-------- +Soarer's Converter: http://geekhack.org/index.php?topic=17458.0 +102keys(1392595): http://geekhack.org/index.php?topic=10737.0 +122keys(1390876): http://www.seasip.info/VintagePC/ibm_1390876.html +KbdBabel: http://www.kbdbabel.org/ +RJ45 Connector: http://www.kbdbabel.org/conn/kbd_connector_ibmterm.png +DIN Connector: http://www.kbdbabel.org/conn/kbd_connector_ibm3179_318x_319x.png +WinAVR: http://winavr.sourceforge.net/ + +EOF diff --git a/keyboards/converter/ibm_terminal/config.h b/keyboards/converter/ibm_terminal/config.h new file mode 100644 index 0000000000..4dd85f6983 --- /dev/null +++ b/keyboards/converter/ibm_terminal/config.h @@ -0,0 +1,138 @@ +/* +Copyright 2012 Jun Wako <wakojun@gmail.com> +Copyright 2016 Priyadi Iman Nurcahyo <priyadi@priyadi.net> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef CONFIG_H +#define CONFIG_H + + +#define VENDOR_ID 0xFEED +#define PRODUCT_ID 0x6535 +#define DEVICE_VER 0x0100 +#define MANUFACTURER QMK +#define PRODUCT IBM Terminal Keyboard +#define DESCRIPTION USB converter for IBM Terminal Keyboard + + +/* matrix size */ +#define MATRIX_ROWS 17 // keycode bit: 3-0 +#define MATRIX_COLS 8 // keycode bit: 6-4 + + +/* legacy keymap support */ +#define USE_LEGACY_KEYMAP + + +/* key combination for command */ +#define IS_COMMAND() ( \ + keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT) | MOD_BIT(KC_RALT) | MOD_BIT(KC_RCTL)) \ +) + + +/* + * PS/2 USART configuration for ATMega32U4 + */ +#ifdef PS2_USE_USART +/* XCK for clock line */ +#define PS2_CLOCK_PORT PORTD +#define PS2_CLOCK_PIN PIND +#define PS2_CLOCK_DDR DDRD +#define PS2_CLOCK_BIT 5 +/* RXD for data line */ +#define PS2_DATA_PORT PORTD +#define PS2_DATA_PIN PIND +#define PS2_DATA_DDR DDRD +#define PS2_DATA_BIT 2 + +/* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */ +/* set DDR of CLOCK as input to be slave */ +#define PS2_USART_INIT() do { \ + PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \ + PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \ + UCSR1C = ((1 << UMSEL10) | \ + (3 << UPM10) | \ + (0 << USBS1) | \ + (3 << UCSZ10) | \ + (0 << UCPOL1)); \ + UCSR1A = 0; \ + UBRR1H = 0; \ + UBRR1L = 0; \ +} while (0) +#define PS2_USART_RX_INT_ON() do { \ + UCSR1B = ((1 << RXCIE1) | \ + (1 << RXEN1)); \ +} while (0) +#define PS2_USART_RX_POLL_ON() do { \ + UCSR1B = (1 << RXEN1); \ +} while (0) +#define PS2_USART_OFF() do { \ + UCSR1C = 0; \ + UCSR1B &= ~((1 << RXEN1) | \ + (1 << TXEN1)); \ +} while (0) +#define PS2_USART_RX_READY (UCSR1A & (1<<RXC1)) +#define PS2_USART_RX_DATA UDR1 +#define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1))) +#define PS2_USART_RX_VECT USART1_RX_vect +#endif + + +/* + * PS/2 Interrupt configuration + */ +#ifdef PS2_USE_INT +/* uses INT1 for clock line(ATMega32U4) */ +#define PS2_CLOCK_PORT PORTD +#define PS2_CLOCK_PIN PIND +#define PS2_CLOCK_DDR DDRD +#define PS2_CLOCK_BIT 1 + +#define PS2_DATA_PORT PORTD +#define PS2_DATA_PIN PIND +#define PS2_DATA_DDR DDRD +#define PS2_DATA_BIT 0 + +#define PS2_INT_INIT() do { \ + EICRA |= ((1<<ISC11) | \ + (0<<ISC10)); \ +} while (0) +#define PS2_INT_ON() do { \ + EIMSK |= (1<<INT1); \ +} while (0) +#define PS2_INT_OFF() do { \ + EIMSK &= ~(1<<INT1); \ +} while (0) +#define PS2_INT_VECT INT1_vect +#endif + + +/* + * PS/2 Busywait configuration + */ +#ifdef PS2_USE_BUSYWAIT +#define PS2_CLOCK_PORT PORTD +#define PS2_CLOCK_PIN PIND +#define PS2_CLOCK_DDR DDRD +#define PS2_CLOCK_BIT 1 + +#define PS2_DATA_PORT PORTD +#define PS2_DATA_PIN PIND +#define PS2_DATA_DDR DDRD +#define PS2_DATA_BIT 0 +#endif + +#endif diff --git a/keyboards/converter/ibm_terminal/ibm_terminal.c b/keyboards/converter/ibm_terminal/ibm_terminal.c new file mode 100644 index 0000000000..17296864a3 --- /dev/null +++ b/keyboards/converter/ibm_terminal/ibm_terminal.c @@ -0,0 +1,6 @@ +#include "ibm_terminal.h" + +// void matrix_init_kb(void) { + +// matrix_init_user(); +// }
\ No newline at end of file diff --git a/keyboards/converter/ibm_terminal/ibm_terminal.h b/keyboards/converter/ibm_terminal/ibm_terminal.h new file mode 100644 index 0000000000..c6468349ca --- /dev/null +++ b/keyboards/converter/ibm_terminal/ibm_terminal.h @@ -0,0 +1,82 @@ +#ifndef IBM_TERMINAL_H +#define IBM_TERMINAL_H + +#include "quantum.h" + +void matrix_init_user(void); + +/* + * IBM Terminal keyboard 6110345(122keys)/1392595(102keys) + * http://geekhack.org/showthread.php?10737-What-Can-I-Do-With-a-Terminal-Model-M + * http://www.seasip.info/VintagePC/ibm_1391406.html + * + * Keymap array: + * 8 bytes + * +---------+ + * 0| | + * :| | 0x00-0x87 + * ;| | + * 17| | + * +---------+ + */ +#define KEYMAP( \ + K08,K10,K18,K20,K28,K30,K38,K40,K48,K50,K57,K5F, \ + K07,K0F,K17,K1F,K27,K2F,K37,K3F,K47,K4F,K56,K5E, \ + \ + K05,K06, K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K5D,K66, K67,K6E,K6F, K76,K77,K7E,K84, \ + K04,K0C, K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B, K5C, K64,K65,K6D, K6C,K75,K7D,K7C, \ + K03,K0B, K14,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K53,K5A, K63, K6B,K73,K74,K7B, \ + K83,K0A, K12,K13,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K51,K59, K61,K62,K6A, K69,K72,K7A,K79, \ + K01,K09, K11, K19, K29, K39, K58, K60, K68,K70,K71,K78 \ +) { \ + { KC_NO, K01, KC_NO, K03, K04, K05, K06, K07 }, \ + { K08, K09, K0A, K0B, K0C, K0D, K0E, K0F }, \ + { K10, K11, K12, K13, K14, K15, K16, K17 }, \ + { K18, K19, K1A, K1B, K1C, K1D, K1E, K1F }, \ + { K20, K21, K22, K23, K24, K25, K26, K27 }, \ + { K28, K29, K2A, K2B, K2C, K2D, K2E, K2F }, \ + { K30, K31, K32, K33, K34, K35, K36, K37 }, \ + { K38, K39, K3A, K3B, K3C, K3D, K3E, K3F }, \ + { K40, K41, K42, K43, K44, K45, K46, K47 }, \ + { K48, K49, K4A, K4B, K4C, K4D, K4E, K4F }, \ + { K50, K51, K52, K53, K54, K55, K56, K57 }, \ + { K58, K59, K5A, K5B, K5C, K5D, K5E, K5F }, \ + { K60, K61, K62, K63, K64, K65, K66, K67 }, \ + { K68, K69, K6A, K6B, K6C, K6D, K6E, K6F }, \ + { K70, K71, K72, K73, K74, K75, K76, K77 }, \ + { K78, K79, K7A, K7B, K7C, K7D, K7E, KC_NO }, \ + { KC_NO, KC_NO, KC_NO, K83, K84, KC_NO, KC_NO, KC_NO,}, \ +} + +/* + * IBM Terminal keyboard 1399625, 101-key + */ +#define KEYMAP_101( \ + K08, K07,K0F,K17,K1F,K27,K2F,K37,K3F,K47,K4F,K56,K5E, K57,K5F,K62, \ + \ + K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, K67,K6E,K6F, K76,K77,K7E,K84, \ + K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5C, K64,K65,K6D, K6C,K75,K7D, \ + K14,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K7C, \ + K12, K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, K63, K69,K72,K7A, \ + K11, K19, K29, K39, K58, K61,K60,K6A, K70, K71,K79 \ +) { \ + { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, K07 }, \ + { K08, KC_NO, KC_NO, KC_NO, KC_NO, K0D, K0E, K0F }, \ + { KC_NO, K11, K12, KC_NO, K14, K15, K16, K17 }, \ + { KC_NO, K19, K1A, K1B, K1C, K1D, K1E, K1F }, \ + { KC_NO, K21, K22, K23, K24, K25, K26, K27 }, \ + { KC_NO, K29, K2A, K2B, K2C, K2D, K2E, K2F }, \ + { KC_NO, K31, K32, K33, K34, K35, K36, K37 }, \ + { KC_NO, K39, K3A, K3B, K3C, K3D, K3E, K3F }, \ + { KC_NO, K41, K42, K43, K44, K45, K46, K47 }, \ + { KC_NO, K49, K4A, K4B, K4C, K4D, K4E, K4F }, \ + { KC_NO, KC_NO, K52, KC_NO, K54, K55, K56, K57 }, \ + { K58, K59, K5A, K5B, K5C, KC_NO, K5E, K5F }, \ + { K60, K61, K62, K63, K64, K65, K66, K67 }, \ + { KC_NO, K69, K6A, K6B, K6C, K6D, K6E, K6F }, \ + { K70, K71, K72, K73, K74, K75, K76, K77 }, \ + { KC_NO, K79, K7A, KC_NO, K7C, K7D, K7E, KC_NO }, \ + { KC_NO, KC_NO, KC_NO, KC_NO, K84, KC_NO, KC_NO, KC_NO,}, \ +} + +#endif
\ No newline at end of file diff --git a/keyboards/converter/ibm_terminal/keymaps/default/Makefile b/keyboards/converter/ibm_terminal/keymaps/default/Makefile new file mode 100644 index 0000000000..9ec2464943 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/Makefile @@ -0,0 +1,27 @@ +# Build Options +# change to "no" to disable the options, or define them in the Makefile in +# the appropriate keymap folder that will get included automatically +# +BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= no # Console for debug(+400) +COMMAND_ENABLE ?= no # Commands for debug and configuration +NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality +MIDI_ENABLE ?= no # MIDI controls +AUDIO_ENABLE ?= no # Audio output on port C6 +UNICODE_ENABLE ?= no # Unicode +UNICODEMAP_ENABLE ?= yes +BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID +RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. +PS2_USE_USART ?= yes +API_SYSEX_ENABLE ?= no + +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend + +ifndef QUANTUM_DIR + include ../../../../../Makefile +endif + diff --git a/keyboards/converter/ibm_terminal/keymaps/default/config.h b/keyboards/converter/ibm_terminal/keymaps/default/config.h new file mode 100644 index 0000000000..7fa3bf328e --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/config.h @@ -0,0 +1,6 @@ +#ifndef CONFIG_USER_H +#define CONFIG_USER_H + +#include "../../config.h" + +#endif diff --git a/keyboards/converter/ibm_terminal/keymaps/default/keymap.c b/keyboards/converter/ibm_terminal/keymaps/default/keymap.c new file mode 100644 index 0000000000..2beb51106e --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/keymap.c @@ -0,0 +1,69 @@ +/* +Copyright 2012 Jun Wako <wakojun@gmail.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include <stdint.h> +#include <stdbool.h> +#include "keycode.h" +#include "print.h" +#include "debug.h" +#include "util.h" +#include "ibm_terminal.h" + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + // Layer 0 + + KEYMAP( + KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24, + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, + + KC_PSCR,KC_ESC, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_NO, KC_BSPC, KC_INS, KC_HOME,KC_PGUP, KC_NLCK,KC_PSLS,KC_PAST,KC_PMNS, + KC_SLCK,KC_INT4, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC, KC_NO, KC_DEL, KC_END, KC_PGDN, KC_P7, KC_P8, KC_P9, KC_PPLS, + KC_PAUS,KC_INT5, KC_LCTL,KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_BSLS,KC_ENT, KC_UP, KC_P4, KC_P5, KC_P6, KC_PCMM, + KC_APP, KC_INT6, KC_LSFT,KC_LSFT,KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_NO, KC_RSFT, KC_LEFT,KC_INT2,KC_RGHT, KC_P1, KC_P2, KC_P3, KC_PENT, + KC_RGUI,KC_LGUI, KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_GRV, KC_DOWN, KC_NO, KC_P0, KC_PDOT,KC_NO + ), + +/* 101-key keymaps + */ + /* 0: default + * ,---. ,---------------. ,---------------. ,---------------. ,-----------. + * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau| + * `---' `---------------' `---------------' `---------------' `-----------' + * ,-----------------------------------------------------------. ,-----------. ,---------------. + * | `| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backspa| |Ins|Hom|PgU| |NmL| /| *| -| + * |-----------------------------------------------------------| |-----------| |---------------| + * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD| | 7| 8| 9| | + * |-----------------------------------------------------------| `-----------' |-----------| +| + * |CapsLo| A| S| D| F| G| H| J| K| L| ;| '|Return | | 4| 5| 6| | + * |-----------------------------------------------------------| ,---. |---------------| + * |Shift | Z| X| C| V| B| N| M| ,| ,| /|Shift | |Up | | 1| 2| 3| | + * |-----------------------------------------------------------| ,-----------. |-----------|Ent| + * |Ctrl| |Alt | Space |Alt | |Ctrl| |Lef|Dow|Rig| | 0| .| | + * `----' `---------------------------------------' `----' `-----------' `---------------' + */ +/* + KEYMAP_101( + KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR,KC_SLCK, KC_BRK, + + KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,KC_MINS, KC_EQL,KC_BSPC, KC_INS,KC_HOME,KC_PGUP, KC_NLCK,KC_PSLS,KC_PAST,KC_PMNS, + KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,KC_LBRC,KC_RBRC,KC_BSLS, KC_DEL, KC_END,KC_PGDN, KC_P7, KC_P8, KC_P9, + KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L,KC_SCLN,KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6,KC_PPLS, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT,KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, + KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT,KC_DOWN,KC_RGHT, KC_P0, KC_PDOT,KC_PENT + ), +*/ +}; diff --git a/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile b/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile new file mode 100644 index 0000000000..9ec2464943 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile @@ -0,0 +1,27 @@ +# Build Options +# change to "no" to disable the options, or define them in the Makefile in +# the appropriate keymap folder that will get included automatically +# +BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= no # Console for debug(+400) +COMMAND_ENABLE ?= no # Commands for debug and configuration +NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality +MIDI_ENABLE ?= no # MIDI controls +AUDIO_ENABLE ?= no # Audio output on port C6 +UNICODE_ENABLE ?= no # Unicode +UNICODEMAP_ENABLE ?= yes +BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID +RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. +PS2_USE_USART ?= yes +API_SYSEX_ENABLE ?= no + +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend + +ifndef QUANTUM_DIR + include ../../../../../Makefile +endif + diff --git a/keyboards/converter/ibm_terminal/keymaps/priyadi/config.h b/keyboards/converter/ibm_terminal/keymaps/priyadi/config.h new file mode 100644 index 0000000000..7fa3bf328e --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/config.h @@ -0,0 +1,6 @@ +#ifndef CONFIG_USER_H +#define CONFIG_USER_H + +#include "../../config.h" + +#endif diff --git a/keyboards/converter/ibm_terminal/keymaps/priyadi/keymap.c b/keyboards/converter/ibm_terminal/keymaps/priyadi/keymap.c new file mode 100644 index 0000000000..592f7654ba --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/keymap.c @@ -0,0 +1,312 @@ +/* +Copyright 2016 Priyadi Iman Nurcahyo <priyadi@priyadi.net> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include "keycode.h" +#include "print.h" +#include "debug.h" +#include "util.h" +#include "ibm_terminal.h" +#include "action_layer.h" + +// Fillers to make layering clearer + +#define _______ KC_TRNS +#define XXXXXXX KC_NO + +enum layers { + QWE, // qwerty + COL, // colemak + WOR, // workman + DVO, // dvorak + + MOU, // mouse keys + EMO, // emoji + SYS, // system +}; + +enum keycodes { + // default layout switcher + LAY_QWE = SAFE_RANGE, + LAY_COL, + LAY_WOR, + LAY_DVO, + + // layer switchers + LYR_SYS, + LYR_EMO, + + // os switchers + OS_LIN, + OS_WIN, + OS_MAC, +}; + +// unicode map + +enum unicode_name { + GRIN, // grinning face 😊 + TJOY, // tears of joy 😂 + SMILE, // grining face with smiling eyes 😁 + HEART, // heart ❤ + EYERT, // smiling face with heart shaped eyes 😍 + CRY, // crying face 😭 + SMEYE, // smiling face with smiling eyes 😊 + UNAMU, // unamused 😒 + KISS, // kiss 😘 + HART2, // two hearts 💕 + WEARY, // weary 😩 + OKHND, // ok hand sign 👌 + PENSV, // pensive 😔 + SMIRK, // smirk 😏 + RECYC, // recycle ♻ + WINK, // wink 😉 + THMUP, // thumb up 👍 + THMDN, // thumb down 👎 + PRAY, // pray 🙏 + PHEW, // relieved 😌 + MUSIC, // musical notes + FLUSH, // flushed 😳 + CELEB, // celebration 🙌 + CRY2, // crying face 😢 + COOL, // smile with sunglasses 😎 + NOEVS, // see no evil + NOEVH, // hear no evil + NOEVK, // speak no evil + POO, // pile of poo + EYES, // eyes + VIC, // victory hand + BHART, // broken heart + SLEEP, // sleeping face + SMIL2, // smiling face with open mouth & sweat + HUNRD, // 100 + CONFU, // confused + TONGU, // face with tongue & winking eye + DISAP, // disappointed + YUMMY, // face savoring delicious food + CLAP, // hand clapping + FEAR, // face screaming in fear + HORNS, // smiling face with horns + HALO, // smiling face with halo + BYE, // waving hand + SUN, // sun + MOON, // moon + SKULL, // skull +}; + +const uint32_t PROGMEM unicode_map[] = { + [GRIN] = 0x1F600, + [TJOY] = 0x1F602, + [SMILE] = 0x1F601, + [HEART] = 0x2764, + [EYERT] = 0x1f60d, + [CRY] = 0x1f62d, + [SMEYE] = 0x1F60A, + [UNAMU] = 0x1F612, + [KISS] = 0x1F618, + [HART2] = 0x1F495, + [WEARY] = 0x1F629, + [OKHND] = 0x1F44C, + [PENSV] = 0x1F614, + [SMIRK] = 0x1F60F, + [RECYC] = 0x267B, + [WINK] = 0x1F609, + [THMUP] = 0x1F44D, + [THMDN] = 0x1F44E, + [PRAY] = 0x1F64F, + [PHEW] = 0x1F60C, + [MUSIC] = 0x1F3B6, + [FLUSH] = 0x1F633, + [CELEB] = 0x1F64C, + [CRY2] = 0x1F622, + [COOL] = 0x1F60E, + [NOEVS] = 0x1F648, + [NOEVH] = 0x1F649, + [NOEVK] = 0x1F64A, + [POO] = 0x1F4A9, + [EYES] = 0x1F440, + [VIC] = 0x270C, + [BHART] = 0x1F494, + [SLEEP] = 0x1F634, + [SMIL2] = 0x1F605, + [HUNRD] = 0x1F4AF, + [CONFU] = 0x1F615, + [TONGU] = 0x1F61C, + [DISAP] = 0x1F61E, + [YUMMY] = 0x1F60B, + [CLAP] = 0x1F44F, + [FEAR] = 0x1F631, + [HORNS] = 0x1F608, + [HALO] = 0x1F607, + [BYE] = 0x1F44B, + [SUN] = 0x2600, + [MOON] = 0x1F314, + [SKULL] = 0x1F480, +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* qwerty */ + [QWE] = KEYMAP( + KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_PSCR, KC_SLCK, KC_PAUS, + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, + + MO(EMO), MO(SYS), KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, XXXXXXX, KC_BSPC, KC_INS, KC_HOME, KC_PGUP, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, + KC_MNXT, KC_VOLU, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, XXXXXXX, KC_DEL, KC_END, KC_PGDN, KC_P7, KC_P8, KC_P9, KC_PPLS, + KC_MPLY, KC_MUTE, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_BSLS, KC_ENT, KC_UP, KC_P4, KC_P5, KC_P6, KC_PCMM, + KC_MPRV, KC_VOLD, KC_LSFT, KC_GRV, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, XXXXXXX, KC_RSFT, KC_LEFT, TG(MOU), KC_RGHT, KC_P1, KC_P2, KC_P3, KC_PENT, + KC_LGUI, KC_APP, KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_DOWN, XXXXXXX, KC_P0, KC_PDOT, XXXXXXX + ), + + /* colemak */ + [COL] = KEYMAP( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + + /* workman */ + [WOR] = KEYMAP( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_QUOT, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + + /* dvorak */ + [DVO] = KEYMAP( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + + /* system */ + [SYS] = KEYMAP( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, LAY_QWE, OS_WIN, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, LAY_DVO, _______, _______, _______, _______, LAY_WOR, OS_LIN, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, LAY_COL, _______, _______, _______, OS_MAC, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + + /* mouse keys */ + [MOU] = KEYMAP( + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, KC_BTN4, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_U, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, KC_BTN5, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_L, _______, KC_MS_R, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + KC_BTN1, KC_BTN3, KC_BTN2, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_D, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX + ), + + /* emoji */ + [EMO] = KEYMAP( + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, X(CRY2),X(WEARY),X(EYERT),X(SMIRK), X(TJOY), X(RECYC),X(UNAMU),X(MUSIC),X(OKHND),X(PENSV),XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, X(PRAY),X(SMILE),X(SMIL2),X(FLUSH), X(GRIN), X(HEART),X(BYE), X(KISS), X(CELEB),X(COOL), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,X(SLEEP),X(CLAP), X(CRY), X(VIC), X(BHART),X(SUN), X(SMEYE),X(WINK), X(MOON), X(CONFU), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, + XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX + ), + + /* + [XXX] = KEYMAP( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + */ +}; + +void persistant_default_layer_set(uint16_t default_layer) { + eeconfig_update_default_layer(default_layer); + default_layer_set(default_layer); +} + +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + switch (keycode) { + /* layout switcher */ + case LAY_QWE: + if (record->event.pressed) { + persistant_default_layer_set(1UL<<QWE); + } + return false; + break; + case LAY_COL: + if (record->event.pressed) { + persistant_default_layer_set(1UL<<COL); + } + return false; + break; + case LAY_WOR: + if (record->event.pressed) { + persistant_default_layer_set(1UL<<WOR); + } + return false; + break; + case LAY_DVO: + if (record->event.pressed) { + persistant_default_layer_set(1UL<<DVO); + } + return false; + break; + + /* os switcher */ + case OS_LIN: + set_unicode_input_mode(UC_LNX); + return false; + break; + case OS_WIN: + set_unicode_input_mode(UC_WINC); + return false; + break; + case OS_MAC: + set_unicode_input_mode(UC_OSX); + return false; + break; + + } + return true; +} + +void matrix_init_user() { + set_unicode_input_mode(UC_LNX); +} diff --git a/keyboards/converter/ibm_terminal/led.c b/keyboards/converter/ibm_terminal/led.c new file mode 100644 index 0000000000..e448e84ec7 --- /dev/null +++ b/keyboards/converter/ibm_terminal/led.c @@ -0,0 +1,33 @@ +/* +Copyright 2011 Jun Wako <wakojun@gmail.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include "stdint.h" +#include "ps2.h" +#include "led.h" + + +void led_set(uint8_t usb_led) +{ + uint8_t ps2_led = 0; + if (usb_led & (1<<USB_LED_SCROLL_LOCK)) + ps2_led |= (1<<PS2_LED_SCROLL_LOCK); + if (usb_led & (1<<USB_LED_NUM_LOCK)) + ps2_led |= (1<<PS2_LED_NUM_LOCK); + if (usb_led & (1<<USB_LED_CAPS_LOCK)) + ps2_led |= (1<<PS2_LED_CAPS_LOCK); + ps2_host_set_led(ps2_led); +} diff --git a/keyboards/converter/ibm_terminal/matrix.c b/keyboards/converter/ibm_terminal/matrix.c new file mode 100644 index 0000000000..9d717b61f5 --- /dev/null +++ b/keyboards/converter/ibm_terminal/matrix.c @@ -0,0 +1,237 @@ +/* +Copyright 2011 Jun Wako <wakojun@gmail.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include <stdint.h> +#include <stdbool.h> +#include <avr/io.h> +#include <util/delay.h> +#include "print.h" +#include "util.h" +#include "debug.h" +#include "ps2.h" +#include "matrix.h" + +#define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row)) +#define print_matrix_header() print("\nr/c 01234567\n") +#define matrix_bitpop(i) bitpop(matrix[i]) +#define ROW_SHIFTER ((uint8_t)1) + + +static void matrix_make(uint8_t code); +static void matrix_break(uint8_t code); + + +/* + * Matrix Array usage: + * 'Scan Code Set 3' is assigned into 17x8 cell matrix. + * + * 8bit wide + * +---------+ + * 0| | + * :| | 0x00-0x87 + * ;| | + * 17| | + * +---------+ + */ +static uint8_t matrix[MATRIX_ROWS]; +#define ROW(code) (code>>3) +#define COL(code) (code&0x07) + + +__attribute__ ((weak)) +void matrix_init_user(void) { +} + +void matrix_init(void) +{ + debug_enable = true; + //debug_matrix = true; + //debug_keyboard = true; + //debug_mouse = false; + + ps2_host_init(); + + // initialize matrix state: all keys off + for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00; + + matrix_init_user(); + return; +} + +uint8_t matrix_scan(void) +{ + + // scan code reading states + static enum { + RESET, + RESET_RESPONSE, + KBD_ID0, + KBD_ID1, + CONFIG, + READY, + F0, + } state = RESET; + + uint8_t code; + if ((code = ps2_host_recv())) { + debug("r"); debug_hex(code); debug(" "); + } + + switch (state) { + case RESET: + debug("wFF "); + if (ps2_host_send(0xFF) == 0xFA) { + debug("[ack]\nRESET_RESPONSE: "); + state = RESET_RESPONSE; + } + break; + case RESET_RESPONSE: + if (code == 0xAA) { + debug("[ok]\nKBD_ID: "); + state = KBD_ID0; + } else if (code) { + debug("err\nRESET: "); + state = RESET; + } + break; + // after reset receive keyboad ID(2 bytes) + case KBD_ID0: + if (code) { + state = KBD_ID1; + } + break; + case KBD_ID1: + if (code) { + debug("\nCONFIG: "); + state = CONFIG; + } + break; + case CONFIG: + debug("wF8 "); + if (ps2_host_send(0xF8) == 0xFA) { + debug("[ack]\nREADY\n"); + state = READY; + } + break; + case READY: + switch (code) { + case 0x00: + break; + case 0xF0: + state = F0; + debug(" "); + break; + default: // normal key make + if (code < 0x88) { + matrix_make(code); + } else { + debug("unexpected scan code at READY: "); debug_hex(code); debug("\n"); + } + state = READY; + debug("\n"); + } + break; + case F0: // Break code + switch (code) { + case 0x00: + break; + default: + if (code < 0x88) { + matrix_break(code); + } else { + debug("unexpected scan code at F0: "); debug_hex(code); debug("\n"); + } + state = READY; + debug("\n"); + } + break; + } + return 1; +} + +inline +uint8_t matrix_get_row(uint8_t row) +{ + return matrix[row]; +} + +inline +static void matrix_make(uint8_t code) +{ + if (!matrix_is_on(ROW(code), COL(code))) { + matrix[ROW(code)] |= 1<<COL(code); + } +} + +inline +static void matrix_break(uint8_t code) +{ + if (matrix_is_on(ROW(code), COL(code))) { + matrix[ROW(code)] &= ~(1<<COL(code)); + } +} + +bool matrix_is_on(uint8_t row, uint8_t col) +{ + return (matrix_get_row(row) & (1<<col)); +} + +void matrix_print(void) +{ +#if (MATRIX_COLS <= 8) + print("r/c 01234567\n"); +#elif (MATRIX_COLS <= 16) + print("r/c 0123456789ABCDEF\n"); +#elif (MATRIX_COLS <= 32) + print("r/c 0123456789ABCDEF0123456789ABCDEF\n"); +#endif + + for (uint8_t row = 0; row < MATRIX_ROWS; row++) { + +#if (MATRIX_COLS <= 8) + xprintf("%02X: %08b%s\n", row, bitrev(matrix_get_row(row)), +#elif (MATRIX_COLS <= 16) + xprintf("%02X: %016b%s\n", row, bitrev16(matrix_get_row(row)), +#elif (MATRIX_COLS <= 32) + xprintf("%02X: %032b%s\n", row, bitrev32(matrix_get_row(row)), +#endif +#ifdef MATRIX_HAS_GHOST + matrix_has_ghost_in_row(row) ? " <ghost" : "" +#else + "" +#endif + ); + } +} + +#ifdef MATRIX_HAS_GHOST +__attribute__ ((weak)) +bool matrix_has_ghost_in_row(uint8_t row) +{ + matrix_row_t matrix_row = matrix_get_row(row); + // No ghost exists when less than 2 keys are down on the row + if (((matrix_row - 1) & matrix_row) == 0) + return false; + + // Ghost occurs when the row shares column line with other row + for (uint8_t i=0; i < MATRIX_ROWS; i++) { + if (i != row && (matrix_get_row(i) & matrix_row)) + return true; + } + return false; +} +#endif diff --git a/keyboards/converter/ibm_terminal/rules.mk b/keyboards/converter/ibm_terminal/rules.mk new file mode 100644 index 0000000000..944d1bcecb --- /dev/null +++ b/keyboards/converter/ibm_terminal/rules.mk @@ -0,0 +1,72 @@ +# MCU name +MCU = atmega32u4 + +# Processor frequency. +# This will define a symbol, F_CPU, in all source code files equal to the +# processor frequency in Hz. You can then use this symbol in your source code to +# calculate timings. Do NOT tack on a 'UL' at the end, this will be done +# automatically to create a 32-bit value in your source code. +# +# This will be an integer division of F_USB below, as it is sourced by +# F_USB after it has run through any CPU prescalers. Note that this value +# does not *change* the processor frequency - it should merely be updated to +# reflect the processor speed set externally so that the code can use accurate +# software delays. +F_CPU = 16000000 + +# +# LUFA specific +# +# Target architecture (see library "Board Types" documentation). +ARCH = AVR8 + +# Input clock frequency. +# This will define a symbol, F_USB, in all source code files equal to the +# input clock frequency (before any prescaling is performed) in Hz. This value may +# differ from F_CPU if prescaling is used on the latter, and is required as the +# raw input clock is fed directly to the PLL sections of the AVR for high speed +# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' +# at the end, this will be done automatically to create a 32-bit value in your +# source code. +# +# If no clock division is performed on the input clock inside the AVR (via the +# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. +F_USB = $(F_CPU) + +# Interrupt driven control endpoint task(+60) +OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT + + +# Boot Section Size in *bytes* +# Teensy halfKay 512 +# Teensy++ halfKay 1024 +# Atmel DFU loader 4096 +# LUFA bootloader 4096 +# USBaspLoader 2048 +OPT_DEFS += -DBOOTLOADER_SIZE=4096 + +# Build Options +# change to "no" to disable the options, or define them in the Makefile in +# the appropriate keymap folder that will get included automatically +# +BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= no # Console for debug(+400) +COMMAND_ENABLE ?= no # Commands for debug and configuration +NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality +MIDI_ENABLE ?= no # MIDI controls +AUDIO_ENABLE ?= no # Audio output on port C6 +UNICODE_ENABLE ?= no # Unicode +UNICODEMAP_ENABLE ?= yes +BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID +RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. +PS2_USE_USART ?= yes +API_SYSEX_ENABLE ?= n +CUSTOM_MATRIX = yes + +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend + +SRC = matrix.c led.c
\ No newline at end of file diff --git a/keyboards/converter/rules.mk b/keyboards/converter/rules.mk new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/keyboards/converter/rules.mk diff --git a/keyboards/ergodox/config.h b/keyboards/ergodox/config.h index edc60caae1..994a8c6433 100644 --- a/keyboards/ergodox/config.h +++ b/keyboards/ergodox/config.h @@ -1,10 +1,11 @@ #ifndef KEYBOARDS_ERGODOX_CONFIG_H_ #define KEYBOARDS_ERGODOX_CONFIG_H_ -#define MOUSEKEY_DELAY 100 #define MOUSEKEY_INTERVAL 20 -#define MOUSEKEY_MAX_SPEED 3 -#define MOUSEKEY_TIME_TO_MAX 10 +#define MOUSEKEY_DELAY 0 +#define MOUSEKEY_TIME_TO_MAX 5 +#define MOUSEKEY_MAX_SPEED 2 +#define MOUSEKEY_WHEEL_DELAY 0 #define TAPPING_TOGGLE 1 diff --git a/keyboards/ergodox/ez/config.h b/keyboards/ergodox/ez/config.h index c2750a321f..a3dc5bf152 100644 --- a/keyboards/ergodox/ez/config.h +++ b/keyboards/ergodox/ez/config.h @@ -56,6 +56,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* Set 0 if debouncing isn't needed */ #define DEBOUNCE 5 +#define USB_MAX_POWER_CONSUMPTION 50 + /* * Feature disable options * These options are also useful to firmware size reduction. diff --git a/keyboards/ergodox/keymaps/default/keymap.c b/keyboards/ergodox/keymaps/default/keymap.c index 2f399bd181..4eff280850 100644 --- a/keyboards/ergodox/keymaps/default/keymap.c +++ b/keyboards/ergodox/keymaps/default/keymap.c @@ -7,7 +7,12 @@ #define SYMB 1 // symbols #define MDIA 2 // media keys -#define EPRM M(1) // Macro 1: Reset EEPROM +enum custom_keycodes { + PLACEHOLDER = SAFE_RANGE, // can always be here + EPRM, + VRSN, + RGB_SLD +}; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* Keymap 0: Basic layer @@ -17,7 +22,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| * | Del | Q | W | E | R | T | L1 | | L1 | Y | U | I | O | P | \ | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| - * | BkSp | A | S | D | F | G |------| |------| H | J | K | L |; / L2|' / Cmd | + * | BkSp | A | S | D | F | G |------| |------| H |J/Alt | K | L |; / L2|' / Cmd | * |--------+------+------+------+------+------| Hyper| | Meh |------+------+------+------+------+--------| * | LShift |Z/Ctrl| X | C | V | B | | | | N | M | , | . |//Ctrl| RShift | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' @@ -44,56 +49,56 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { KC_HOME, KC_SPC,KC_BSPC,KC_END, // right hand - KC_RGHT, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, - TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, - KC_H, KC_J, KC_K, KC_L, LT(MDIA, KC_SCLN),GUI_T(KC_QUOT), - MEH_T(KC_NO),KC_N, KC_M, KC_COMM,KC_DOT, CTL_T(KC_SLSH), KC_RSFT, - KC_UP, KC_DOWN,KC_LBRC,KC_RBRC, KC_FN1, + KC_RGHT, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, + TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, + KC_H, ALT_T(KC_J), KC_K, KC_L, LT(MDIA, KC_SCLN),GUI_T(KC_QUOT), + MEH_T(KC_NO),KC_N, KC_M, KC_COMM,KC_DOT, CTL_T(KC_SLSH), KC_RSFT, + KC_UP, KC_DOWN,KC_LBRC,KC_RBRC, KC_FN1, KC_LALT, CTL_T(KC_ESC), KC_PGUP, KC_PGDN,KC_TAB, KC_ENT ), /* Keymap 1: Symbol Layer * - * ,--------------------------------------------------. ,--------------------------------------------------. - * |Version | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | - * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| - * | | ! | @ | { | } | | | | | | Up | 7 | 8 | 9 | * | F12 | - * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| - * | | # | $ | ( | ) | ` |------| |------| Down | 4 | 5 | 6 | + | | - * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| - * | | % | ^ | [ | ] | ~ | | | | & | 1 | 2 | 3 | \ | | - * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' - * | EPRM | | | | | | | . | 0 | = | | - * `----------------------------------' `----------------------------------' + * ,---------------------------------------------------. ,--------------------------------------------------. + * |Version | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | + * |---------+------+------+------+------+------+------| |------+------+------+------+------+------+--------| + * | | ! | @ | { | } | | | | | | Up | 7 | 8 | 9 | * | F12 | + * |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| + * | | # | $ | ( | ) | ` |------| |------| Down | 4 | 5 | 6 | + | | + * |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| + * | | % | ^ | [ | ] | ~ | | | | & | 1 | 2 | 3 | \ | | + * `---------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' + * | EPRM | | | | | | | . | 0 | = | | + * `-----------------------------------' `----------------------------------' * ,-------------. ,-------------. - * | | | | | | + * |Animat| | |Toggle|Solid | * ,------|------|------| |------+------+------. - * | | | | | | | | - * | | |------| |------| | | + * |Bright|Bright| | | |Hue- |Hue+ | + * |ness- |ness+ |------| |------| | | * | | | | | | | | * `--------------------' `--------------------' */ // SYMBOLS [SYMB] = KEYMAP( // left hand - M(0), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, + VRSN, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, KC_TRNS,KC_EXLM,KC_AT, KC_LCBR,KC_RCBR,KC_PIPE,KC_TRNS, KC_TRNS,KC_HASH,KC_DLR, KC_LPRN,KC_RPRN,KC_GRV, KC_TRNS,KC_PERC,KC_CIRC,KC_LBRC,KC_RBRC,KC_TILD,KC_TRNS, EPRM,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, - KC_TRNS,KC_TRNS, + RGB_MOD,KC_TRNS, KC_TRNS, - KC_TRNS,KC_TRNS,KC_TRNS, + RGB_VAD,RGB_VAI,KC_TRNS, // right hand KC_TRNS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_TRNS, KC_UP, KC_7, KC_8, KC_9, KC_ASTR, KC_F12, KC_DOWN, KC_4, KC_5, KC_6, KC_PLUS, KC_TRNS, KC_TRNS, KC_AMPR, KC_1, KC_2, KC_3, KC_BSLS, KC_TRNS, KC_TRNS,KC_DOT, KC_0, KC_EQL, KC_TRNS, - KC_TRNS, KC_TRNS, + RGB_TOG, RGB_SLD, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS + KC_TRNS, RGB_HUD, RGB_HUI ), /* Keymap 2: Media and mouse keys * @@ -160,6 +165,33 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) return MACRO_NONE; }; +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + switch (keycode) { + // dynamically generate these. + case EPRM: + if (record->event.pressed) { + eeconfig_init(); + } + return false; + break; + case VRSN: + if (record->event.pressed) { + SEND_STRING (QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION); + } + return false; + break; + case RGB_SLD: + if (record->event.pressed) { + #ifdef RGBLIGHT_ENABLE + rgblight_mode(1); + #endif + } + return false; + break; + } + return true; +} + // Runs just one time when the keyboard initializes. void matrix_init_user(void) { diff --git a/keyboards/ergodox/keymaps/dvorak_programmer/Makefile b/keyboards/ergodox/keymaps/dvorak_programmer/Makefile index 1fd6cb9ffd..3c65e25e19 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/Makefile +++ b/keyboards/ergodox/keymaps/dvorak_programmer/Makefile @@ -5,4 +5,4 @@ FORCE_NKRO ?= yes DEBUG_ENABLE = no CONSOLE_ENABLE = no TAP_DANCE_ENABLE = yes -MOUSEKEY_ENABLE = no +MOUSEKEY_ENABLE = yes diff --git a/keyboards/ergodox/keymaps/dvorak_programmer/README.md b/keyboards/ergodox/keymaps/dvorak_programmer/README.md index a4580fe064..3e4a2545b8 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/README.md +++ b/keyboards/ergodox/keymaps/dvorak_programmer/README.md @@ -11,5 +11,19 @@ Layers * KEY_NAV: arrow key movement with backward/forward word support, and copy/paste. * KEY_SEL: same as above, but every movement shift-selects. * NUMBER: keypad layer. -* SYMBOL: all the symbols as well as brackets at the bottom. +* SYMBOL: all the symbols. +* BRACKET: special brackets-only layer for programming * SHORTCUTS: sends Hyper keys for Autohotkey to interpret. I use this to switch between specific apps. +* MOUSE: use mouse keys + +Updates +------- + +2016/12/10: +* toggle for brackets layer is now on left thumb cluster. + +2016/11/05: +* removed brackets anywhere but in brackets layer +* added mouse layer back in +* put semicolon-newline and end-newline on symbol layer +* replaced all HYPR with MEH, added more shortcut keys
\ No newline at end of file diff --git a/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c b/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c index 5100115a64..f3d02f688d 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c +++ b/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c @@ -13,6 +13,7 @@ #define SYMBOL 6 #define BRACKETS 7 #define SHORTCUTS 8 +#define MOUSE 9 // macros #define MC_COPY_LINE 0 @@ -57,13 +58,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [BASE] = KEYMAP( // layer 0 : default // left hand KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, - LT(BRACKETS,KC_TAB), KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, MO(KEY_SEL), + LT(MOUSE,KC_TAB), KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, MO(KEY_SEL), MO(SHELL_NAV), KC_A, KC_O, KC_E, KC_U, KC_I, KC_FN3, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, MO(KEY_NAV), OSL(SHORTCUTS),KC_FN4, KC_FN5,OSL(SYMBOL),MO(NUMBER), // thumb cluster - RCTL(KC_F), RCTL(KC_S), - RCTL(KC_DEL), + MO(BRACKETS), RCTL(KC_S), + RCTL(KC_DEL), KC_BSPC,RCTL(KC_BSPC),KC_DEL, // right hand KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_BSLS, @@ -71,9 +72,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_PGDN, KC_B, KC_M, KC_W, KC_V, KC_Z, TD(TD_SHIFT_CAPSLOCK), // lower keys - browser tab control - RSFT(RCTL(KC_TAB)), RCTL(KC_TAB), RCTL(KC_T), RCTL(KC_K), RCTL(KC_W), + RSFT(RCTL(KC_TAB)), RCTL(KC_TAB), RCTL(KC_T), LALT(KC_LEFT), RCTL(KC_W), // thumb cluster - M(SEMICOLON_NEWLINE), M(END_NEWLINE), + KC_HOME,KC_END, KC_UP, KC_DOWN,KC_ENT, KC_SPC ), @@ -96,7 +97,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RCTL(KC_L), RCTL(KC_W), KC_HOME, KC_UP, KC_END, LALT(KC_D), RCTL(KC_R), LALT(KC_B), KC_LEFT, KC_DOWN, KC_RIGHT, LALT(KC_F), LALT(KC_DOT), - RCTL(KC_C), RCTL(KC_U), M(SCREEN_COPY_MODE), M(SCREEN_PASTE), HYPR(KC_V), RCTL(KC_K), M(SHELL_RECALL_LAST_ARG_REMOVE_FIRST_COMMAND), + RCTL(KC_C), RCTL(KC_U), M(SCREEN_COPY_MODE), M(SCREEN_PASTE), MEH(KC_V), RCTL(KC_K), M(SHELL_RECALL_LAST_ARG_REMOVE_FIRST_COMMAND), // bottom row M(SCREEN_TAB_LEFT), M(SCREEN_TAB_RIGHT), M(SCREEN_NEW_TAB), KC_TRNS, KC_TRNS, // thumb cluster @@ -187,21 +188,21 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [SYMBOL] = KEYMAP( // left hand - KC_NO,KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, - KC_TRNS,KC_TRNS, M(OPEN_CLOSE_PAREN), KC_LPRN, KC_RPRN, KC_TRNS, KC_TRNS, - KC_TRNS,KC_TRNS, M(OPEN_CLOSE_BRACKET), KC_LBRC, KC_RBRC, M(OPEN_CLOSE_DOUBLE_QUOTE), - KC_TRNS,M(SEMICOLON_NEWLINE),M(OPEN_CLOSE_CURLY), KC_LCBR, KC_RCBR, M(OPEN_CLOSE_SINGLE_QUOTE),KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, + KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, + KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, + KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, + KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, // right hand - KC_LPRN, KC_RPRN, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PLUS, KC_AMPR, KC_ASTR, KC_GRAVE,KC_TILD, KC_TRNS, KC_MINS, KC_DLR, KC_PERC, KC_CIRC, KC_PIPE, KC_TRNS, KC_TRNS, KC_EQUAL,KC_EXLM, KC_AT, KC_HASH, KC_TRNS, KC_TRNS, - KC_LBRC, KC_RBRC, TD(TD_BRK_LEFT), TD(TD_BRK_RIGHT), KC_TRNS, - KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + M(SEMICOLON_NEWLINE), M(END_NEWLINE), KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS ), @@ -229,26 +230,46 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [SHORTCUTS] = KEYMAP( // left hand - KC_NO, HYPR(KC_F1), HYPR(KC_F2), HYPR(KC_F3), HYPR(KC_F4), HYPR(KC_F5), HYPR(KC_F6), + KC_NO, MEH(KC_F1), MEH(KC_F2), MEH(KC_F3), MEH(KC_F4), MEH(KC_F5), MEH(KC_F6), KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, - KC_TRNS,KC_TRNS, - KC_TRNS, - KC_TRNS,KC_TRNS,KC_TRNS, + MEH(KC_0),MEH(KC_1), + MEH(KC_2), + MEH(KC_3),MEH(KC_4),MEH(KC_5), // right hand - HYPR(KC_F7), HYPR(KC_F8), HYPR(KC_F9), HYPR(KC_F10), HYPR(KC_F11), HYPR(KC_F12), M(SWITCH_NDS), - KC_TRNS, HYPR(KC_A), HYPR(KC_B), HYPR(KC_C), HYPR(KC_D), HYPR(KC_E), HYPR(KC_F), - HYPR(KC_G), HYPR(KC_H), HYPR(KC_I), HYPR(KC_J), HYPR(KC_K), HYPR(KC_L), - KC_TRNS, HYPR(KC_M), HYPR(KC_N), HYPR(KC_O), HYPR(KC_P), HYPR(KC_Q), HYPR(KC_R), - LALT(KC_LEFT),LALT(KC_RIGHT),KC_F5, LCTL(LGUI(KC_LEFT)), LCTL(LGUI(KC_RIGHT)), + MEH(KC_F7), MEH(KC_F8), MEH(KC_F9), MEH(KC_F10), MEH(KC_F11), MEH(KC_F12), M(SWITCH_NDS), + KC_TRNS, MEH(KC_A), MEH(KC_B), MEH(KC_C), MEH(KC_D), MEH(KC_E), MEH(KC_F), + MEH(KC_G), MEH(KC_H), MEH(KC_I), MEH(KC_J), MEH(KC_K), MEH(KC_L), + KC_TRNS, MEH(KC_M), MEH(KC_N), MEH(KC_O), MEH(KC_P), MEH(KC_Q), MEH(KC_R), + MEH(KC_S), MEH(KC_T), MEH(KC_U), MEH(KC_V), MEH(KC_X), + MEH(KC_6), MEH(KC_7), + MEH(KC_8), + MEH(KC_9), MEH(KC_Y), MEH(KC_Z) +), + + +[MOUSE] = KEYMAP( + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, + KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, + // right hand + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_MS_U, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_MS_L, KC_MS_D, KC_MS_R, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS + KC_TRNS, KC_BTN1, KC_BTN2 ), - }; diff --git a/keyboards/ergodox/keymaps/erez_experimental/keymap.c b/keyboards/ergodox/keymaps/erez_experimental/keymap.c index 2963c40e31..13b8240ce8 100644 --- a/keyboards/ergodox/keymaps/erez_experimental/keymap.c +++ b/keyboards/ergodox/keymaps/erez_experimental/keymap.c @@ -73,7 +73,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * ,-------------. ,-------------. * | | | |TOG | * ,------|------|------| |------+------+------. - * |VAI |VAD |HUI | |SAI |TOG |MOD | + * |VAI |VAD |HUI | |SAI | |MOD | * | | |------| |------| | | * | | |HUD | |SAD | | | * `--------------------' `--------------------' diff --git a/keyboards/ergodox/keymaps/pvinis/keymap.c b/keyboards/ergodox/keymaps/pvinis/keymap.c index df906201a8..87ad70c919 100644 --- a/keyboards/ergodox/keymaps/pvinis/keymap.c +++ b/keyboards/ergodox/keymaps/pvinis/keymap.c @@ -13,20 +13,16 @@ enum { QWERTY, CARPALX, SYSCTL, + MOUSE, }; // extra keys enum { NONE = 0, - // mouse - MS_UL, // up left - MS_UR, // up right - MS_DL, // down left - MS_DR, // down right - // tap dance TD_FLSH, // flash keyboard + TD_LAYR, // SYSCTL and MOUSE layer switch }; // application selection @@ -52,7 +48,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * | | | | | | | | | | | | * `----------------------------------' `----------------------------------' * ,-------------. ,-------------. - * |BEGIN |QWERTY| |SYSCTL| | + * |BEGIN |QWERTY| | | | * ,------|------|------| |------+--------+------. * | | |CARPAL| |Slack | | | * |Backsp|LShift|------| |------| Enter |Space | @@ -66,9 +62,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO - ,TG(BEGIN) ,TG(QWERTY) - ,TG(CARPALX) - ,KC_BSPC ,KC_LSFT ,TG(SYSCTL) + ,TG(BEGIN) ,TD(TD_LAYR) + ,TG(MOUSE) + ,KC_BSPC ,KC_LSFT ,TD(TD_LAYR) ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO @@ -85,7 +81,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * a beginner's keymap i currently use. * * ,--------------------------------------------------. ,--------------------------------------------------. - * | | 1 | 2 | 3 | 4 | 5 | 6 | | 6 | 7 | 8 | 9 | 0 | - | = | + * | | 1 | 2 | 3 | 4 | 5 | opt | | 6 | 7 | 8 | 9 | 0 | - | = | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| * | Tab | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | \ | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| @@ -104,7 +100,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * `--------------------' `----------------------' */ [BEGIN] = KEYMAP( - KC_TRNS ,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,KC_6 + KC_TRNS ,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,KC_LALT ,KC_TAB ,KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,KC_LBRC ,CTL_T(KC_ESC) ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G ,KC_LSFT ,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,KC_LPRN @@ -213,30 +209,73 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ,KC_TRNS ,KC_TRNS ,KC_TRNS ), - /* SYSCTL * a keymap to control my system. * + * ,--------------------------------------------------. ,------------------------------------------------------. + * | ^ | | | | | | | | | | | | | | | + * |--------+------+------+------+------+-------------| |------+------+------+----------+------+------+--------| + * | | | | | | | | | | Mute | Home | Up | End | | | + * |--------+------+------+------+------+------| | | |------+------+----------+------+------+--------| + * | | | | | | |------| |------|VolUp | Left | Down |Right | | Lock | + * |--------+------+------+------+------+------| | | |------+------+----------+------+------+--------| + * | | | | | | | | | |VolDn | Prev |Play/Pause| Next | | Sleep | + * `--------+------+------+------+------+-------------' `-------------+------+----------+------+------+--------' + * | | | | | | | | | | | Power| + * `----------------------------------' `--------------------------------------' + * ,-------------. ,-------------. + * | | | | | | + * ,------|------|------| |------+------+------. + * | | | | | | | | + * | | |------| |------| | | + * | | | ^ | | | | | + * `--------------------' `--------------------' + */ +[SYSCTL] = KEYMAP( + KC_TRNS ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO +,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO +,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO +,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO +,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO + + ,KC_NO ,KC_NO + ,KC_NO + ,KC_NO ,KC_NO ,KC_TRNS + + /*,KC_POP /// */,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO + /* /// ,KC_PTRN*/,KC_NO ,KC_MUTE ,KC_HOME ,KC_UP ,KC_END ,KC_NO ,KC_NO + ,KC_VOLU ,KC_LEFT ,KC_DOWN ,KC_RGHT ,KC_NO ,LCTL(LSFT(KC_PWR)) + ,KC_NO ,KC_VOLD ,KC_MPRV ,KC_MPLY ,KC_MNXT ,KC_NO ,KC_SLEP + ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_PWR + + ,KC_NO ,KC_NO + ,KC_NO + ,KC_NO ,KC_NO ,KC_NO +), + +/* MOUSE + * a keymap to control my system. + * * ,--------------------------------------------------. ,--------------------------------------------------. - * | | | | | | | | | | | | Mute |VolDn |VolUp | | + * | ^ | | | | | | | | | | | | | | | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| - * | | | | | | | | | | |MsUpL | MsUp |MsUpR | | | + * | | | | | | | | | | | | MsUp | | | | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| - * | | | | | | |------| |------| |MsLeft| MsDn |MsRght| | Lock | + * | | | | | | |------| |------| |MsLeft| MsDn |MsRght| | | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| - * | | | | | | | | | | |MsDnL | MsDn | | | Sleep | + * | | | | | | | | | | | | | | | | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' - * | | | | | | | | | | | Power| + * | | | | | | | | | | | | * `----------------------------------' `----------------------------------' * ,-------------. ,-------------. * | | | | |MidClk| * ,------|------|------| |------+------+------. * | | | | | |Left |Right | * | | |------| |------| Click| Click| - * | | | | | | | | + * | | | ^ | | | | | * `--------------------' `--------------------' */ -[SYSCTL] = KEYMAP( +[MOUSE] = KEYMAP( KC_TRNS ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO @@ -245,13 +284,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ,KC_NO ,KC_NO ,KC_NO - ,KC_NO ,KC_NO ,KC_NO + ,KC_NO ,KC_NO ,KC_TRNS - /*,KC_POP*/,KC_NO ,KC_NO ,KC_NO ,KC_MUTE ,KC_VOLD ,KC_VOLU ,KC_NO - /*,KC_PTRN*/,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO - ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,LCTL(LSFT(KC_PWR)) - ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_SLEP - ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_PWR + ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO + ,KC_NO ,KC_NO ,KC_NO ,KC_MS_U ,KC_NO ,KC_NO ,KC_NO + ,KC_NO ,KC_MS_L ,KC_MS_D ,KC_MS_R ,KC_NO ,KC_NO + ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO + ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO @@ -341,48 +380,29 @@ void matrix_init_user() { ergodox_led_all_off(); } -// extra keys -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { - switch (id) { +// light up leds based on the layer +void matrix_scan_user(void) { + uint8_t layer = biton32(layer_state); - // mouse - case MS_UL: - if (record->event.pressed) { - mousekey_on(KC_MS_UP); - mousekey_on(KC_MS_LEFT); - } else { - mousekey_off(KC_MS_UP); - mousekey_off(KC_MS_LEFT); - } - break; - case MS_UR: - if (record->event.pressed) { - mousekey_on(KC_MS_UP); - mousekey_on(KC_MS_RIGHT); - } else { - mousekey_off(KC_MS_UP); - mousekey_off(KC_MS_RIGHT); - } + switch(layer) { + case SYSCTL: + ergodox_right_led_3_on(); break; - case MS_DL: - if (record->event.pressed) { - mousekey_on(KC_MS_DOWN); - mousekey_on(KC_MS_LEFT); - } else { - mousekey_off(KC_MS_DOWN); - mousekey_off(KC_MS_LEFT); - } + case MOUSE: + ergodox_right_led_2_on(); break; - case MS_DR: - if (record->event.pressed) { - mousekey_on(KC_MS_DOWN); - mousekey_on(KC_MS_RIGHT); - } else { - mousekey_off(KC_MS_DOWN); - mousekey_off(KC_MS_RIGHT); - } + default: + ergodox_right_led_1_off(); + ergodox_right_led_2_off(); + ergodox_right_led_3_off(); break; } +} + +// extra keys +const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { + switch (id) { + } return MACRO_NONE; } @@ -425,6 +445,31 @@ void flash_dance_reset(qk_tap_dance_state_t *state, void *user_data) { ergodox_right_led_3_off(); } +// SYSCTL on first tap, MOUSE ON second tap +void layers_dance_finished(qk_tap_dance_state_t *state, void *user_data) { + uint8_t layer = biton32(layer_state); + + switch(state->count) { + case 1: + switch(layer) { + case SYSCTL: + layer_off(SYSCTL); + break; + case MOUSE: + layer_off(MOUSE); + break; + default: + layer_on(SYSCTL); + break; + } + break; + case 2: + layer_on(MOUSE); + break; + } +} + qk_tap_dance_action_t tap_dance_actions[] = { [TD_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED( flash_each_tap, flash_dance_finished, flash_dance_reset ), + [TD_LAYR] = ACTION_TAP_DANCE_FN_ADVANCED( NULL, layers_dance_finished, NULL ), }; diff --git a/keyboards/handwired/pilcrow/Makefile b/keyboards/handwired/pilcrow/Makefile new file mode 100644 index 0000000000..191c6bb664 --- /dev/null +++ b/keyboards/handwired/pilcrow/Makefile @@ -0,0 +1,3 @@ +ifndef MAKEFILE_INCLUDED + include ../../../Makefile +endif
\ No newline at end of file diff --git a/keyboards/handwired/pilcrow/config.h b/keyboards/handwired/pilcrow/config.h new file mode 100644 index 0000000000..d63eeba36e --- /dev/null +++ b/keyboards/handwired/pilcrow/config.h @@ -0,0 +1,162 @@ +/* +Copyright 2012 Jun Wako <wakojun@gmail.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef CONFIG_H +#define CONFIG_H + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xFEED +#define PRODUCT_ID 0x6060 +#define DEVICE_VER 0x0001 +#define MANUFACTURER You +#define PRODUCT pilcrow +#define DESCRIPTION A custom keyboard + +/* key matrix size */ +#define MATRIX_ROWS 4 +#define MATRIX_COLS 10 + +/* + * Keyboard Matrix Assignments + * + * Change this to how you wired your keyboard + * COLS: AVR pins used for columns, left to right + * ROWS: AVR pins used for rows, top to bottom + * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) + * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) + * +*/ +#define MATRIX_ROW_PINS { B4, F7, B1, B3 } +#define MATRIX_COL_PINS { D4, C6, D7, E6, F5, F6, B6, B2, F4, B5} +#define UNUSED_PINS + +/* COL2ROW or ROW2COL */ +#define DIODE_DIRECTION COL2ROW + +// #define BACKLIGHT_PIN B7 +// #define BACKLIGHT_BREATHING +// #define BACKLIGHT_LEVELS 3 + + +/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ +#define DEBOUNCING_DELAY 5 + +/* define if matrix has ghost (lacks anti-ghosting diodes) */ +//#define MATRIX_HAS_GHOST + +/* number of backlight levels */ + +/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ +#define LOCKING_SUPPORT_ENABLE +/* Locking resynchronize hack */ +#define LOCKING_RESYNC_ENABLE + +/* + * Force NKRO + * + * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved + * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the + * makefile for this to work.) + * + * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) + * until the next keyboard reset. + * + * NKRO may prevent your keystrokes from being detected in the BIOS, but it is + * fully operational during normal computer usage. + * + * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) + * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by + * bootmagic, NKRO mode will always be enabled until it is toggled again during a + * power-up. + * + */ +//#define FORCE_NKRO + +/* + * Magic Key Options + * + * Magic keys are hotkey commands that allow control over firmware functions of + * the keyboard. They are best used in combination with the HID Listen program, + * found here: https://www.pjrc.com/teensy/hid_listen.html + * + * The options below allow the magic key functionality to be changed. This is + * useful if your keyboard/keypad is missing keys and you want magic key support. + * + */ + +/* key combination for magic key command */ +#define IS_COMMAND() ( \ + keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ +) + +/* control how magic key switches layers */ +//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true +//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true +//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false + +/* override magic key keymap */ +//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS +//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS +//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM +//#define MAGIC_KEY_HELP1 H +//#define MAGIC_KEY_HELP2 SLASH +//#define MAGIC_KEY_DEBUG D +//#define MAGIC_KEY_DEBUG_MATRIX X +//#define MAGIC_KEY_DEBUG_KBD K +//#define MAGIC_KEY_DEBUG_MOUSE M +//#define MAGIC_KEY_VERSION V +//#define MAGIC_KEY_STATUS S +//#define MAGIC_KEY_CONSOLE C +//#define MAGIC_KEY_LAYER0_ALT1 ESC +//#define MAGIC_KEY_LAYER0_ALT2 GRAVE +//#define MAGIC_KEY_LAYER0 0 +//#define MAGIC_KEY_LAYER1 1 +//#define MAGIC_KEY_LAYER2 2 +//#define MAGIC_KEY_LAYER3 3 +//#define MAGIC_KEY_LAYER4 4 +//#define MAGIC_KEY_LAYER5 5 +//#define MAGIC_KEY_LAYER6 6 +//#define MAGIC_KEY_LAYER7 7 +//#define MAGIC_KEY_LAYER8 8 +//#define MAGIC_KEY_LAYER9 9 +//#define MAGIC_KEY_BOOTLOADER PAUSE +//#define MAGIC_KEY_LOCK CAPS +//#define MAGIC_KEY_EEPROM E +//#define MAGIC_KEY_NKRO N +//#define MAGIC_KEY_SLEEP_LED Z + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT +//#define NO_ACTION_MACRO +//#define NO_ACTION_FUNCTION + +#endif diff --git a/keyboards/maxipad/keymaps/default/Makefile b/keyboards/handwired/pilcrow/keymaps/default/Makefile index f4671a9d11..f4671a9d11 100644 --- a/keyboards/maxipad/keymaps/default/Makefile +++ b/keyboards/handwired/pilcrow/keymaps/default/Makefile diff --git a/keyboards/maxipad/keymaps/default/config.h b/keyboards/handwired/pilcrow/keymaps/default/config.h index df06a26206..df06a26206 100644 --- a/keyboards/maxipad/keymaps/default/config.h +++ b/keyboards/handwired/pilcrow/keymaps/default/config.h diff --git a/keyboards/handwired/pilcrow/keymaps/default/keymap.c b/keyboards/handwired/pilcrow/keymaps/default/keymap.c new file mode 100644 index 0000000000..e382e4c6ad --- /dev/null +++ b/keyboards/handwired/pilcrow/keymaps/default/keymap.c @@ -0,0 +1,88 @@ +#include "pilcrow.h" +#define _______ KC_TRNS +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { +[0] = KEYMAP( \ + KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, \ + KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, \ + KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, \ + KC_LCTL, KC_LALT, KC_LGUI, MO(1), KC_SPC, MT(MOD_LSFT, KC_SPC), MO(2), MO(3), KC_DEL, KC_ESC \ +), + +/* Colemak + * ,-----------------------------------------------------------------------------------. + * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp | + * |------+------+------+------+------+-------------+------+------+------+------+------| + * | Esc | A | R | S | T | D | H | N | E | I | O | " | + * |------+------+------+------+------+------|------+------+------+------+------+------| + * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter | + * |------+------+------+------+------+------+------+------+------+------+------+------| + * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right | + * `-----------------------------------------------------------------------------------' + */ +[1] = KEYMAP( \ + KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, \ + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, \ + KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_PIPE, S(KC_QUOT), \ + _______, _______, _______, _______, KC_BSPC, KC_BSPC, _______, KC_MNXT, KC_VOLD, KC_GRV \ +), +[2] = KEYMAP( \ + KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \ + KC_TAB, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT,KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, \ + OSM(MOD_LSFT), KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_BSLS, KC_QUOT, \ + _______, _______, _______, _______, KC_ENT, KC_ENT, _______, KC_MNXT, KC_VOLD, KC_VOLU \ +), + +/* Adjust (Lower + Raise) + * ,-----------------------------------------------------------------------------------. + * | | Reset| | | | | | | | | | Del | + * |------+------+------+------+------+-------------+------+------+------+------+------| + * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | + * |------+------+------+------+------+------|------+------+------+------+------+------| + * | | | | | | | | | | | | | + * |------+------+------+------+------+------+------+------+------+------+------+------| + * | | | | | | | | | | | | + * `-----------------------------------------------------------------------------------' + */ +[3] = KEYMAP( \ + RESET, KC_UP, _______, _______, _______, _______, _______, KC_MS_WH_DOWN, KC_MS_U, KC_MS_WH_UP, \ + KC_LEFT, KC_DOWN, KC_RIGHT, AU_ON, AU_OFF, AG_NORM, AG_SWAP, KC_MS_L,KC_MS_D, KC_MS_R, \ + RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, \ + _______, _______, _______, _______, KC_MS_BTN1, KC_MS_BTN2, _______, _______, _______, _______ \ +) +}; + +const uint16_t PROGMEM fn_actions[] = { + +}; + +const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) +{ + // MACRODOWN only works in this function + switch(id) { + case 0: + if (record->event.pressed) { + register_code(KC_RSFT); + } else { + unregister_code(KC_RSFT); + } + break; + } + return MACRO_NONE; +}; + + +void matrix_init_user(void) { + +} + +void matrix_scan_user(void) { + +} + +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + return true; +} + +void led_set_user(uint8_t usb_led) { + +}
\ No newline at end of file diff --git a/keyboards/handwired/pilcrow/keymaps/default/readme.md b/keyboards/handwired/pilcrow/keymaps/default/readme.md new file mode 100644 index 0000000000..95472dfca8 --- /dev/null +++ b/keyboards/handwired/pilcrow/keymaps/default/readme.md @@ -0,0 +1 @@ +# The default keymap for pilcrow
\ No newline at end of file diff --git a/keyboards/handwired/pilcrow/pilcrow.c b/keyboards/handwired/pilcrow/pilcrow.c new file mode 100644 index 0000000000..c8243df7bf --- /dev/null +++ b/keyboards/handwired/pilcrow/pilcrow.c @@ -0,0 +1,28 @@ +#include "pilcrow.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + + matrix_init_user(); +} + +void matrix_scan_kb(void) { + // put your looping keyboard code here + // runs every cycle (a lot) + + matrix_scan_user(); +} + +bool process_record_kb(uint16_t keycode, keyrecord_t *record) { + // put your per-action keyboard code here + // runs for every action, just before processing by the firmware + + return process_record_user(keycode, record); +} + +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + + led_set_user(usb_led); +} diff --git a/keyboards/handwired/pilcrow/pilcrow.h b/keyboards/handwired/pilcrow/pilcrow.h new file mode 100644 index 0000000000..7138ccb3f6 --- /dev/null +++ b/keyboards/handwired/pilcrow/pilcrow.h @@ -0,0 +1,23 @@ +#ifndef PILCROW_H +#define PILCROW_H + +#include "quantum.h" + +// This a shortcut to help you visually see your layout. +// The following is an example using the Planck MIT layout +// The first section contains all of the arguements +// The second converts the arguments into a two-dimensional array +#define KEYMAP( \ + k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, \ + k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, \ + k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, \ + k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 \ +) \ +{ \ + { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ + { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \ + { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ + { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 } \ +} + +#endif diff --git a/keyboards/handwired/pilcrow/readme.md b/keyboards/handwired/pilcrow/readme.md new file mode 100644 index 0000000000..7a7f6d2af5 --- /dev/null +++ b/keyboards/handwired/pilcrow/readme.md @@ -0,0 +1,28 @@ +pilcrow keyboard firmware +====================== + +## Quantum MK Firmware + +For the full Quantum feature list, see [the parent readme](/). + +## Building + +Download or clone the whole firmware and navigate to the keyboards/pilcrow folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file. + +Depending on which keymap you would like to use, you will have to compile slightly differently. + +### Default + +To build with the default keymap, simply run `make default`. + +### Other Keymaps + +Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder, and see keymap documentation (you can find in top readme.md) and existant keymap files. + +To build the firmware binary hex file with a keymap just do `make` with a keymap like this: + +``` +$ make [default|jack|<name>] +``` + +Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder. diff --git a/keyboards/handwired/pilcrow/rules.mk b/keyboards/handwired/pilcrow/rules.mk new file mode 100644 index 0000000000..55898147dd --- /dev/null +++ b/keyboards/handwired/pilcrow/rules.mk @@ -0,0 +1,67 @@ +# MCU name +#MCU = at90usb1287 +MCU = atmega32u4 + +# Processor frequency. +# This will define a symbol, F_CPU, in all source code files equal to the +# processor frequency in Hz. You can then use this symbol in your source code to +# calculate timings. Do NOT tack on a 'UL' at the end, this will be done +# automatically to create a 32-bit value in your source code. +# +# This will be an integer division of F_USB below, as it is sourced by +# F_USB after it has run through any CPU prescalers. Note that this value +# does not *change* the processor frequency - it should merely be updated to +# reflect the processor speed set externally so that the code can use accurate +# software delays. +F_CPU = 16000000 + + +# +# LUFA specific +# +# Target architecture (see library "Board Types" documentation). +ARCH = AVR8 + +# Input clock frequency. +# This will define a symbol, F_USB, in all source code files equal to the +# input clock frequency (before any prescaling is performed) in Hz. This value may +# differ from F_CPU if prescaling is used on the latter, and is required as the +# raw input clock is fed directly to the PLL sections of the AVR for high speed +# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' +# at the end, this will be done automatically to create a 32-bit value in your +# source code. +# +# If no clock division is performed on the input clock inside the AVR (via the +# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. +F_USB = $(F_CPU) + +# Interrupt driven control endpoint task(+60) +OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT + + +# Boot Section Size in *bytes* +# Teensy halfKay 512 +# Teensy++ halfKay 1024 +# Atmel DFU loader 4096 +# LUFA bootloader 4096 +# USBaspLoader 2048 +OPT_DEFS += -DBOOTLOADER_SIZE=512 + + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= yes # Console for debug(+400) +COMMAND_ENABLE ?= yes # Commands for debug and configuration +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE ?= no # USB Nkey Rollover +BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default +MIDI_ENABLE ?= no # MIDI controls +UNICODE_ENABLE ?= no # Unicode +BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID +AUDIO_ENABLE ?= no # Audio output on port C6 diff --git a/keyboards/handwired/promethium/config.h b/keyboards/handwired/promethium/config.h index 473af67d34..23fbfd0b9a 100644 --- a/keyboards/handwired/promethium/config.h +++ b/keyboards/handwired/promethium/config.h @@ -20,13 +20,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "config_common.h" +#define USB_VENDOR_ID_LENOVO 0x17ef +#define USB_DEVICE_ID_LENOVO_TPKBD 0x6009 +#define USB_DEVICE_ID_LENOVO_CUSBKBD 0x6047 +#define USB_DEVICE_ID_LENOVO_CBTKBD 0x6048 +#define USB_DEVICE_ID_LENOVO_TPPRODOCK 0x6067 + /* USB Device descriptor parameter */ -#define VENDOR_ID 0xFEED -#define PRODUCT_ID 0x6660 +#define VENDOR_ID USB_VENDOR_ID_LENOVO +#define PRODUCT_ID USB_DEVICE_ID_LENOVO_CBTKBD #define DEVICE_VER 0x0001 #define MANUFACTURER Priyadi #define PRODUCT Promethium Keyboard -#define DESCRIPTION Promethium Keyboard +#define DESCRIPTION /* key matrix size */ #define MATRIX_ROWS 8 diff --git a/keyboards/handwired/promethium/keymaps/priyadi/Makefile b/keyboards/handwired/promethium/keymaps/priyadi/Makefile index 2f6f27a732..46fdfa0118 100644 --- a/keyboards/handwired/promethium/keymaps/priyadi/Makefile +++ b/keyboards/handwired/promethium/keymaps/priyadi/Makefile @@ -4,16 +4,17 @@ # change to "no" to disable the options, or define them in the Makefile in # the appropriate keymap folder that will get included automatically # -BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) -MOUSEKEY_ENABLE = yes # Mouse keys(+4700) +BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE = no # Mouse keys(+4700) EXTRAKEY_ENABLE = yes # Audio control and System control(+450) CONSOLE_ENABLE = no # Console for debug(+400) -COMMAND_ENABLE = yes # Commands for debug and configuration +COMMAND_ENABLE = no # Commands for debug and configuration NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality MIDI_ENABLE = no # MIDI controls AUDIO_ENABLE = no # Audio output on port C6 UNICODE_ENABLE = no # Unicode +UNICODEMAP_ENABLE = yes BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. PS2_MOUSE_ENABLE = yes diff --git a/keyboards/handwired/promethium/keymaps/priyadi/flash.sh b/keyboards/handwired/promethium/keymaps/priyadi/flash.sh index fb81a54ee0..14a3b43789 100755 --- a/keyboards/handwired/promethium/keymaps/priyadi/flash.sh +++ b/keyboards/handwired/promethium/keymaps/priyadi/flash.sh @@ -1,3 +1,4 @@ #!/bin/sh +sleep 10 avrdude -p m32u4 -P /dev/ttyACM0 -c avr109 -U flash:w:../../../../../.build/handwired_promethium_priyadi.hex diff --git a/keyboards/handwired/promethium/keymaps/priyadi/keymap.c b/keyboards/handwired/promethium/keymaps/priyadi/keymap.c index b2da2f97b7..7ae269563f 100644 --- a/keyboards/handwired/promethium/keymaps/priyadi/keymap.c +++ b/keyboards/handwired/promethium/keymaps/priyadi/keymap.c @@ -11,6 +11,8 @@ #include "process_unicode.h" #include "quantum.h" #include "rgbsps.h" +#include "ps2_mouse.h" +#include "ps2.h" #define COUNT(x) (sizeof (x) / sizeof (*(x))) // #define RGBLED_NUM 5 @@ -282,25 +284,25 @@ void led_layer_func(void) { rgbsps_set(LED_K, 15, 0, 15); rgbsps_set(LED_L, 15, 0, 15); - rgbsps_set(LED_U, 15, 0, 10); - rgbsps_set(LED_O, 15, 0, 10); - rgbsps_set(LED_COMM, 15, 0, 10); - rgbsps_set(LED_DOT, 15, 0, 10); - rgbsps_set(LED_SCLN, 15, 0, 10); - rgbsps_set(LED_P, 15, 0, 10); - - rgbsps_set(LED_Q, 10, 0, 15); - rgbsps_set(LED_W, 10, 0, 15); - rgbsps_set(LED_E, 10, 0, 15); - rgbsps_set(LED_R, 10, 0, 15); - rgbsps_set(LED_A, 10, 0, 15); - rgbsps_set(LED_S, 10, 0, 15); - rgbsps_set(LED_D, 10, 0, 15); - rgbsps_set(LED_F, 10, 0, 15); - rgbsps_set(LED_Z, 10, 0, 15); - rgbsps_set(LED_X, 10, 0, 15); - rgbsps_set(LED_C, 10, 0, 15); - rgbsps_set(LED_V, 10, 0, 15); + rgbsps_set(LED_U, 15, 0, 0); + rgbsps_set(LED_O, 15, 0, 0); + rgbsps_set(LED_COMM, 15, 0, 0); + rgbsps_set(LED_DOT, 15, 0, 0); + rgbsps_set(LED_SCLN, 15, 0, 0); + rgbsps_set(LED_P, 15, 0, 0); + + rgbsps_set(LED_Q, 0, 15, 0); + rgbsps_set(LED_W, 0, 15, 0); + rgbsps_set(LED_E, 0, 15, 0); + rgbsps_set(LED_R, 0, 15, 0); + rgbsps_set(LED_A, 0, 15, 0); + rgbsps_set(LED_S, 0, 15, 0); + rgbsps_set(LED_D, 0, 15, 0); + rgbsps_set(LED_F, 0, 15, 0); + rgbsps_set(LED_Z, 0, 15, 0); + rgbsps_set(LED_X, 0, 15, 0); + rgbsps_set(LED_C, 0, 15, 0); + rgbsps_set(LED_V, 0, 15, 0); rgbsps_send(); } @@ -361,7 +363,15 @@ void led_layer_num(void) { } void led_layer_emoji(void) { - rgbsps_setall(15, 15, 0); + for(uint8_t i = 0; i < COUNT(LED_ALNUM); i++) { + rgbsps_set(pgm_read_byte(&LED_ALNUM[i]), 15, 15, 0); + } + for(uint8_t i = 0; i < COUNT(LED_MODS); i++) { + rgbsps_set(pgm_read_byte(&LED_MODS[i]), 15, 15, 0); + } + for(uint8_t i = 0; i < COUNT(LED_FN); i++) { + rgbsps_set(pgm_read_byte(&LED_FN[i]), 15, 15, 0); + } rgbsps_set(LED_IND_FUNC, 0, 0, 0); rgbsps_set(LED_IND_NUM, 0, 0, 0); @@ -415,7 +425,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { */ [_QWERTY] = KEYMAP( KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, - KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT , + KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_ENT , KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL ), @@ -432,10 +442,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * `-----------------------------------------------------------------------------------' */ [_COLEMAK] = KEYMAP( - KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, - KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_ENT , - KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, - KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL + _______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_QUOT, _______, + _______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, _______, + _______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ), /* Workman @@ -450,10 +460,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * `-----------------------------------------------------------------------------------' */ [_WORKMAN] = KEYMAP( - KC_TAB, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC, - KC_ESC, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_ENT , - KC_LSFT, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, - KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL + _______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_QUOT, _______, + _______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, _______, + _______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ), /* Punc @@ -541,7 +551,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { */ [_GUI] = KEYMAP( _______, LGUI(KC_1),LGUI(KC_2),LGUI(KC_3),LGUI(KC_4),LGUI(KC_5),LGUI(KC_6),LGUI(KC_7),LGUI(KC_8),LGUI(KC_9),LGUI(KC_0), _______, - LINUX, _______, KC_VOLD, KC_MUTE, KC_VOLU,_______,_______,KC_WWW_BACK,_______,KC_WWW_FORWARD,_______, QWERTY, + LINUX, _______, KC_VOLD, KC_MUTE, KC_VOLU,_______,_______,KC_WWW_BACK,_______,KC_WWW_FORWARD,KC_PAUS, QWERTY, WIN, _______, KC_MPRV, KC_MPLY, KC_MNXT, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, COLEMAK, OSX, _______, _______, _______, _______, BL_DEC, BL_INC, _______, _______, RGB_VAI, RGB_VAD, WORKMAN ), @@ -572,6 +582,39 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { #endif switch (keycode) { + // QWERTZ style comma and dot: semicolon and colon when shifted + case KC_COMM: + if (record->event.pressed) { + bool lshifted = keyboard_report->mods & MOD_BIT(KC_LSFT); + bool rshifted = keyboard_report->mods & MOD_BIT(KC_RSFT); + if (lshifted || rshifted) { + if (lshifted) unregister_code(KC_LSFT); + if (rshifted) unregister_code(KC_RSFT); + register_code(KC_SCLN); + unregister_code(KC_SCLN); + if (lshifted) register_code(KC_LSFT); + if (rshifted) register_code(KC_RSFT); + } else { + register_code(KC_COMM); + unregister_code(KC_COMM); + } + } + return false; + break; + case KC_DOT: + if (record->event.pressed) { + if ((keyboard_report->mods & MOD_BIT(KC_LSFT)) || (keyboard_report->mods & MOD_BIT(KC_RSFT))) { + register_code(KC_SCLN); + unregister_code(KC_SCLN); + } else { + register_code(KC_DOT); + unregister_code(KC_DOT); + } + } + return false; + break; + + // layout switchers case QWERTY: if (record->event.pressed) { #ifdef AUDIO_ENABLE @@ -600,8 +643,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return false; break; - - + // layer switcher case PUNC: if (record->event.pressed) { layer_on(_PUNC); @@ -663,7 +705,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return false; break; - + // OS switchers case LINUX: set_unicode_input_mode(UC_LNX); #ifdef AUDIO_ENABLE @@ -722,4 +764,40 @@ void shutdown_user() stop_all_notes(); } -#endif
\ No newline at end of file +#endif + + +void ps2_mouse_init_user() { + uint8_t rcv; + + // set TrackPoint sensitivity + PS2_MOUSE_SEND(0xE2, "set trackpoint sensitivity: 0xE2"); + PS2_MOUSE_SEND(0x81, "set trackpoint sensitivity: 0x81"); + PS2_MOUSE_SEND(0x4A, "set trackpoint sensitivity: 0x4A"); + PS2_MOUSE_SEND(0x49, "set trackpoint sensitivity: 0x59"); + + // set TrackPoint Negative Inertia factor + PS2_MOUSE_SEND(0xE2, "set negative inertia factor: 0xE2"); + PS2_MOUSE_SEND(0x81, "set negative inertia factor: 0x81"); + PS2_MOUSE_SEND(0x4D, "set negative inertia factor: 0x4D"); + PS2_MOUSE_SEND(0x06, "set negative inertia factor: 0x06"); + + // set TrackPoint speed + // (transfer function upper plateau speed) + PS2_MOUSE_SEND(0xE2, "set trackpoint speed: 0xE2"); + PS2_MOUSE_SEND(0x81, "set trackpoint speed: 0x81"); + PS2_MOUSE_SEND(0x60, "set trackpoint speed: 0x60"); + PS2_MOUSE_SEND(0x61, "set trackpoint speed: 0x61"); + + // inquire pts status + rcv = ps2_host_send(0xE2); + rcv = ps2_host_send(0x2C); + rcv = ps2_host_recv_response(); + if ((rcv & 1) == 1) { + // if on, disable pts + rcv = ps2_host_send(0xE2); + rcv = ps2_host_send(0x47); + rcv = ps2_host_send(0x2C); + rcv = ps2_host_send(0x01); + } +}
\ No newline at end of file diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h index 8f2a8c3be2..662eeab990 100644 --- a/keyboards/handwired/promethium/promethium.h +++ b/keyboards/handwired/promethium/promethium.h @@ -23,77 +23,77 @@ } enum led_sequence { - LED_IND_EMOJI, - LED_IND_NUM, - LED_IND_FUNC, - - LED_IND_BATTERY, - LED_IND_USB, LED_IND_BLUETOOTH, + LED_IND_USB, + LED_IND_BATTERY, - LED_TAB, - LED_ESC, - LED_LSFT, - LED_LCTL, - - LED_LGUI, - LED_Z, - LED_A, - LED_Q, + LED_IND_FUNC, + LED_IND_NUM, + LED_IND_EMOJI, - LED_W, - LED_S, - LED_X, - LED_LALT, + LED_BKSP, + LED_ENT, + LED_RSFT, + LED_RCTL, - LED_PUNC, - LED_C, - LED_D, - LED_E, + LED_RGUI, + LED_SLSH, + LED_SCLN, + LED_P, - LED_R, - LED_F, - LED_V, - LED_NUM, + LED_O, + LED_L, + LED_DOT, + LED_RALT, - LED_LSPC, - LED_B, - LED_G, - LED_T, + LED_EMOJI, + LED_COMM, + LED_K, + LED_I, - LED_TRACKPOINT1, - LED_TRACKPOINT2, - LED_TRACKPOINT3, + LED_U, + LED_J, + LED_M, + LED_FUNC, LED_RSPC, LED_N, LED_HH, LED_Y, - LED_U, - LED_J, - LED_M, - LED_FUNC, + LED_TRACKPOINT3, + LED_TRACKPOINT2, + LED_TRACKPOINT1, - LED_EMOJI, - LED_COMM, - LED_K, - LED_I, + LED_LSPC, + LED_B, + LED_G, + LED_T, - LED_O, - LED_L, - LED_DOT, - LED_RALT, + LED_R, + LED_F, + LED_V, + LED_NUM, - LED_RGUI, - LED_SLSH, - LED_SCLN, - LED_P, + LED_PUNC, + LED_C, + LED_D, + LED_E, - LED_BKSP, - LED_ENT, - LED_RSFT, - LED_RCTL + LED_W, + LED_S, + LED_X, + LED_LALT, + + LED_LGUI, + LED_Z, + LED_A, + LED_Q, + + LED_TAB, + LED_ESC, + LED_LSFT, + LED_LCTL, }; #endif diff --git a/keyboards/handwired/promethium/rules.mk b/keyboards/handwired/promethium/rules.mk index 0842780cce..465ef3359a 100644 --- a/keyboards/handwired/promethium/rules.mk +++ b/keyboards/handwired/promethium/rules.mk @@ -1,4 +1,3 @@ - # MCU name #MCU = at90usb1287 MCU = atmega32u4 @@ -61,11 +60,13 @@ BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality MIDI_ENABLE ?= no # MIDI controls AUDIO_ENABLE ?= no # Audio output on port C6 UNICODE_ENABLE ?= no # Unicode -UNICODEMAP_ENABLE = yes +UNICODEMAP_ENABLE ?= yes BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. PS2_MOUSE_ENABLE ?= yes PS2_USE_INT ?= yes +ADAFRUIT_BLE_ENABLE ?= yes +API_SYSEX_ENABLE ?= no # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend diff --git a/keyboards/lets_split/imgs/letssplitv2.svg b/keyboards/lets_split/imgs/letssplitv2.svg new file mode 100644 index 0000000000..f2cb9ce1e3 --- /dev/null +++ b/keyboards/lets_split/imgs/letssplitv2.svg @@ -0,0 +1,5817 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> + +<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="541.41699pt" + height="541.41602pt" + viewBox="0 0 541.417 541.416" + xml:space="preserve" + id="svg2242" + sodipodi:version="0.32" + inkscape:version="0.91 r13725" + sodipodi:docname="letssplitv2.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.1" + style="display:inline"><metadata + id="metadata2286"><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 /></cc:Work></rdf:RDF></metadata><defs + id="defs2284"><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective37556" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective16301" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective12409" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective9337" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective8562" /><inkscape:perspective + id="perspective3083" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective23419" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective27913" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective27913-5" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective23419-6" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective3083-3" /><inkscape:perspective + id="perspective8562-2" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective9337-7" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective12409-1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective16301-9" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective37556-9" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective5074" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective5377" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective5377-5" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective6033" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective2989" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective3039" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective51596" + inkscape:persp3d-origin="1417.3237 : 465.35417 : 1" + inkscape:vp_z="2834.6475 : 698.03125 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 698.03125 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective51446" + inkscape:persp3d-origin="270.70999 : 180.47333 : 1" + inkscape:vp_z="541.41998 : 270.70999 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.70999 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective37556-1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective16301-3" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective12409-3" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective9337-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective8562-08" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective3083-9" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective23419-4" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective27913-9" /><inkscape:perspective + id="perspective27913-5-1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective23419-6-7" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective3083-3-75" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective8562-2-1" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective9337-7-1" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective12409-1-4" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective16301-9-00" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective37556-9-7" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 698.03125 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1396.0651 : 698.03125 : 1" + inkscape:persp3d-origin="698.03253 : 465.35417 : 1" + id="perspective46224" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.70999 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41998 : 270.70999 : 1" + inkscape:persp3d-origin="270.70999 : 180.47333 : 1" + id="perspective56159" /><inkscape:perspective + id="perspective37556-9-4" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective16301-9-0" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective12409-1-3" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective9337-7-4" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective8562-2-3" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective3083-3-7" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective23419-6-5" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective27913-5-6" /><inkscape:perspective + id="perspective27913-0" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective23419-8" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective3083-7" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective8562-6" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective9337-5" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective12409-0" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective16301-0" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective37556-7" /><inkscape:perspective + id="perspective37556-9-49" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective16301-9-2" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective12409-1-9" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective9337-7-40" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective8562-2-0" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective3083-3-6" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective23419-6-3" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective27913-5-8" /><inkscape:perspective + id="perspective27913-3" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective23419-0" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 270.7085 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + id="perspective3083-30" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 338.38501 : 1" + sodipodi:type="inkscape:persp3d" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective8562-0" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective9337-1" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 270.7085 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="541.41699 : 270.7085 : 1" + inkscape:persp3d-origin="270.7085 : 180.47233 : 1" + id="perspective12409-00" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective16301-7" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 338.38501 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="676.77124 : 338.38501 : 1" + inkscape:persp3d-origin="338.38562 : 225.59001 : 1" + id="perspective37556-3" /><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3083-79" /><marker + orient="auto" + id="DistanceX" + style="overflow:visible" + refX="0.0" + refY="0.0"><path + id="path9" + d="M 3,-3 L -3,3 M 0,-5 L 0,5" + style="stroke:#000000; stroke-width:0.5" /></marker><pattern + id="Hatch" + x="0" + y="0" + patternUnits="userSpaceOnUse" + width="8" + height="8"><path + id="path12" + d="M8 4 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /><path + id="path14" + d="M6 2 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /><path + id="path16" + d="M4 0 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /></pattern><symbol + id="*Model_Space" /><symbol + id="*Paper_Space" /><symbol + id="*Paper_Space0" /><marker + orient="auto" + id="DistanceX-8" + style="overflow:visible" + refX="0.0" + refY="0.0"><path + id="path9-7" + d="M 3,-3 L -3,3 M 0,-5 L 0,5" + style="stroke:#000000; stroke-width:0.5" /></marker><pattern + id="Hatch-9" + x="0" + y="0" + patternUnits="userSpaceOnUse" + width="8" + height="8"><path + id="path12-5" + d="M8 4 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /><path + id="path14-5" + d="M6 2 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /><path + id="path16-2" + d="M4 0 l-4,4" + stroke-width="0.25" + stroke="#000000" + linecap="square" /></pattern><symbol + id="*Model_Space-0" /><symbol + id="*Paper_Space-5" /><symbol + id="*Paper_Space0-0" /></defs><sodipodi:namedview + inkscape:window-height="1019" + inkscape:window-width="1920" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + guidetolerance="10.0" + gridtolerance="10.0" + objecttolerance="10.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + inkscape:zoom="0.66928853" + inkscape:cx="198.17365" + inkscape:cy="416.82194" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="g21-5" + showgrid="false" + inkscape:window-maximized="1" + inkscape:document-units="mm" + units="mm" /><g + inkscape:groupmode="layer" + id="layer7" + inkscape:label="Design Template" + style="display:inline" + sodipodi:insensitive="true"><g + id="layer7-8" + inkscape:label="Design Template" + transform="translate(0.7799525,0.1277278)" /><g + id="layer6" + inkscape:label="Design Template" + transform="translate(0.5338379,0.419927)" /><g + id="Layer_x0020_1-6" + style="fill:#f6921e;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4" + transform="translate(681.42836,-160.06815)"><g + id="g4698-5" + transform="translate(-46.145191,-43.270487)" /></g><rect + id="rect21823" + height="541.41736" + width="541.41736" + x="0.89512694" + y="0.57997072" + style="fill:#f6921e" /><rect + id="rect21825" + height="513.0722" + width="513.07129" + y="14.753002" + x="15.068135" + style="fill:#ffffff" /><g + id="layer5" + inkscape:label="Your Design" + transform="translate(681.42836,-160.06815)" /><g + id="layer9-1" + inkscape:label="Your Design" + transform="translate(0.7799525,0.1277278)" /><g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.19999981px;line-height:164.99999762%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" + id="text4741"><path + d="m 570.64175,344.07065 1.80469,0 0,-6.22891 -1.96329,0.39375 0,-1.00625 1.95235,-0.39375 1.10469,0 0,7.23516 1.80468,0 0,0.92969 -4.70312,0 0,-0.92969" + id="path3154" + inkscape:connector-curvature="0" /><path + d="m 577.28081,336.5019 0.875,0 c 0.54687,0.86042 0.95521,1.70261 1.225,2.52656 0.27343,0.82396 0.41015,1.64245 0.41016,2.45547 -10e-6,0.81667 -0.13673,1.6388 -0.41016,2.46641 -0.26979,0.8276 -0.67813,1.66979 -1.225,2.52656 l -0.875,0 c 0.48489,-0.8349 0.84583,-1.66432 1.08281,-2.48828 0.24063,-0.82761 0.36094,-1.6625 0.36094,-2.50469 0,-0.84218 -0.12031,-1.67343 -0.36094,-2.49375 -0.23698,-0.82031 -0.59792,-1.64973 -1.08281,-2.48828" + id="path3156" + inkscape:connector-curvature="0" /><path + d="m 586.52847,337.7433 0,6.34922 1.33437,0 c 1.12656,0 1.95052,-0.2552 2.47188,-0.76562 0.52499,-0.51042 0.78749,-1.31614 0.7875,-2.41719 -10e-6,-1.09374 -0.26251,-1.894 -0.7875,-2.40078 -0.52136,-0.51041 -1.34532,-0.76562 -2.47188,-0.76563 l -1.33437,0 m -1.10469,-0.90781 2.26953,0 c 1.58229,1e-5 2.74348,0.32996 3.48359,0.98985 0.7401,0.65625 1.11015,1.68438 1.11016,3.08437 -10e-6,1.4073 -0.37188,2.44089 -1.11562,3.10078 -0.74376,0.6599 -1.90313,0.98985 -3.47813,0.98985 l -2.26953,0 0,-8.16485" + id="path3158" + inkscape:connector-curvature="0" /><path + d="m 599.23784,341.68627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37551,0.36094 0.89687,0.54141 1.56406,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,10e-6 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72186,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3160" + inkscape:connector-curvature="0" /><path + d="m 600.8894,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + id="path3162" + inkscape:connector-curvature="0" /><path + d="m 609.23472,341.68627 0,0.49219 -4.62657,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.5414 0.38646,1e-5 0.76016,-0.0474 1.1211,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85313,-2.30781 0,-1.0026 0.2698,-1.79739 0.80938,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19218,-0.49219 -0.56147,10e-6 -1.01173,0.1586 -1.35079,0.47579 -0.33541,0.31719 -0.52864,0.7638 -0.57968,1.33984 l 3.5875,-0.005" + id="path3164" + inkscape:connector-curvature="0" /><path + d="m 611.88159,337.13627 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82031 0.20235,0.9625 0.13853,0.14219 0.41744,0.21328 0.83671,0.21328 l 1.0336,0 0,0.84219 -1.0336,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43204 -0.29531,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3166" + inkscape:connector-curvature="0" /><path + d="m 620.52222,341.68627 0,0.49219 -4.62657,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.5414 0.38646,1e-5 0.76015,-0.0474 1.1211,-0.14218 0.36457,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54322,-0.59062 1.27421,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48124,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52864,0.7638 -0.57968,1.33984 l 3.5875,-0.005" + id="path3168" + inkscape:connector-curvature="0" /><path + d="m 626.73471,337.13627 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82031 0.20235,0.9625 0.13854,0.14219 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60782,-0.43204 -0.29531,-0.29166 -0.44297,-0.82031 -0.44296,-1.58593 l 0,-3.325 -0.73829,0 0,-0.78203 0.73829,0 0,-1.73907 1.01171,0" + id="path3170" + inkscape:connector-curvature="0" /><path + d="m 635.22769,341.30346 0,3.69688 -1.00625,0 0,-3.66407 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33907,-1.30156 -0.22604,-0.28801 -0.56511,-0.43203 -1.01718,-0.43203 -0.54324,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47032,0.81849 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-8.50938 1.01172,0 0,3.33594 c 0.24062,-0.36823 0.52317,-0.64349 0.84765,-0.82578 0.32812,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70365,10e-6 1.23594,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3172" + inkscape:connector-curvature="0" /><path + d="m 642.48472,341.68627 0,0.49219 -4.62657,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.5414 0.38646,1e-5 0.76016,-0.0474 1.1211,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85313,-2.30781 0,-1.0026 0.2698,-1.79739 0.80938,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19218,-0.49219 -0.56147,10e-6 -1.01173,0.1586 -1.35079,0.47579 -0.33541,0.31719 -0.52864,0.7638 -0.57968,1.33984 l 3.5875,-0.005" + id="path3174" + inkscape:connector-curvature="0" /><path + d="m 652.94097,341.68627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89688,0.54141 1.56407,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47474,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3176" + inkscape:connector-curvature="0" /><path + d="m 659.49799,338.87534 -2.21484,2.98046 2.32969,3.14454 -1.18672,0 -1.78281,-2.40625 -1.78282,2.40625 -1.18671,0 2.3789,-3.20469 -2.17656,-2.92031 1.18672,0 1.62422,2.18203 1.62422,-2.18203 1.18671,0" + id="path3178" + inkscape:connector-curvature="0" /><path + d="m 663.82925,341.92143 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31355,0.18594 -0.47032,0.50312 -0.47032,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00443,-0.19687 1.33985,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68907,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06718,-0.525 l 1.41094,0 0,-0.0984 c 0,-0.46301 -0.15313,-0.82031 -0.45937,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38282 -0.35,10e-6 -0.69089,0.0419 -1.02266,0.12579 -0.33177,0.0839 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31719 0.34635,-0.0729 0.68359,-0.10936 1.01172,-0.10937 0.88593,1e-5 1.54765,0.22969 1.98515,0.68906 0.4375,0.45938 0.65625,1.15574 0.65625,2.08906" + id="path3180" + inkscape:connector-curvature="0" /><path + d="m 672.68315,340.05112 c 0.25156,-0.45208 0.55234,-0.78567 0.90234,-1.00078 0.35,-0.2151 0.76198,-0.32265 1.23594,-0.32266 0.63801,10e-6 1.1302,0.22422 1.47656,0.67266 0.34635,0.44479 0.51953,1.07917 0.51954,1.90312 l 0,3.69688 -1.01172,0 0,-3.66407 c -10e-6,-0.58697 -0.10392,-1.02265 -0.31172,-1.30703 -0.20782,-0.28437 -0.52501,-0.42656 -0.95156,-0.42656 -0.52137,0 -0.93334,0.17318 -1.23594,0.51953 -0.30261,0.34636 -0.45391,0.81849 -0.45391,1.41641 l 0,3.46172 -1.01172,0 0,-3.66407 c 0,-0.59062 -0.10391,-1.02629 -0.31172,-1.30703 -0.20781,-0.28437 -0.52865,-0.42656 -0.9625,-0.42656 -0.51406,0 -0.92239,0.175 -1.225,0.525 -0.3026,0.34636 -0.4539,0.81667 -0.4539,1.41094 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.22968,-0.37552 0.50494,-0.6526 0.82578,-0.83125 0.32083,-0.17864 0.70182,-0.26796 1.14297,-0.26797 0.44479,10e-6 0.82213,0.11303 1.13203,0.33906 0.31354,0.22605 0.54505,0.55417 0.69453,0.98438" + id="path3182" + inkscape:connector-curvature="0" /><path + d="m 679.80347,344.08159 0,3.24843 -1.01172,0 0,-8.45468 1.01172,0 0,0.92968 c 0.21145,-0.36457 0.4776,-0.63437 0.79843,-0.80937 0.32448,-0.17864 0.71094,-0.26796 1.15938,-0.26797 0.74374,10e-6 1.34713,0.29532 1.81015,0.88594 0.46666,0.59063 0.7,1.36719 0.7,2.32968 0,0.96251 -0.23334,1.73907 -0.7,2.32969 -0.46302,0.59063 -1.06641,0.88594 -1.81015,0.88594 -0.44844,0 -0.8349,-0.0875 -1.15938,-0.2625 -0.32083,-0.17865 -0.58698,-0.45026 -0.79843,-0.81484 m 3.42343,-2.13829 c 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30261,-0.42291 -0.72006,-0.63437 -1.25235,-0.63437 -0.53229,0 -0.95156,0.21146 -1.25781,0.63437 -0.3026,0.41928 -0.45391,0.99896 -0.4539,1.73906 -10e-6,0.74011 0.1513,1.32162 0.4539,1.74454 0.30625,0.41927 0.72552,0.6289 1.25781,0.6289 0.53229,0 0.94974,-0.20963 1.25235,-0.6289 0.30624,-0.42292 0.45937,-1.00443 0.45937,-1.74454" + id="path3184" + inkscape:connector-curvature="0" /><path + d="m 685.9394,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + id="path3186" + inkscape:connector-curvature="0" /><path + d="m 694.28471,341.68627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42657 l 0,0.95157 c -0.36095,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,10e-6 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3188" + inkscape:connector-curvature="0" /><path + d="m 703.89879,341.9433 c -10e-6,-0.7401 -0.15313,-1.31978 -0.45938,-1.73906 -0.30261,-0.42291 -0.72006,-0.63437 -1.25234,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25782,0.63437 -0.3026,0.41928 -0.4539,0.99896 -0.4539,1.73906 0,0.74011 0.1513,1.32162 0.4539,1.74454 0.30625,0.41927 0.72552,0.6289 1.25782,0.6289 0.53228,0 0.94973,-0.20963 1.25234,-0.6289 0.30625,-0.42292 0.45937,-1.00443 0.45938,-1.74454 m -3.42344,-2.13828 c 0.21145,-0.36457 0.4776,-0.63437 0.79844,-0.80937 0.32447,-0.17864 0.71093,-0.26796 1.15937,-0.26797 0.74375,10e-6 1.34713,0.29532 1.81016,0.88594 0.46666,0.59063 0.69999,1.36719 0.7,2.32968 -10e-6,0.96251 -0.23334,1.73907 -0.7,2.32969 -0.46303,0.59063 -1.06641,0.88594 -1.81016,0.88594 -0.44844,0 -0.8349,-0.0875 -1.15937,-0.2625 -0.32084,-0.17865 -0.58699,-0.45026 -0.79844,-0.81484 l 0,0.91875 -1.01172,0 0,-8.50938 1.01172,0 0,3.31406" + id="path3190" + inkscape:connector-curvature="0" /><path + d="m 706.61129,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3192" + inkscape:connector-curvature="0" /><path + d="m 713.26675,339.81596 c -0.11302,-0.0656 -0.23698,-0.11301 -0.37187,-0.14219 -0.13126,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56876,10e-6 -1.00626,0.18595 -1.3125,0.55782 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0838,0.007 0.17681,0.02 0.2789,0.0383 l 0.005,1.03359" + id="path3194" + inkscape:connector-curvature="0" /><path + d="m 718.17769,339.80502 0,-3.31406 1.00625,0 0,8.50938 -1.00625,0 0,-0.91875 c -0.21146,0.36458 -0.47943,0.63619 -0.80391,0.81484 -0.32084,0.175 -0.70729,0.2625 -1.15937,0.2625 -0.74011,0 -1.34349,-0.29531 -1.81016,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46667,-0.59062 1.07005,-0.88593 1.81016,-0.88594 0.45208,10e-6 0.83853,0.0893 1.15937,0.26797 0.32448,0.175 0.59245,0.4448 0.80391,0.80937 m -3.42891,2.13828 c 0,0.74011 0.1513,1.32162 0.45391,1.74454 0.30625,0.41927 0.72552,0.6289 1.25781,0.6289 0.53229,0 0.95156,-0.20963 1.25781,-0.6289 0.30625,-0.42292 0.45937,-1.00443 0.45938,-1.74454 -10e-6,-0.7401 -0.15313,-1.31978 -0.45938,-1.73906 -0.30625,-0.42291 -0.72552,-0.63437 -1.25781,-0.63437 -0.53229,0 -0.95156,0.21146 -1.25781,0.63437 -0.30261,0.41928 -0.45391,0.99896 -0.45391,1.73906" + id="path3196" + inkscape:connector-curvature="0" /><path + d="m 728.86362,339.80502 0,-3.31406 1.00625,0 0,8.50938 -1.00625,0 0,-0.91875 c -0.21147,0.36458 -0.47943,0.63619 -0.80391,0.81484 -0.32084,0.175 -0.70729,0.2625 -1.15937,0.2625 -0.74011,0 -1.3435,-0.29531 -1.81016,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46666,-0.59062 1.07005,-0.88593 1.81016,-0.88594 0.45208,10e-6 0.83853,0.0893 1.15937,0.26797 0.32448,0.175 0.59244,0.4448 0.80391,0.80937 m -3.42891,2.13828 c 0,0.74011 0.1513,1.32162 0.45391,1.74454 0.30624,0.41927 0.72551,0.6289 1.25781,0.6289 0.53229,0 0.95156,-0.20963 1.25781,-0.6289 0.30625,-0.42292 0.45937,-1.00443 0.45938,-1.74454 -10e-6,-0.7401 -0.15313,-1.31978 -0.45938,-1.73906 -0.30625,-0.42291 -0.72552,-0.63437 -1.25781,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25781,0.63437 -0.30261,0.41928 -0.45391,0.99896 -0.45391,1.73906" + id="path3198" + inkscape:connector-curvature="0" /><path + d="m 737.18159,341.68627 0,0.49219 -4.62657,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.5414 0.38646,1e-5 0.76015,-0.0474 1.1211,-0.14218 0.36457,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54323,-0.59062 1.27421,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48124,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52864,0.7638 -0.57968,1.33984 l 3.5875,-0.005" + id="path3200" + inkscape:connector-curvature="0" /><path + d="m 742.73784,339.0558 0,0.95157 c -0.28438,-0.14583 -0.5797,-0.25521 -0.88594,-0.32813 -0.30626,-0.0729 -0.62344,-0.10937 -0.95156,-0.10937 -0.49949,0 -0.87501,0.0766 -1.12657,0.22968 -0.24792,0.15313 -0.37187,0.38282 -0.37187,0.68907 0,0.23333 0.0893,0.41745 0.26797,0.55234 0.17864,0.13125 0.53775,0.25704 1.07734,0.37734 l 0.34453,0.0766 c 0.71458,0.15313 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.45391,0.66537 0.45391,1.16484 0,0.56875 -0.22605,1.01901 -0.67812,1.35078 -0.44845,0.33177 -1.06641,0.49766 -1.85391,0.49766 -0.32813,0 -0.67084,-0.0328 -1.02813,-0.0984 -0.35364,-0.062 -0.72734,-0.15677 -1.12109,-0.28437 l 0,-1.03907 c 0.37187,0.19323 0.73828,0.33907 1.09922,0.4375 0.36093,0.0948 0.71823,0.14219 1.07187,0.14219 0.47396,0 0.83854,-0.0802 1.09375,-0.24062 0.25521,-0.16406 0.38281,-0.39375 0.38282,-0.68907 -10e-6,-0.27343 -0.093,-0.48307 -0.27891,-0.6289 -0.18229,-0.14583 -0.58516,-0.2862 -1.20859,-0.4211 l -0.35,-0.082 c -0.62344,-0.13124 -1.0737,-0.33176 -1.35078,-0.60156 -0.27709,-0.27343 -0.41563,-0.64713 -0.41563,-1.12109 0,-0.57604 0.20417,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.4703 1.73906,-0.47031 0.37187,1e-5 0.72187,0.0273 1.05,0.082 0.32812,0.0547 0.63073,0.13673 0.90782,0.24609" + id="path3202" + inkscape:connector-curvature="0" /><path + d="m 744.67379,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3204" + inkscape:connector-curvature="0" /><path + d="m 751.8105,341.86674 c 0,-0.72916 -0.15131,-1.29426 -0.45391,-1.69531 -0.29896,-0.40104 -0.72005,-0.60156 -1.26328,-0.60156 -0.53958,0 -0.96068,0.20052 -1.26328,0.60156 -0.29896,0.40105 -0.44844,0.96615 -0.44844,1.69531 0,0.72553 0.14948,1.28881 0.44844,1.68985 0.3026,0.40104 0.7237,0.60156 1.26328,0.60156 0.54323,0 0.96432,-0.20052 1.26328,-0.60156 0.3026,-0.40104 0.45391,-0.96432 0.45391,-1.68985 m 1.00625,2.37344 c -10e-6,1.04271 -0.23152,1.81745 -0.69453,2.32422 -0.46303,0.51041 -1.17214,0.76562 -2.12734,0.76562 -0.35365,0 -0.68725,-0.0273 -1.00079,-0.082 -0.31354,-0.051 -0.61797,-0.13125 -0.91328,-0.24062 l 0,-0.97891 c 0.29531,0.16042 0.58698,0.27891 0.875,0.35547 0.28802,0.0766 0.58151,0.11484 0.88047,0.11484 0.65989,0 1.1539,-0.17318 1.48203,-0.51953 0.32812,-0.34271 0.49219,-0.86224 0.49219,-1.55859 l 0,-0.49766 c -0.20782,0.36094 -0.47396,0.63073 -0.79844,0.80938 -0.32448,0.17864 -0.71276,0.26797 -1.16484,0.26797 -0.75104,0 -1.35625,-0.2862 -1.81563,-0.8586 -0.45937,-0.57239 -0.68906,-1.33072 -0.68906,-2.275 0,-0.94791 0.22969,-1.70807 0.68906,-2.28047 0.45938,-0.57239 1.06459,-0.85858 1.81563,-0.85859 0.45208,10e-6 0.84036,0.0893 1.16484,0.26797 0.32448,0.17865 0.59062,0.44844 0.79844,0.80937 l 0,-0.92968 1.00625,0 0,5.36484" + id="path3206" + inkscape:connector-curvature="0" /><path + d="m 759.98081,341.30346 0,3.69688 -1.00625,0 0,-3.66407 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22605,-0.28801 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97161,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.81849 -0.47032,1.41641 l 0,3.46172 -1.01171,0 0,-6.125 1.01171,0 0,0.95156 c 0.24063,-0.36823 0.52318,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + id="path3208" + inkscape:connector-curvature="0" /><path + d="m 765.56441,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + id="path3210" + inkscape:connector-curvature="0" /><path + d="m 771.45425,341.92143 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31355,0.18594 -0.47032,0.50312 -0.47032,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00443,-0.19687 1.33985,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68907,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06718,-0.525 l 1.41094,0 0,-0.0984 c 0,-0.46301 -0.15313,-0.82031 -0.45937,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38282 -0.35,10e-6 -0.69089,0.0419 -1.02266,0.12579 -0.33177,0.0839 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31719 0.34635,-0.0729 0.68359,-0.10936 1.01172,-0.10937 0.88593,1e-5 1.54765,0.22969 1.98515,0.68906 0.4375,0.45938 0.65625,1.15574 0.65625,2.08906" + id="path3212" + inkscape:connector-curvature="0" /><path + d="m 778.08784,345.56909 c -0.28438,0.72916 -0.56146,1.20494 -0.83125,1.42734 -0.2698,0.22239 -0.63073,0.33359 -1.08281,0.33359 l -0.80391,0 0,-0.84218 0.59062,0 c 0.27709,-1e-5 0.49219,-0.0656 0.64532,-0.19688 0.15312,-0.13125 0.32265,-0.44115 0.50859,-0.92969 l 0.18047,-0.45937 -2.47734,-6.02656 1.0664,0 1.91406,4.79062 1.91407,-4.79062 1.0664,0 -2.69062,6.69375" + id="path3214" + inkscape:connector-curvature="0" /><path + d="m 787.40659,341.68627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37551,0.36094 0.89687,0.54141 1.56406,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42657 l 0,0.95157 c -0.36095,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,10e-6 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3216" + inkscape:connector-curvature="0" /><path + d="m 792.60737,339.81596 c -0.11302,-0.0656 -0.23698,-0.11301 -0.37187,-0.14219 -0.13126,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56876,10e-6 -1.00625,0.18595 -1.3125,0.55782 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0838,0.007 0.17682,0.02 0.2789,0.0383 l 0.005,1.03359" + id="path3218" + inkscape:connector-curvature="0" /><path + d="m 800.34018,336.49096 0,0.83672 -0.9625,0 c -0.36094,1e-5 -0.6125,0.0729 -0.75469,0.21875 -0.13854,0.14584 -0.20781,0.40834 -0.20781,0.7875 l 0,0.54141 1.65703,0 0,0.78203 -1.65703,0 0,5.34297 -1.01172,0 0,-5.34297 -0.9625,0 0,-0.78203 0.9625,0 0,-0.42657 c 0,-0.68176 0.15859,-1.17759 0.47578,-1.4875 0.31719,-0.31353 0.82031,-0.4703 1.50938,-0.47031 l 0.95156,0" + id="path3220" + inkscape:connector-curvature="0" /><path + d="m 804.72612,339.81596 c -0.11303,-0.0656 -0.23699,-0.11301 -0.37188,-0.14219 -0.13125,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56875,10e-6 -1.00625,0.18595 -1.3125,0.55782 -0.3026,0.36823 -0.45391,0.8987 -0.4539,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21145,-0.37187 0.48671,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75103,-0.27343 1.23593,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0838,0.007 0.17682,0.02 0.27891,0.0383 l 0.005,1.03359" + id="path3222" + inkscape:connector-curvature="0" /><path + d="m 807.93628,339.5808 c -0.53959,10e-6 -0.96615,0.21147 -1.27969,0.63438 -0.31354,0.41927 -0.47032,0.99532 -0.47031,1.72812 -10e-6,0.73282 0.15494,1.31068 0.46484,1.7336 0.31354,0.41927 0.74192,0.62891 1.28516,0.6289 0.53593,1e-5 0.96067,-0.21145 1.27421,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47032,-1.72813 -10e-6,-0.72551 -0.15678,-1.29973 -0.47032,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27421,-0.63985 m 0,-0.85312 c 0.87499,10e-6 1.56223,0.28438 2.06171,0.85312 0.49948,0.56876 0.74922,1.35626 0.74922,2.3625 0,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06171,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85311 2.06719,-0.85312" + id="path3224" + inkscape:connector-curvature="0" /><path + d="m 817.18941,340.05112 c 0.25155,-0.45208 0.55233,-0.78567 0.90234,-1.00078 0.34999,-0.2151 0.76197,-0.32265 1.23594,-0.32266 0.63801,10e-6 1.1302,0.22422 1.47656,0.67266 0.34635,0.44479 0.51952,1.07917 0.51953,1.90312 l 0,3.69688 -1.01172,0 0,-3.66407 c -10e-6,-0.58697 -0.10391,-1.02265 -0.31172,-1.30703 -0.20782,-0.28437 -0.525,-0.42656 -0.95156,-0.42656 -0.52136,0 -0.93334,0.17318 -1.23594,0.51953 -0.30261,0.34636 -0.45391,0.81849 -0.4539,1.41641 l 0,3.46172 -1.01172,0 0,-3.66407 c -10e-6,-0.59062 -0.10391,-1.02629 -0.31172,-1.30703 -0.20782,-0.28437 -0.52865,-0.42656 -0.9625,-0.42656 -0.51406,0 -0.9224,0.175 -1.225,0.525 -0.30261,0.34636 -0.45391,0.81667 -0.45391,1.41094 l 0,3.46172 -1.01171,0 0,-6.125 1.01171,0 0,0.95156 c 0.22969,-0.37552 0.50495,-0.6526 0.82579,-0.83125 0.32083,-0.17864 0.70182,-0.26796 1.14296,-0.26797 0.44479,10e-6 0.82214,0.11303 1.13204,0.33906 0.31353,0.22605 0.54504,0.55417 0.69453,0.98438" + id="path3226" + inkscape:connector-curvature="0" /><path + d="m 827.89722,337.13627 0,1.73907 2.07265,0 0,0.78203 -2.07265,0 0,3.325 c -10e-6,0.49948 0.0674,0.82031 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60781,-0.43204 -0.29532,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3228" + inkscape:connector-curvature="0" /><path + d="m 836.39019,341.30346 0,3.69688 -1.00625,0 0,-3.66407 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22605,-0.28801 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97162,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.81849 -0.47032,1.41641 l 0,3.46172 -1.01172,0 0,-8.50938 1.01172,0 0,3.33594 c 0.24063,-0.36823 0.52318,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70546,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + id="path3230" + inkscape:connector-curvature="0" /><path + d="m 838.40816,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3232" + inkscape:connector-curvature="0" /><path + d="m 845.41908,339.0558 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88594,-0.32813 -0.30625,-0.0729 -0.62344,-0.10937 -0.95156,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37188,0.68907 0,0.23333 0.0893,0.41745 0.26797,0.55234 0.17864,0.13125 0.53776,0.25704 1.07734,0.37734 l 0.34454,0.0766 c 0.71458,0.15313 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.4539,0.66537 0.4539,1.16484 0,0.56875 -0.22604,1.01901 -0.67812,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.85391,0.49766 -0.32812,0 -0.67083,-0.0328 -1.02812,-0.0984 -0.35365,-0.062 -0.72735,-0.15677 -1.1211,-0.28437 l 0,-1.03907 c 0.37188,0.19323 0.73828,0.33907 1.09922,0.4375 0.36094,0.0948 0.71823,0.14219 1.07188,0.14219 0.47395,0 0.83854,-0.0802 1.09375,-0.24062 0.2552,-0.16406 0.38281,-0.39375 0.38281,-0.68907 0,-0.27343 -0.093,-0.48307 -0.27891,-0.6289 -0.18229,-0.14583 -0.58516,-0.2862 -1.20859,-0.4211 l -0.35,-0.082 c -0.62344,-0.13124 -1.0737,-0.33176 -1.35078,-0.60156 -0.27708,-0.27343 -0.41563,-0.64713 -0.41563,-1.12109 0,-0.57604 0.20417,-1.02083 0.6125,-1.33438 0.40834,-0.31353 0.98802,-0.4703 1.73907,-0.47031 0.37187,1e-5 0.72187,0.0273 1.05,0.082 0.32812,0.0547 0.63072,0.13673 0.90781,0.24609" + id="path3234" + inkscape:connector-curvature="0" /><path + d="m 854.02142,336.49096 0,0.83672 -0.9625,0 c -0.36094,1e-5 -0.6125,0.0729 -0.75468,0.21875 -0.13855,0.14584 -0.20782,0.40834 -0.20782,0.7875 l 0,0.54141 1.65703,0 0,0.78203 -1.65703,0 0,5.34297 -1.01172,0 0,-5.34297 -0.9625,0 0,-0.78203 0.9625,0 0,-0.42657 c 0,-0.68176 0.1586,-1.17759 0.47579,-1.4875 0.31718,-0.31353 0.82031,-0.4703 1.50937,-0.47031 l 0.95156,0" + id="path3236" + inkscape:connector-curvature="0" /><path + d="m 854.85814,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3238" + inkscape:connector-curvature="0" /><path + d="m 857.9644,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + id="path3240" + inkscape:connector-curvature="0" /><path + d="m 866.30973,341.68627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89688,0.54141 1.56407,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3242" + inkscape:connector-curvature="0" /><path + d="m 872.52222,337.13627 0,1.73907 2.07265,0 0,0.78203 -2.07265,0 0,3.325 c -10e-6,0.49948 0.0674,0.82031 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60781,-0.43204 -0.29532,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3244" + inkscape:connector-curvature="0" /><path + d="m 878.29722,339.5808 c -0.53958,10e-6 -0.96615,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99532 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.62891 1.28515,0.6289 0.53594,1e-5 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,10e-6 1.56224,0.28438 2.06172,0.85312 0.49947,0.56876 0.74921,1.35626 0.74922,2.3625 -10e-6,1.00261 -0.24975,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74376,-1.35989 -0.74375,-2.3625 -1e-5,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18853,-0.85311 2.06718,-0.85312" + id="path3246" + inkscape:connector-curvature="0" /><path + d="m 889.11985,341.92143 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31354,0.18594 -0.47031,0.50312 -0.47031,0.95156 0,0.35729 0.11666,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33984,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.5086,-1.58047 l 0,-0.22422 -1.00079,0 m 2.00704,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.2297,0.37187 -0.51589,0.64713 -0.8586,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12656,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55234,-0.82578 -0.55234,-1.41641 0,-0.68906 0.22969,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06719,-0.525 l 1.41094,0 0,-0.0984 c -10e-6,-0.46301 -0.15313,-0.82031 -0.45938,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38282 -0.35,10e-6 -0.69088,0.0419 -1.02265,0.12579 -0.33178,0.0839 -0.65079,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36822,-0.14218 0.72551,-0.24791 1.07187,-0.31719 0.34635,-0.0729 0.68359,-0.10936 1.01172,-0.10937 0.88593,1e-5 1.54765,0.22969 1.98516,0.68906 0.43749,0.45938 0.65624,1.15574 0.65625,2.08906" + id="path3248" + inkscape:connector-curvature="0" /><path + d="m 892.48316,338.87534 1.06641,0 1.91406,5.14062 1.91406,-5.14062 1.06641,0 -2.29688,6.125 -1.36718,0 -2.29688,-6.125" + id="path3250" + inkscape:connector-curvature="0" /><path + d="m 902.20659,339.5808 c -0.53959,10e-6 -0.96615,0.21147 -1.27969,0.63438 -0.31355,0.41927 -0.47032,0.99532 -0.47031,1.72812 -10e-6,0.73282 0.15494,1.31068 0.46484,1.7336 0.31354,0.41927 0.74192,0.62891 1.28516,0.6289 0.53593,1e-5 0.96067,-0.21145 1.27421,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47032,-1.72813 -10e-6,-0.72551 -0.15678,-1.29973 -0.47032,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27421,-0.63985 m 0,-0.85312 c 0.87499,10e-6 1.56223,0.28438 2.06171,0.85312 0.49948,0.56876 0.74922,1.35626 0.74922,2.3625 0,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06171,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85311 2.06719,-0.85312" + id="path3252" + inkscape:connector-curvature="0" /><path + d="m 906.68001,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3254" + inkscape:connector-curvature="0" /><path + d="m 913.81674,339.80502 0,-3.31406 1.00625,0 0,8.50938 -1.00625,0 0,-0.91875 c -0.21146,0.36458 -0.47943,0.63619 -0.8039,0.81484 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.74011,0 -1.34349,-0.29531 -1.81016,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46667,-0.59062 1.07005,-0.88593 1.81016,-0.88594 0.45208,10e-6 0.83854,0.0893 1.15938,0.26797 0.32447,0.175 0.59244,0.4448 0.8039,0.80937 m -3.4289,2.13828 c -10e-6,0.74011 0.1513,1.32162 0.4539,1.74454 0.30625,0.41927 0.72552,0.6289 1.25781,0.6289 0.53229,0 0.95156,-0.20963 1.25782,-0.6289 0.30624,-0.42292 0.45937,-1.00443 0.45937,-1.74454 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30626,-0.42291 -0.72553,-0.63437 -1.25782,-0.63437 -0.53229,0 -0.95156,0.21146 -1.25781,0.63437 -0.3026,0.41928 -0.45391,0.99896 -0.4539,1.73906" + id="path3256" + inkscape:connector-curvature="0" /><path + d="m 921.45657,337.13627 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0674,0.82031 0.20235,0.9625 0.13854,0.14219 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.31251,-0.14401 -1.60782,-0.43204 -0.29531,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3258" + inkscape:connector-curvature="0" /><path + d="m 929.94955,341.30346 0,3.69688 -1.00625,0 0,-3.66407 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33906,-1.30156 -0.22605,-0.28801 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-8.50938 1.01172,0 0,3.33594 c 0.24062,-0.36823 0.52317,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70546,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59687,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3260" + inkscape:connector-curvature="0" /><path + d="m 937.20658,341.68627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89688,0.54141 1.56407,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47474,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,10e-6 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3262" + inkscape:connector-curvature="0" /><path + d="m 946.8316,339.11049 0,0.94063 c -0.28438,-0.15677 -0.57058,-0.27344 -0.8586,-0.35 -0.28438,-0.0802 -0.5724,-0.12031 -0.86406,-0.12032 -0.65261,10e-6 -1.15938,0.20782 -1.52031,0.62344 -0.36094,0.41199 -0.54141,0.99167 -0.54141,1.73906 0,0.7474 0.18047,1.32891 0.54141,1.74454 0.36093,0.41198 0.8677,0.61797 1.52031,0.61796 0.29166,1e-5 0.57968,-0.0383 0.86406,-0.11484 0.28802,-0.0802 0.57422,-0.1987 0.8586,-0.35547 l 0,0.92969 c -0.28074,0.13125 -0.5724,0.22969 -0.875,0.29531 -0.29896,0.0656 -0.61797,0.0984 -0.95703,0.0984 -0.9224,0 -1.65521,-0.28984 -2.19844,-0.86953 -0.54323,-0.57969 -0.81485,-1.36172 -0.81484,-2.3461 -1e-5,-0.99895 0.27343,-1.78463 0.82031,-2.35703 0.55052,-0.57239 1.30338,-0.85858 2.25859,-0.85859 0.30989,10e-6 0.6125,0.0328 0.90781,0.0984 0.29531,0.062 0.58151,0.15677 0.8586,0.28437" + id="path3264" + inkscape:connector-curvature="0" /><path + d="m 950.96595,339.5808 c -0.53958,10e-6 -0.96614,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99532 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.62891 1.28515,0.6289 0.53594,1e-5 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47032,-1.72813 -1e-5,-0.72551 -0.15678,-1.29973 -0.47032,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,10e-6 1.56224,0.28438 2.06172,0.85312 0.49948,0.56876 0.74922,1.35626 0.74922,2.3625 0,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87864,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85311 2.06718,-0.85312" + id="path3266" + inkscape:connector-curvature="0" /><path + d="m 959.3441,339.0558 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88594,-0.32813 -0.30625,-0.0729 -0.62344,-0.10937 -0.95156,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37188,0.68907 0,0.23333 0.0893,0.41745 0.26797,0.55234 0.17864,0.13125 0.53776,0.25704 1.07734,0.37734 l 0.34453,0.0766 c 0.71458,0.15313 1.22135,0.37005 1.52032,0.65078 0.3026,0.27708 0.4539,0.66537 0.4539,1.16484 0,0.56875 -0.22604,1.01901 -0.67812,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.85391,0.49766 -0.32813,0 -0.67083,-0.0328 -1.02812,-0.0984 -0.35365,-0.062 -0.72735,-0.15677 -1.1211,-0.28437 l 0,-1.03907 c 0.37188,0.19323 0.73828,0.33907 1.09922,0.4375 0.36094,0.0948 0.71823,0.14219 1.07188,0.14219 0.47395,0 0.83853,-0.0802 1.09375,-0.24062 0.2552,-0.16406 0.3828,-0.39375 0.38281,-0.68907 -1e-5,-0.27343 -0.093,-0.48307 -0.27891,-0.6289 -0.18229,-0.14583 -0.58516,-0.2862 -1.20859,-0.4211 l -0.35,-0.082 c -0.62344,-0.13124 -1.0737,-0.33176 -1.35078,-0.60156 -0.27709,-0.27343 -0.41563,-0.64713 -0.41563,-1.12109 0,-0.57604 0.20417,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.4703 1.73907,-0.47031 0.37187,1e-5 0.72187,0.0273 1.05,0.082 0.32812,0.0547 0.63072,0.13673 0.90781,0.24609" + id="path3268" + inkscape:connector-curvature="0" /><path + d="m 962.27533,337.13627 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0674,0.82031 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.0336,0 0,0.84219 -1.0336,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43204 -0.29531,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3270" + inkscape:connector-curvature="0" /><path + d="m 972.34329,336.49096 0,0.83672 -0.9625,0 c -0.36094,1e-5 -0.6125,0.0729 -0.75469,0.21875 -0.13854,0.14584 -0.20781,0.40834 -0.20781,0.7875 l 0,0.54141 1.65703,0 0,0.78203 -1.65703,0 0,5.34297 -1.01172,0 0,-5.34297 -0.9625,0 0,-0.78203 0.9625,0 0,-0.42657 c 0,-0.68176 0.1586,-1.17759 0.47578,-1.4875 0.31719,-0.31353 0.82031,-0.4703 1.50938,-0.47031 l 0.95156,0" + id="path3272" + inkscape:connector-curvature="0" /><path + d="m 975.55345,339.5808 c -0.53959,10e-6 -0.96615,0.21147 -1.27969,0.63438 -0.31354,0.41927 -0.47031,0.99532 -0.47031,1.72812 0,0.73282 0.15494,1.31068 0.46484,1.7336 0.31354,0.41927 0.74193,0.62891 1.28516,0.6289 0.53593,1e-5 0.96067,-0.21145 1.27422,-0.63437 0.31353,-0.42292 0.4703,-0.99896 0.47031,-1.72813 -1e-5,-0.72551 -0.15678,-1.29973 -0.47031,-1.72265 -0.31355,-0.42656 -0.73829,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.87499,10e-6 1.56223,0.28438 2.06172,0.85312 0.49947,0.56876 0.74921,1.35626 0.74922,2.3625 -10e-6,1.00261 -0.24975,1.79011 -0.74922,2.3625 -0.49949,0.56875 -1.18673,0.85313 -2.06172,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49583,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24792,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85311 2.06719,-0.85312" + id="path3274" + inkscape:connector-curvature="0" /><path + d="m 983.57612,339.81596 c -0.11302,-0.0656 -0.23698,-0.11301 -0.37187,-0.14219 -0.13126,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56876,10e-6 -1.00625,0.18595 -1.3125,0.55782 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0838,0.007 0.17682,0.02 0.2789,0.0383 l 0.005,1.03359" + id="path3276" + inkscape:connector-curvature="0" /><path + d="m 988.20815,338.87534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3278" + inkscape:connector-curvature="0" /><path + d="m 992.30972,337.13627 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82031 0.20235,0.9625 0.13854,0.14219 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.31251,-0.14401 -1.60782,-0.43204 -0.29531,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + id="path3280" + inkscape:connector-curvature="0" /><path + d="m 995.85345,343.61127 1.1539,0 0,1.38907 -1.1539,0 0,-1.38907" + id="path3282" + inkscape:connector-curvature="0" /><path + d="m 571.4019,362.55065 3.85547,0 0,0.92969 -5.18437,0 0,-0.92969 c 0.41927,-0.43386 0.98984,-1.01536 1.71172,-1.74453 0.72551,-0.73281 1.18124,-1.20495 1.36718,-1.41641 0.35365,-0.39739 0.59974,-0.73281 0.73829,-1.00625 0.14218,-0.27708 0.21327,-0.54869 0.21328,-0.81484 -10e-6,-0.43385 -0.15313,-0.7875 -0.45938,-1.06094 -0.30261,-0.27343 -0.69818,-0.41015 -1.18672,-0.41016 -0.34635,1e-5 -0.71276,0.0602 -1.09922,0.18047 -0.38281,0.12032 -0.79297,0.30261 -1.23046,0.54688 l 0,-1.11563 c 0.44479,-0.17864 0.86041,-0.31353 1.24687,-0.40469 0.38646,-0.0911 0.7401,-0.13671 1.06094,-0.13671 0.84583,0 1.52031,0.21146 2.02344,0.63437 0.50311,0.42292 0.75468,0.98803 0.75468,1.69531 0,0.33543 -0.0638,0.65444 -0.1914,0.95703 -0.12397,0.29897 -0.35183,0.65261 -0.6836,1.06094 -0.0911,0.10573 -0.38099,0.41198 -0.86953,0.91875 -0.48854,0.50313 -1.17761,1.2086 -2.06719,2.11641" + id="path3284" + inkscape:connector-curvature="0" /><path + d="m 577.28081,354.9819 0.875,0 c 0.54687,0.86042 0.95521,1.70261 1.225,2.52656 0.27343,0.82396 0.41015,1.64245 0.41016,2.45547 -10e-6,0.81667 -0.13673,1.6388 -0.41016,2.46641 -0.26979,0.8276 -0.67813,1.66979 -1.225,2.52656 l -0.875,0 c 0.48489,-0.8349 0.84583,-1.66433 1.08281,-2.48828 0.24063,-0.82761 0.36094,-1.6625 0.36094,-2.50469 0,-0.84218 -0.12031,-1.67343 -0.36094,-2.49375 -0.23698,-0.82031 -0.59792,-1.64973 -1.08281,-2.48828" + id="path3286" + inkscape:connector-curvature="0" /><path + d="m 590.31831,355.58346 0,1.07734 c -0.41928,-0.20051 -0.81485,-0.34999 -1.18672,-0.44843 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14766 -0.60157,1e-5 -1.06641,0.11667 -1.39453,0.35 -0.32448,0.23334 -0.48672,0.56511 -0.48672,0.99531 0,0.36095 0.10755,0.63438 0.32265,0.82032 0.21875,0.18229 0.63073,0.32995 1.23594,0.44296 l 0.66719,0.13672 c 0.82395,0.15678 1.43098,0.43386 1.82109,0.83125 0.39375,0.39376 0.59062,0.9224 0.59063,1.58594 -1e-5,0.79115 -0.26615,1.39089 -0.79844,1.79922 -0.52865,0.40833 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0437 -1.23593,-0.13125 -0.43386,-0.0875 -0.88412,-0.21693 -1.35079,-0.38828 l 0,-1.1375 c 0.44844,0.25156 0.88776,0.44114 1.31797,0.56875 0.43021,0.1276 0.85312,0.1914 1.26875,0.1914 0.63073,0 1.11745,-0.12395 1.46016,-0.37187 0.3427,-0.24792 0.51406,-0.60156 0.51406,-1.06094 0,-0.40104 -0.12396,-0.71458 -0.37187,-0.94062 -0.24428,-0.22604 -0.64714,-0.39557 -1.2086,-0.5086 l -0.67265,-0.13125 c -0.82396,-0.16406 -1.42006,-0.42109 -1.78828,-0.77109 -0.36823,-0.35 -0.55235,-0.83671 -0.55235,-1.46016 0,-0.72187 0.25339,-1.29061 0.76016,-1.70625 0.51041,-0.41561 1.21223,-0.62343 2.10547,-0.62343 0.3828,0 0.77291,0.0346 1.17031,0.1039 0.39739,0.0693 0.8039,0.17319 1.21953,0.31172" + id="path3288" + inkscape:connector-curvature="0" /><path + d="m 595.273,360.40143 c -0.81303,0 -1.37631,0.093 -1.68985,0.27891 -0.31354,0.18594 -0.47031,0.50312 -0.47031,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33985,-0.59062 0.33905,-0.3974 0.50858,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34272,0.175 -0.76199,0.2625 -1.25782,0.2625 -0.62708,0 -1.12656,-0.175 -1.49843,-0.525 -0.36823,-0.35365 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06719,-0.525 l 1.41094,0 0,-0.0984 c -10e-6,-0.46301 -0.15313,-0.82031 -0.45938,-1.07187 -0.3026,-0.25521 -0.72917,-0.38281 -1.27968,-0.38282 -0.35001,1e-5 -0.69089,0.0419 -1.02266,0.12579 -0.33177,0.0838 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07187,-0.31719 0.34636,-0.0729 0.68359,-0.10936 1.01172,-0.10937 0.88594,1e-5 1.54765,0.22969 1.98516,0.68906 0.43749,0.45938 0.65624,1.15574 0.65625,2.08906" + id="path3290" + inkscape:connector-curvature="0" /><path + d="m 598.63628,357.35534 1.0664,0 1.91407,5.14062 1.91406,-5.14062 1.06641,0 -2.29688,6.125 -1.36719,0 -2.29687,-6.125" + id="path3292" + inkscape:connector-curvature="0" /><path + d="m 611.22534,360.16627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37551,0.36094 0.89687,0.5414 1.56406,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,1e-5 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72186,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3294" + inkscape:connector-curvature="0" /><path + d="m 618.99097,364.04909 c -0.28438,0.72916 -0.56146,1.20494 -0.83125,1.42734 -0.2698,0.22239 -0.63073,0.33359 -1.08281,0.33359 l -0.80391,0 0,-0.84218 0.59062,0 c 0.27709,-1e-5 0.49219,-0.0656 0.64532,-0.19688 0.15312,-0.13125 0.32265,-0.44115 0.50859,-0.92969 l 0.18047,-0.45937 -2.47734,-6.02656 1.0664,0 1.91406,4.79062 1.91407,-4.79062 1.0664,0 -2.69062,6.69375" + id="path3296" + inkscape:connector-curvature="0" /><path + d="m 625.44409,358.0608 c -0.53958,1e-5 -0.96615,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99532 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.6289 1.28515,0.6289 0.53594,0 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,1e-5 1.56224,0.28438 2.06172,0.85312 0.49947,0.56876 0.74921,1.35626 0.74922,2.3625 -1e-5,1.00261 -0.24975,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74376,-1.35989 -0.74375,-2.3625 -10e-6,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18853,-0.85311 2.06718,-0.85312" + id="path3298" + inkscape:connector-curvature="0" /><path + d="m 629.81362,361.06315 0,-3.70781 1.00625,0 0,3.66953 c 0,0.57969 0.11302,1.01536 0.33907,1.30703 0.22603,0.28802 0.5651,0.43203 1.01718,0.43203 0.54323,0 0.97161,-0.17318 1.28516,-0.51953 0.31718,-0.34635 0.47578,-0.81849 0.47578,-1.41641 l 0,-3.47265 1.00625,0 0,6.125 -1.00625,0 0,-0.94063 c -0.24428,0.37188 -0.52865,0.64896 -0.85312,0.83125 -0.32084,0.17865 -0.69454,0.26797 -1.1211,0.26797 -0.70365,0 -1.23776,-0.21875 -1.60234,-0.65625 -0.36459,-0.4375 -0.54688,-1.07734 -0.54688,-1.91953" + id="path3300" + inkscape:connector-curvature="0" /><path + d="m 640.57612,358.29596 c -0.11302,-0.0656 -0.23698,-0.11302 -0.37187,-0.14219 -0.13126,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56876,10e-6 -1.00625,0.18595 -1.3125,0.55782 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,1e-5 0.14583,0.005 0.22969,0.0164 0.0838,0.007 0.17682,0.0201 0.2789,0.0383 l 0.005,1.03359" + id="path3302" + inkscape:connector-curvature="0" /><path + d="m 649.23862,358.28502 0,-3.31406 1.00625,0 0,8.50938 -1.00625,0 0,-0.91875 c -0.21146,0.36458 -0.47943,0.63619 -0.8039,0.81484 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.7401,0 -1.34349,-0.29531 -1.81015,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46666,-0.59062 1.07005,-0.88593 1.81015,-0.88594 0.45208,1e-5 0.83854,0.0893 1.15938,0.26797 0.32447,0.175 0.59244,0.44479 0.8039,0.80937 m -3.4289,2.13828 c 0,0.74011 0.1513,1.32162 0.4539,1.74454 0.30625,0.41927 0.72552,0.6289 1.25782,0.6289 0.53228,0 0.95156,-0.20963 1.25781,-0.6289 0.30624,-0.42292 0.45937,-1.00443 0.45937,-1.74454 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30625,-0.42291 -0.72553,-0.63437 -1.25781,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25782,0.63437 -0.3026,0.41928 -0.4539,0.99896 -0.4539,1.73906" + id="path3304" + inkscape:connector-curvature="0" /><path + d="m 657.55659,360.16627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.5414 1.56406,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42657 l 0,0.95157 c -0.36095,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32421,-0.85313 -0.56876,-0.56874 -0.85313,-1.33801 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54322,-0.59062 1.27421,-0.88593 2.19296,-0.88594 0.82396,1e-5 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3306" + inkscape:connector-curvature="0" /><path + d="m 663.11284,357.5358 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88593,-0.32813 -0.30626,-0.0729 -0.62345,-0.10937 -0.95157,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37187,0.68907 -1e-5,0.23333 0.0893,0.41745 0.26796,0.55234 0.17865,0.13125 0.53776,0.25704 1.07735,0.37734 l 0.34453,0.0766 c 0.71458,0.15312 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.4539,0.66536 0.45391,1.16484 -10e-6,0.56875 -0.22605,1.01901 -0.67813,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.8539,0.49766 -0.32813,0 -0.67084,-0.0328 -1.02813,-0.0984 -0.35365,-0.062 -0.72734,-0.15677 -1.12109,-0.28437 l 0,-1.03907 c 0.37187,0.19323 0.73828,0.33907 1.09922,0.4375 0.36093,0.0948 0.71822,0.14219 1.07187,0.14219 0.47396,0 0.83854,-0.0802 1.09375,-0.24062 0.25521,-0.16407 0.38281,-0.39375 0.38281,-0.68907 0,-0.27343 -0.093,-0.48307 -0.2789,-0.6289 -0.1823,-0.14583 -0.58516,-0.2862 -1.2086,-0.4211 l -0.35,-0.082 c -0.62343,-0.13124 -1.07369,-0.33177 -1.35078,-0.60156 -0.27708,-0.27343 -0.41562,-0.64713 -0.41562,-1.12109 0,-0.57604 0.20416,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.4703 1.73906,-0.47031 0.37187,10e-6 0.72187,0.0274 1.05,0.082 0.32812,0.0547 0.63073,0.13673 0.90781,0.24609" + id="path3308" + inkscape:connector-curvature="0" /><path + d="m 665.04878,357.35534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3310" + inkscape:connector-curvature="0" /><path + d="m 672.18549,360.34674 c 0,-0.72916 -0.1513,-1.29426 -0.4539,-1.69531 -0.29897,-0.40104 -0.72006,-0.60156 -1.26328,-0.60156 -0.53959,0 -0.96068,0.20052 -1.26329,0.60156 -0.29896,0.40105 -0.44843,0.96615 -0.44843,1.69531 0,0.72552 0.14947,1.28881 0.44843,1.68985 0.30261,0.40104 0.7237,0.60156 1.26329,0.60156 0.54322,0 0.96431,-0.20052 1.26328,-0.60156 0.3026,-0.40104 0.4539,-0.96433 0.4539,-1.68985 m 1.00625,2.37344 c 0,1.04271 -0.23151,1.81745 -0.69453,2.32422 -0.46302,0.51041 -1.17214,0.76562 -2.12734,0.76562 -0.35365,0 -0.68724,-0.0273 -1.00078,-0.082 -0.31355,-0.051 -0.61797,-0.13125 -0.91328,-0.24062 l 0,-0.97891 c 0.29531,0.16042 0.58697,0.27891 0.875,0.35547 0.28801,0.0766 0.5815,0.11484 0.88046,0.11484 0.6599,0 1.15391,-0.17318 1.48204,-0.51953 0.32812,-0.34271 0.49218,-0.86224 0.49218,-1.55859 l 0,-0.49766 c -0.20781,0.36094 -0.47396,0.63073 -0.79843,0.80938 -0.32449,0.17864 -0.71277,0.26797 -1.16485,0.26797 -0.75104,0 -1.35625,-0.2862 -1.81562,-0.8586 -0.45938,-0.57239 -0.68907,-1.33073 -0.68907,-2.275 0,-0.94791 0.22969,-1.70807 0.68907,-2.28047 0.45937,-0.57239 1.06458,-0.85858 1.81562,-0.85859 0.45208,10e-6 0.84036,0.0893 1.16485,0.26797 0.32447,0.17865 0.59062,0.44844 0.79843,0.80937 l 0,-0.92968 1.00625,0 0,5.36484" + id="path3312" + inkscape:connector-curvature="0" /><path + d="m 680.35581,359.78346 0,3.69688 -1.00625,0 0,-3.66407 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33907,-1.30156 -0.22604,-0.28802 -0.56511,-0.43203 -1.01718,-0.43203 -0.54324,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.24062,-0.36823 0.52317,-0.64349 0.84765,-0.82578 0.32813,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70365,1e-5 1.23594,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3314" + inkscape:connector-curvature="0" /><path + d="m 688.723,360.40143 c -0.81303,0 -1.37631,0.093 -1.68985,0.27891 -0.31354,0.18594 -0.47031,0.50312 -0.47031,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33984,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.5086,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.8586,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62708,0 -1.12656,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55234,-0.82578 -0.55234,-1.41641 0,-0.68906 0.22969,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06719,-0.525 l 1.41094,0 0,-0.0984 c -1e-5,-0.46301 -0.15313,-0.82031 -0.45938,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27968,-0.38282 -0.35001,1e-5 -0.69089,0.0419 -1.02266,0.12579 -0.33177,0.0838 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07187,-0.31719 0.34635,-0.0729 0.68359,-0.10936 1.01172,-0.10937 0.88593,1e-5 1.54765,0.22969 1.98516,0.68906 0.43749,0.45938 0.65624,1.15574 0.65625,2.08906" + id="path3316" + inkscape:connector-curvature="0" /><path + d="m 696.71284,357.5358 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88594,-0.32813 -0.30625,-0.0729 -0.62344,-0.10937 -0.95156,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37188,0.68907 0,0.23333 0.0893,0.41745 0.26797,0.55234 0.17865,0.13125 0.53776,0.25704 1.07735,0.37734 l 0.34453,0.0766 c 0.71458,0.15312 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.4539,0.66536 0.45391,1.16484 -10e-6,0.56875 -0.22605,1.01901 -0.67813,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.8539,0.49766 -0.32813,0 -0.67084,-0.0328 -1.02813,-0.0984 -0.35365,-0.062 -0.72734,-0.15677 -1.12109,-0.28437 l 0,-1.03907 c 0.37187,0.19323 0.73828,0.33907 1.09922,0.4375 0.36093,0.0948 0.71822,0.14219 1.07187,0.14219 0.47396,0 0.83854,-0.0802 1.09375,-0.24062 0.2552,-0.16407 0.38281,-0.39375 0.38281,-0.68907 0,-0.27343 -0.093,-0.48307 -0.2789,-0.6289 -0.1823,-0.14583 -0.58516,-0.2862 -1.2086,-0.4211 l -0.35,-0.082 c -0.62344,-0.13124 -1.0737,-0.33177 -1.35078,-0.60156 -0.27708,-0.27343 -0.41562,-0.64713 -0.41562,-1.12109 0,-0.57604 0.20416,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.4703 1.73906,-0.47031 0.37187,10e-6 0.72187,0.0274 1.05,0.082 0.32812,0.0547 0.63072,0.13673 0.90781,0.24609" + id="path3318" + inkscape:connector-curvature="0" /><path + d="m 704.998,360.40143 c -0.81303,0 -1.37631,0.093 -1.68985,0.27891 -0.31354,0.18594 -0.47031,0.50312 -0.47031,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33985,-0.59062 0.33905,-0.3974 0.50858,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49454 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34272,0.175 -0.76199,0.2625 -1.25782,0.2625 -0.62708,0 -1.12656,-0.175 -1.49843,-0.525 -0.36823,-0.35365 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15209,-0.525 2.06719,-0.525 l 1.41094,0 0,-0.0984 c -10e-6,-0.46301 -0.15313,-0.82031 -0.45938,-1.07187 -0.3026,-0.25521 -0.72917,-0.38281 -1.27968,-0.38282 -0.35001,1e-5 -0.69089,0.0419 -1.02266,0.12579 -0.33177,0.0838 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07187,-0.31719 0.34636,-0.0729 0.6836,-0.10936 1.01172,-0.10937 0.88594,1e-5 1.54765,0.22969 1.98516,0.68906 0.43749,0.45938 0.65624,1.15574 0.65625,2.08906" + id="path3320" + inkscape:connector-curvature="0" /><path + d="m 714.17455,359.78346 0,3.69688 -1.00625,0 0,-3.66407 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22604,-0.28802 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97161,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.81849 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.24062,-0.36823 0.52317,-0.64349 0.84765,-0.82578 0.32812,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70364,1e-5 1.23594,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + id="path3322" + inkscape:connector-curvature="0" /><path + d="m 724.69643,355.58346 0,1.07734 c -0.41927,-0.20051 -0.81485,-0.34999 -1.18672,-0.44843 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14766 -0.60157,1e-5 -1.06641,0.11667 -1.39453,0.35 -0.32448,0.23334 -0.48672,0.56511 -0.48672,0.99531 0,0.36095 0.10755,0.63438 0.32266,0.82032 0.21874,0.18229 0.63072,0.32995 1.23593,0.44296 l 0.66719,0.13672 c 0.82395,0.15678 1.43099,0.43386 1.82109,0.83125 0.39375,0.39376 0.59062,0.9224 0.59063,1.58594 -10e-6,0.79115 -0.26615,1.39089 -0.79844,1.79922 -0.52865,0.40833 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0437 -1.23593,-0.13125 -0.43386,-0.0875 -0.88412,-0.21693 -1.35078,-0.38828 l 0,-1.1375 c 0.44843,0.25156 0.88775,0.44114 1.31796,0.56875 0.43021,0.1276 0.85313,0.1914 1.26875,0.1914 0.63073,0 1.11745,-0.12395 1.46016,-0.37187 0.3427,-0.24792 0.51406,-0.60156 0.51406,-1.06094 0,-0.40104 -0.12396,-0.71458 -0.37187,-0.94062 -0.24428,-0.22604 -0.64714,-0.39557 -1.2086,-0.5086 l -0.67265,-0.13125 c -0.82396,-0.16406 -1.42006,-0.42109 -1.78828,-0.77109 -0.36823,-0.35 -0.55235,-0.83671 -0.55235,-1.46016 0,-0.72187 0.25339,-1.29061 0.76016,-1.70625 0.51041,-0.41561 1.21224,-0.62343 2.10547,-0.62343 0.38281,0 0.77291,0.0346 1.17031,0.1039 0.39739,0.0693 0.8039,0.17319 1.21953,0.31172" + id="path3324" + inkscape:connector-curvature="0" /><path + d="m 729.01674,363.48034 -3.11718,-8.16485 1.1539,0 2.58672,6.87422 2.59219,-6.87422 1.14844,0 -3.11172,8.16485 -1.25235,0" + id="path3326" + inkscape:connector-curvature="0" /><path + d="m 740.13471,362.31549 0,-2.19297 -1.80468,0 0,-0.90781 2.89843,0 0,3.50547 c -0.42657,0.3026 -0.89688,0.53229 -1.41093,0.68906 -0.51407,0.15313 -1.06277,0.22969 -1.6461,0.22969 -1.27604,0 -2.275,-0.37188 -2.99687,-1.11563 -0.71823,-0.74739 -1.07735,-1.78645 -1.07735,-3.11718 0,-1.33437 0.35912,-2.37343 1.07735,-3.11719 0.72187,-0.74739 1.72083,-1.12109 2.99687,-1.12109 0.53229,0 1.03724,0.0656 1.51485,0.19687 0.48124,0.13126 0.92421,0.32449 1.3289,0.57969 l 0,1.17578 c -0.40834,-0.34635 -0.84219,-0.60703 -1.30156,-0.78203 -0.45938,-0.17499 -0.94245,-0.26249 -1.44922,-0.2625 -0.99896,1e-5 -1.75,0.27891 -2.25312,0.83672 -0.49948,0.55781 -0.74922,1.38906 -0.74922,2.49375 0,1.10104 0.24974,1.93047 0.74922,2.48828 0.50312,0.55781 1.25416,0.83672 2.25312,0.83672 0.3901,0 0.73828,-0.0328 1.04453,-0.0984 0.30625,-0.0693 0.58151,-0.175 0.82578,-0.31719" + id="path3328" + inkscape:connector-curvature="0" /><path + d="m 749.87456,354.97096 0,0.83672 -0.9625,0 c -0.36094,10e-6 -0.61251,0.0729 -0.75469,0.21875 -0.13854,0.14584 -0.20781,0.40834 -0.20781,0.7875 l 0,0.54141 1.65703,0 0,0.78203 -1.65703,0 0,5.34297 -1.01172,0 0,-5.34297 -0.9625,0 0,-0.78203 0.9625,0 0,-0.42657 c 0,-0.68176 0.15859,-1.17759 0.47578,-1.4875 0.31719,-0.31353 0.82031,-0.4703 1.50937,-0.47031 l 0.95157,0" + id="path3330" + inkscape:connector-curvature="0" /><path + d="m 750.71128,357.35534 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3332" + inkscape:connector-curvature="0" /><path + d="m 753.81752,354.97096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + id="path3334" + inkscape:connector-curvature="0" /><path + d="m 762.16285,360.16627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89687,0.5414 1.56407,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37918,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85312,-2.30781 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,1e-5 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47579 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + id="path3336" + inkscape:connector-curvature="0" /><path + d="m 763.9566,362.09127 1.1539,0 0,1.38907 -1.1539,0 0,-1.38907" + id="path3338" + inkscape:connector-curvature="0" /><path + d="m 573.79722,377.55799 c 0.52864,0.11303 0.94062,0.34818 1.23593,0.70547 0.29896,0.35729 0.44844,0.79844 0.44844,1.32344 0,0.80573 -0.27709,1.42916 -0.83125,1.87031 -0.55417,0.44115 -1.34167,0.66172 -2.3625,0.66172 -0.34271,0 -0.69635,-0.0346 -1.06094,-0.10391 -0.36093,-0.0656 -0.73463,-0.16588 -1.12109,-0.30078 l 0,-1.06641 c 0.30625,0.17865 0.64167,0.31355 1.00625,0.40469 0.36458,0.0911 0.74557,0.13672 1.14297,0.13672 0.6927,0 1.21953,-0.13672 1.58047,-0.41016 0.36458,-0.27343 0.54687,-0.67083 0.54687,-1.19218 0,-0.48125 -0.16953,-0.85677 -0.50859,-1.12657 -0.33542,-0.27343 -0.80391,-0.41015 -1.40547,-0.41015 l -0.95156,0 0,-0.90781 0.99531,0 c 0.54323,0 0.95885,-0.10755 1.24688,-0.32266 0.28801,-0.21875 0.43202,-0.53229 0.43203,-0.94063 -10e-6,-0.41926 -0.14949,-0.74009 -0.44844,-0.9625 -0.29532,-0.22603 -0.72006,-0.33905 -1.27422,-0.33906 -0.30261,1e-5 -0.62709,0.0328 -0.97344,0.0984 -0.34635,0.0656 -0.72734,0.16772 -1.14297,0.30625 l 0,-0.98438 c 0.41927,-0.11665 0.8112,-0.20415 1.17579,-0.2625 0.36822,-0.0583 0.71458,-0.0875 1.03906,-0.0875 0.83854,1e-5 1.50208,0.19142 1.99062,0.57422 0.48854,0.37918 0.73281,0.89324 0.73282,1.54219 -1e-5,0.45209 -0.12944,0.8349 -0.38829,1.14844 -0.25886,0.3099 -0.62708,0.525 -1.10468,0.64531" + id="path3340" + inkscape:connector-curvature="0" /><path + d="m 577.28081,373.4619 0.875,0 c 0.54687,0.86042 0.95521,1.70261 1.225,2.52656 0.27343,0.82396 0.41015,1.64245 0.41016,2.45547 -10e-6,0.81667 -0.13673,1.6388 -0.41016,2.4664 -0.26979,0.82761 -0.67813,1.6698 -1.225,2.52657 l -0.875,0 c 0.48489,-0.8349 0.84583,-1.66433 1.08281,-2.48828 0.24063,-0.82761 0.36094,-1.6625 0.36094,-2.50469 0,-0.84218 -0.12031,-1.67343 -0.36094,-2.49375 -0.23698,-0.82031 -0.59792,-1.64973 -1.08281,-2.48828" + id="path3342" + inkscape:connector-curvature="0" /><path + d="m 585.298,373.79549 1.11015,0 0,4.96016 c 0,0.875 0.1586,1.50573 0.47579,1.89218 0.31718,0.38282 0.83124,0.57422 1.54218,0.57422 0.70729,0 1.21953,-0.1914 1.53672,-0.57422 0.31718,-0.38645 0.47578,-1.01718 0.47578,-1.89218 l 0,-4.96016 1.11016,0 0,5.09688 c -10e-6,1.06458 -0.26433,1.86849 -0.79297,2.41171 -0.52501,0.54323 -1.30157,0.81485 -2.32969,0.81485 -1.03177,0 -1.81198,-0.27162 -2.34062,-0.81485 -0.525,-0.54322 -0.7875,-1.34713 -0.7875,-2.41171 l 0,-5.09688" + id="path3344" + inkscape:connector-curvature="0" /><path + d="m 594.55659,381.04158 0,3.24844 -1.01172,0 0,-8.45469 1.01172,0 0,0.92969 c 0.21146,-0.36458 0.4776,-0.63437 0.79844,-0.80937 0.32447,-0.17864 0.71093,-0.26797 1.15937,-0.26797 0.74375,0 1.34713,0.29532 1.81016,0.88594 0.46666,0.59063 0.69999,1.36719 0.7,2.32968 -10e-6,0.96251 -0.23334,1.73907 -0.7,2.32969 -0.46303,0.59063 -1.06641,0.88594 -1.81016,0.88594 -0.44844,0 -0.8349,-0.0875 -1.15937,-0.2625 -0.32084,-0.17865 -0.58698,-0.45026 -0.79844,-0.81485 m 3.42344,-2.13828 c -1e-5,-0.7401 -0.15313,-1.31978 -0.45938,-1.73906 -0.30261,-0.42291 -0.72005,-0.63437 -1.25234,-0.63437 -0.53229,0 -0.95157,0.21146 -1.25781,0.63437 -0.30261,0.41928 -0.45391,0.99896 -0.45391,1.73906 0,0.74011 0.1513,1.32162 0.45391,1.74453 0.30624,0.41928 0.72552,0.62891 1.25781,0.62891 0.53229,0 0.94973,-0.20963 1.25234,-0.62891 0.30625,-0.42291 0.45937,-1.00442 0.45938,-1.74453" + id="path3346" + inkscape:connector-curvature="0" /><path + d="m 600.69253,373.45096 1.00625,0 0,8.50937 -1.00625,0 0,-8.50937" + id="path3348" + inkscape:connector-curvature="0" /><path + d="m 606.17222,376.5408 c -0.53959,1e-5 -0.96615,0.21147 -1.27969,0.63438 -0.31355,0.41927 -0.47032,0.99531 -0.47031,1.72812 -1e-5,0.73282 0.15494,1.31068 0.46484,1.7336 0.31354,0.41927 0.74192,0.6289 1.28516,0.6289 0.53593,0 0.96067,-0.21145 1.27421,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47032,-1.72813 -10e-6,-0.72551 -0.15678,-1.29973 -0.47032,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27421,-0.63985 m 0,-0.85312 c 0.87499,0 1.56223,0.28438 2.06171,0.85312 0.49948,0.56876 0.74922,1.35626 0.74922,2.3625 0,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06171,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85312 2.06719,-0.85312" + id="path3350" + inkscape:connector-curvature="0" /><path + d="m 613.42925,378.88143 c -0.81302,0 -1.37631,0.093 -1.68984,0.2789 -0.31355,0.18594 -0.47032,0.50313 -0.47032,0.95157 0,0.35729 0.11667,0.64166 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00443,-0.19687 1.33985,-0.59062 0.33905,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41563 0,3.49453 -1.00625,0 0,-0.92968 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34271,0.175 -0.76199,0.2625 -1.25782,0.2625 -0.62708,0 -1.12656,-0.175 -1.49843,-0.525 -0.36823,-0.35365 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68907,-1.55859 0.46301,-0.35 1.15208,-0.525 2.06718,-0.525 l 1.41094,0 0,-0.0984 c 0,-0.46302 -0.15313,-0.82031 -0.45937,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38282 -0.35,10e-6 -0.69089,0.0419 -1.02266,0.12578 -0.33177,0.0839 -0.65078,0.20965 -0.95703,0.37735 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31719 0.34635,-0.0729 0.68359,-0.10937 1.01171,-0.10937 0.88594,0 1.54766,0.22969 1.98516,0.68906 0.4375,0.45938 0.65624,1.15573 0.65625,2.08906" + id="path3352" + inkscape:connector-curvature="0" /><path + d="m 621.54487,376.76502 0,-3.31406 1.00625,0 0,8.50937 -1.00625,0 0,-0.91875 c -0.21146,0.36459 -0.47943,0.6362 -0.8039,0.81485 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.74011,0 -1.34349,-0.29531 -1.81016,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46667,-0.59062 1.07005,-0.88594 1.81016,-0.88594 0.45208,0 0.83854,0.0893 1.15938,0.26797 0.32447,0.175 0.59244,0.44479 0.8039,0.80937 m -3.4289,2.13828 c -10e-6,0.74011 0.1513,1.32162 0.4539,1.74453 0.30625,0.41928 0.72552,0.62891 1.25781,0.62891 0.53229,0 0.95156,-0.20963 1.25782,-0.62891 0.30624,-0.42291 0.45937,-1.00442 0.45937,-1.74453 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30626,-0.42291 -0.72553,-0.63437 -1.25782,-0.63437 -0.53229,0 -0.95156,0.21146 -1.25781,0.63437 -0.3026,0.41928 -0.45391,0.99896 -0.4539,1.73906" + id="path3354" + inkscape:connector-curvature="0" /><path + d="m 629.18472,374.09627 0,1.73906 2.07265,0 0,0.78204 -2.07265,0 0,3.325 c -10e-6,0.49948 0.0674,0.82031 0.20234,0.9625 0.13854,0.14218 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84218 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29532,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78204 0.73828,0 0,-1.73906 1.01172,0" + id="path3356" + inkscape:connector-curvature="0" /><path + d="m 637.67769,378.26346 0,3.69687 -1.00625,0 0,-3.66406 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33907,-1.30156 -0.22604,-0.28802 -0.5651,-0.43203 -1.01718,-0.43203 -0.54324,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46171 -1.01172,0 0,-8.50937 1.01172,0 0,3.33594 c 0.24062,-0.36823 0.52317,-0.64349 0.84765,-0.82578 0.32813,-0.18229 0.70547,-0.27344 1.13203,-0.27344 0.70365,0 1.23594,0.21875 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3358" + inkscape:connector-curvature="0" /><path + d="m 639.69565,375.83533 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38437 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3360" + inkscape:connector-curvature="0" /><path + d="m 646.70659,376.0158 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88593,-0.32813 -0.30626,-0.0729 -0.62345,-0.10937 -0.95157,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37187,0.68907 -1e-5,0.23333 0.0893,0.41745 0.26796,0.55234 0.17865,0.13125 0.53776,0.25703 1.07735,0.37734 l 0.34453,0.0766 c 0.71458,0.15312 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.4539,0.66536 0.45391,1.16484 -10e-6,0.56875 -0.22605,1.01901 -0.67813,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.8539,0.49766 -0.32813,0 -0.67084,-0.0328 -1.02813,-0.0984 -0.35365,-0.062 -0.72734,-0.15677 -1.12109,-0.28437 l 0,-1.03907 c 0.37187,0.19323 0.73828,0.33907 1.09922,0.4375 0.36093,0.0948 0.71822,0.14219 1.07187,0.14219 0.47396,0 0.83854,-0.0802 1.09375,-0.24062 0.25521,-0.16407 0.38281,-0.39375 0.38281,-0.68907 0,-0.27343 -0.093,-0.48307 -0.2789,-0.6289 -0.1823,-0.14583 -0.58516,-0.2862 -1.2086,-0.4211 l -0.35,-0.082 c -0.62343,-0.13125 -1.07369,-0.33177 -1.35078,-0.60156 -0.27708,-0.27343 -0.41562,-0.64713 -0.41562,-1.12109 0,-0.57604 0.20416,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.47031 1.73906,-0.47031 0.37187,0 0.72187,0.0274 1.05,0.082 0.32812,0.0547 0.63073,0.13672 0.90781,0.24609" + id="path3362" + inkscape:connector-curvature="0" /><path + d="m 656.23862,376.76502 0,-3.31406 1.00625,0 0,8.50937 -1.00625,0 0,-0.91875 c -0.21146,0.36459 -0.47943,0.6362 -0.8039,0.81485 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.7401,0 -1.34349,-0.29531 -1.81015,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46666,-0.59062 1.07005,-0.88594 1.81015,-0.88594 0.45208,0 0.83854,0.0893 1.15938,0.26797 0.32447,0.175 0.59244,0.44479 0.8039,0.80937 m -3.4289,2.13828 c 0,0.74011 0.1513,1.32162 0.4539,1.74453 0.30625,0.41928 0.72552,0.62891 1.25782,0.62891 0.53228,0 0.95156,-0.20963 1.25781,-0.62891 0.30624,-0.42291 0.45937,-1.00442 0.45937,-1.74453 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30625,-0.42291 -0.72553,-0.63437 -1.25781,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25782,0.63437 -0.3026,0.41928 -0.4539,0.99896 -0.4539,1.73906" + id="path3364" + inkscape:connector-curvature="0" /><path + d="m 664.55659,378.64627 0,0.49219 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.5414 1.56406,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42657 l 0,0.95157 c -0.36095,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32421,-0.85313 -0.56876,-0.56875 -0.85313,-1.33802 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54322,-0.59062 1.27421,-0.88594 2.19296,-0.88594 0.82396,0 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.3172 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + id="path3366" + inkscape:connector-curvature="0" /><path + d="m 670.11284,376.0158 0,0.95157 c -0.28438,-0.14583 -0.57969,-0.25521 -0.88593,-0.32813 -0.30626,-0.0729 -0.62345,-0.10937 -0.95157,-0.10937 -0.49948,0 -0.875,0.0766 -1.12656,0.22968 -0.24792,0.15313 -0.37188,0.38282 -0.37187,0.68907 -1e-5,0.23333 0.0893,0.41745 0.26796,0.55234 0.17865,0.13125 0.53776,0.25703 1.07735,0.37734 l 0.34453,0.0766 c 0.71458,0.15312 1.22135,0.37005 1.52031,0.65078 0.3026,0.27708 0.4539,0.66536 0.45391,1.16484 -10e-6,0.56875 -0.22605,1.01901 -0.67813,1.35078 -0.44844,0.33177 -1.06641,0.49766 -1.8539,0.49766 -0.32813,0 -0.67084,-0.0328 -1.02813,-0.0984 -0.35365,-0.062 -0.72734,-0.15677 -1.12109,-0.28437 l 0,-1.03907 c 0.37187,0.19323 0.73828,0.33907 1.09922,0.4375 0.36093,0.0948 0.71822,0.14219 1.07187,0.14219 0.47396,0 0.83854,-0.0802 1.09375,-0.24062 0.25521,-0.16407 0.38281,-0.39375 0.38281,-0.68907 0,-0.27343 -0.093,-0.48307 -0.2789,-0.6289 -0.1823,-0.14583 -0.58516,-0.2862 -1.2086,-0.4211 l -0.35,-0.082 c -0.62343,-0.13125 -1.07369,-0.33177 -1.35078,-0.60156 -0.27708,-0.27343 -0.41562,-0.64713 -0.41562,-1.12109 0,-0.57604 0.20416,-1.02083 0.6125,-1.33438 0.40833,-0.31353 0.98802,-0.47031 1.73906,-0.47031 0.37187,0 0.72187,0.0274 1.05,0.082 0.32812,0.0547 0.63073,0.13672 0.90781,0.24609" + id="path3368" + inkscape:connector-curvature="0" /><path + d="m 672.04878,375.83533 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38437 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + id="path3370" + inkscape:connector-curvature="0" /><path + d="m 679.1855,378.82674 c 0,-0.72916 -0.15131,-1.29427 -0.45391,-1.69531 -0.29896,-0.40104 -0.72005,-0.60156 -1.26328,-0.60156 -0.53958,0 -0.96068,0.20052 -1.26328,0.60156 -0.29896,0.40104 -0.44844,0.96615 -0.44844,1.69531 0,0.72552 0.14948,1.2888 0.44844,1.68984 0.3026,0.40105 0.7237,0.60157 1.26328,0.60157 0.54323,0 0.96432,-0.20052 1.26328,-0.60157 0.3026,-0.40104 0.45391,-0.96432 0.45391,-1.68984 m 1.00625,2.37344 c -10e-6,1.04271 -0.23152,1.81745 -0.69453,2.32422 -0.46303,0.51041 -1.17214,0.76562 -2.12734,0.76562 -0.35365,0 -0.68725,-0.0273 -1.00079,-0.082 -0.31354,-0.051 -0.61797,-0.13125 -0.91328,-0.24062 l 0,-0.97891 c 0.29531,0.16041 0.58698,0.2789 0.875,0.35547 0.28802,0.0766 0.58151,0.11484 0.88047,0.11484 0.65989,0 1.1539,-0.17318 1.48203,-0.51953 0.32812,-0.34271 0.49219,-0.86224 0.49219,-1.55859 l 0,-0.49766 c -0.20782,0.36094 -0.47396,0.63073 -0.79844,0.80938 -0.32448,0.17864 -0.71276,0.26796 -1.16484,0.26796 -0.75104,0 -1.35625,-0.28619 -1.81563,-0.85859 -0.45937,-0.57239 -0.68906,-1.33073 -0.68906,-2.275 0,-0.94791 0.22969,-1.70807 0.68906,-2.28047 0.45938,-0.57239 1.06459,-0.85859 1.81563,-0.85859 0.45208,0 0.84036,0.0893 1.16484,0.26797 0.32448,0.17865 0.59062,0.44844 0.79844,0.80937 l 0,-0.92969 1.00625,0 0,5.36485" + id="path3372" + inkscape:connector-curvature="0" /><path + d="m 687.35581,378.26346 0,3.69687 -1.00625,0 0,-3.66406 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22605,-0.28802 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97161,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.81849 -0.47032,1.41641 l 0,3.46171 -1.01171,0 0,-6.125 1.01171,0 0,0.95157 c 0.24063,-0.36823 0.52318,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70547,-0.27344 1.13203,-0.27344 0.70364,0 1.23593,0.21875 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + id="path3374" + inkscape:connector-curvature="0" /><path + d="m 698.03081,378.26346 0,3.69687 -1.00625,0 0,-3.66406 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33906,-1.30156 -0.22605,-0.28802 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46171 -1.01172,0 0,-8.50937 1.01172,0 0,3.33594 c 0.24062,-0.36823 0.52317,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70546,-0.27344 1.13203,-0.27344 0.70364,0 1.23593,0.21875 1.59687,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3376" + inkscape:connector-curvature="0" /><path + d="m 705.28785,378.64627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89687,0.5414 1.56407,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37918,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56875 -0.85313,-1.33802 -0.85312,-2.30781 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88594 2.19297,-0.88594 0.82395,0 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.3172 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + id="path3378" + inkscape:connector-curvature="0" /><path + d="m 710.48863,376.77596 c -0.11303,-0.0656 -0.23698,-0.11302 -0.37188,-0.14219 -0.13125,-0.0328 -0.27708,-0.0492 -0.4375,-0.0492 -0.56875,1e-5 -1.00625,0.18595 -1.3125,0.55782 -0.3026,0.36823 -0.4539,0.8987 -0.4539,1.5914 l 0,3.22656 -1.01172,0 0,-6.125 1.01172,0 0,0.95157 c 0.21145,-0.37187 0.48671,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27344 1.23594,-0.27344 0.0693,0 0.14583,0.005 0.22968,0.0164 0.0838,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.03359" + id="path3380" + inkscape:connector-curvature="0" /><path + d="m 716.5644,378.64627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89687,0.5414 1.56407,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42657 l 0,0.95157 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37918,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56875 -0.85312,-1.33802 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88594 2.19297,-0.88594 0.82395,0 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.3172 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + id="path3382" + inkscape:connector-curvature="0" /><path + d="m 718.48393,380.57127 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906 m 0,-4.40234 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + id="path3384" + inkscape:connector-curvature="0" /><path + d="m 724.99175,375.83533 1.00625,0 1.25781,4.77969 1.25235,-4.77969 1.18672,0 1.25781,4.77969 1.25234,-4.77969 1.00625,0 -1.60234,6.125 -1.18672,0 -1.31797,-5.02031 -1.32344,5.02031 -1.18672,0 -1.60234,-6.125" + id="path3386" + inkscape:connector-curvature="0" /><path + d="m 734.15737,375.83533 1.00625,0 1.25781,4.77969 1.25235,-4.77969 1.18671,0 1.25782,4.77969 1.25234,-4.77969 1.00625,0 -1.60234,6.125 -1.18672,0 -1.31797,-5.02031 -1.32344,5.02031 -1.18672,0 -1.60234,-6.125" + id="path3388" + inkscape:connector-curvature="0" /><path + d="m 743.32299,375.83533 1.00625,0 1.25781,4.77969 1.25235,-4.77969 1.18671,0 1.25782,4.77969 1.25234,-4.77969 1.00625,0 -1.60234,6.125 -1.18672,0 -1.31797,-5.02031 -1.32344,5.02031 -1.18672,0 -1.60234,-6.125" + id="path3390" + inkscape:connector-curvature="0" /><path + d="m 752.19877,380.57127 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + id="path3392" + inkscape:connector-curvature="0" /><path + d="m 756.60659,381.04158 0,3.24844 -1.01172,0 0,-8.45469 1.01172,0 0,0.92969 c 0.21145,-0.36458 0.4776,-0.63437 0.79844,-0.80937 0.32447,-0.17864 0.71093,-0.26797 1.15937,-0.26797 0.74375,0 1.34713,0.29532 1.81016,0.88594 0.46666,0.59063 0.69999,1.36719 0.7,2.32968 -10e-6,0.96251 -0.23334,1.73907 -0.7,2.32969 -0.46303,0.59063 -1.06641,0.88594 -1.81016,0.88594 -0.44844,0 -0.8349,-0.0875 -1.15937,-0.2625 -0.32084,-0.17865 -0.58699,-0.45026 -0.79844,-0.81485 m 3.42344,-2.13828 c -10e-6,-0.7401 -0.15313,-1.31978 -0.45938,-1.73906 -0.30261,-0.42291 -0.72006,-0.63437 -1.25234,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25782,0.63437 -0.3026,0.41928 -0.4539,0.99896 -0.4539,1.73906 0,0.74011 0.1513,1.32162 0.4539,1.74453 0.30625,0.41928 0.72552,0.62891 1.25782,0.62891 0.53228,0 0.94973,-0.20963 1.25234,-0.62891 0.30625,-0.42291 0.45937,-1.00442 0.45938,-1.74453" + id="path3394" + inkscape:connector-curvature="0" /><path + d="m 765.11596,376.5408 c -0.53958,1e-5 -0.96614,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99531 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.6289 1.28515,0.6289 0.53594,0 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,0 1.56224,0.28438 2.06172,0.85312 0.49948,0.56876 0.74921,1.35626 0.74922,2.3625 -1e-5,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87864,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85312 2.06718,-0.85312" + id="path3396" + inkscape:connector-curvature="0" /><path + d="m 774.68081,378.26346 0,3.69687 -1.00625,0 0,-3.66406 c 0,-0.57968 -0.11303,-1.01353 -0.33906,-1.30156 -0.22605,-0.28802 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46171 -1.01172,0 0,-6.125 1.01172,0 0,0.95157 c 0.24062,-0.36823 0.52318,-0.64349 0.84766,-0.82578 0.32812,-0.18229 0.70546,-0.27344 1.13203,-0.27344 0.70364,0 1.23593,0.21875 1.59687,0.65625 0.36094,0.43386 0.5414,1.0737 0.54141,1.91953" + id="path3398" + inkscape:connector-curvature="0" /><path + d="m 779.07222,376.5408 c -0.53959,1e-5 -0.96615,0.21147 -1.27969,0.63438 -0.31354,0.41927 -0.47031,0.99531 -0.47031,1.72812 0,0.73282 0.15494,1.31068 0.46484,1.7336 0.31354,0.41927 0.74192,0.6289 1.28516,0.6289 0.53593,0 0.96067,-0.21145 1.27422,-0.63437 0.31353,-0.42292 0.4703,-0.99896 0.47031,-1.72813 -10e-6,-0.72551 -0.15678,-1.29973 -0.47031,-1.72265 -0.31355,-0.42656 -0.73829,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.87499,0 1.56223,0.28438 2.06172,0.85312 0.49947,0.56876 0.74921,1.35626 0.74921,2.3625 0,1.00261 -0.24974,1.79011 -0.74921,2.3625 -0.49949,0.56875 -1.18673,0.85313 -2.06172,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49583,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24792,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85312 2.06719,-0.85312" + id="path3400" + inkscape:connector-curvature="0" /><path + d="m 783.50738,373.45096 1.01171,0 0,5.02578 3.00235,-2.64141 1.28515,0 -3.24843,2.86563 3.38515,3.25937 -1.3125,0 -3.11172,-2.9914 0,2.9914 -1.01171,0 0,-8.50937" + id="path3402" + inkscape:connector-curvature="0" /><path + d="m 792.02221,376.5408 c -0.53958,1e-5 -0.96614,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99531 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.6289 1.28515,0.6289 0.53594,0 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,0 1.56224,0.28438 2.06172,0.85312 0.49948,0.56876 0.74921,1.35626 0.74922,2.3625 -1e-5,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87864,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85312 2.06718,-0.85312" + id="path3404" + inkscape:connector-curvature="0" /><path + d="m 796.4519,380.57127 1.1539,0 0,1.38906 -1.1539,0 0,-1.38906" + id="path3406" + inkscape:connector-curvature="0" /><path + d="m 804.29409,376.07049 0,0.94063 c -0.28438,-0.15677 -0.57058,-0.27344 -0.85859,-0.35 -0.28438,-0.0802 -0.5724,-0.12031 -0.86406,-0.12032 -0.65261,1e-5 -1.15938,0.20782 -1.52032,0.62344 -0.36094,0.41198 -0.5414,0.99167 -0.5414,1.73906 0,0.7474 0.18046,1.32891 0.5414,1.74453 0.36094,0.41198 0.86771,0.61797 1.52032,0.61797 0.29166,0 0.57968,-0.0383 0.86406,-0.11484 0.28801,-0.0802 0.57421,-0.1987 0.85859,-0.35547 l 0,0.92969 c -0.28073,0.13125 -0.5724,0.22969 -0.875,0.29531 -0.29896,0.0656 -0.61797,0.0984 -0.95703,0.0984 -0.9224,0 -1.65521,-0.28985 -2.19844,-0.86953 -0.54323,-0.57969 -0.81484,-1.36172 -0.81484,-2.3461 0,-0.99895 0.27344,-1.78463 0.82031,-2.35703 0.55052,-0.57239 1.30338,-0.85859 2.2586,-0.85859 0.30989,0 0.61249,0.0328 0.90781,0.0984 0.29531,0.062 0.5815,0.15677 0.85859,0.28437" + id="path3408" + inkscape:connector-curvature="0" /><path + d="m 808.42846,376.5408 c -0.53958,1e-5 -0.96614,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99531 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.6289 1.28515,0.6289 0.53594,0 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,0 1.56224,0.28438 2.06172,0.85312 0.49948,0.56876 0.74921,1.35626 0.74922,2.3625 -1e-5,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87864,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85312 2.06718,-0.85312" + id="path3410" + inkscape:connector-curvature="0" /><path + d="m 817.67065,377.01112 c 0.25156,-0.45208 0.55234,-0.78568 0.90235,-1.00079 0.34999,-0.21509 0.76197,-0.32265 1.23594,-0.32265 0.63801,0 1.13019,0.22422 1.47656,0.67265 0.34634,0.4448 0.51952,1.07918 0.51953,1.90313 l 0,3.69687 -1.01172,0 0,-3.66406 c -10e-6,-0.58697 -0.10391,-1.02265 -0.31172,-1.30703 -0.20782,-0.28437 -0.52501,-0.42656 -0.95156,-0.42656 -0.52136,0 -0.93334,0.17318 -1.23594,0.51953 -0.30261,0.34636 -0.45391,0.81849 -0.4539,1.41641 l 0,3.46171 -1.01172,0 0,-3.66406 c -1e-5,-0.59062 -0.10391,-1.0263 -0.31172,-1.30703 -0.20782,-0.28437 -0.52865,-0.42656 -0.9625,-0.42656 -0.51407,0 -0.9224,0.175 -1.225,0.525 -0.30261,0.34636 -0.45391,0.81667 -0.45391,1.41094 l 0,3.46171 -1.01172,0 0,-6.125 1.01172,0 0,0.95157 c 0.22969,-0.37552 0.50495,-0.6526 0.82578,-0.83125 0.32083,-0.17864 0.70182,-0.26797 1.14297,-0.26797 0.44479,0 0.82213,0.11303 1.13203,0.33906 0.31354,0.22605 0.54505,0.55417 0.69453,0.98438" + id="path3412" + inkscape:connector-curvature="0" /><path + d="m 825.6058,373.79549 0.92969,0 -2.84375,9.20391 -0.92969,0 2.84375,-9.20391" + id="path3414" + inkscape:connector-curvature="0" /><path + d="m 828.20345,378.9033 c 0,0.74011 0.1513,1.32162 0.4539,1.74453 0.30625,0.41928 0.72552,0.62891 1.25782,0.62891 0.53228,0 0.95156,-0.20963 1.25781,-0.62891 0.30624,-0.42291 0.45937,-1.00442 0.45937,-1.74453 0,-0.7401 -0.15313,-1.31978 -0.45937,-1.73906 -0.30625,-0.42291 -0.72553,-0.63437 -1.25781,-0.63437 -0.5323,0 -0.95157,0.21146 -1.25782,0.63437 -0.3026,0.41928 -0.4539,0.99896 -0.4539,1.73906 m 3.4289,2.13828 c -0.21146,0.36459 -0.47943,0.6362 -0.8039,0.81485 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.7401,0 -1.34349,-0.29531 -1.81015,-0.88594 -0.46302,-0.59062 -0.69453,-1.36718 -0.69453,-2.32969 0,-0.96249 0.23151,-1.73905 0.69453,-2.32968 0.46666,-0.59062 1.07005,-0.88594 1.81015,-0.88594 0.45208,0 0.83854,0.0893 1.15938,0.26797 0.32447,0.175 0.59244,0.44479 0.8039,0.80937 l 0,-0.92969 1.00625,0 0,8.45469 -1.00625,0 0,-3.24844" + id="path3416" + inkscape:connector-curvature="0" /><path + d="m 834.60735,379.54315 0,-3.70782 1.00625,0 0,3.66954 c 0,0.57969 0.11302,1.01536 0.33907,1.30703 0.22604,0.28802 0.5651,0.43203 1.01718,0.43203 0.54323,0 0.97161,-0.17318 1.28516,-0.51953 0.31718,-0.34636 0.47578,-0.81849 0.47578,-1.41641 l 0,-3.47266 1.00625,0 0,6.125 -1.00625,0 0,-0.94062 c -0.24427,0.37188 -0.52865,0.64896 -0.85312,0.83125 -0.32084,0.17865 -0.69454,0.26797 -1.1211,0.26797 -0.70364,0 -1.23776,-0.21875 -1.60234,-0.65625 -0.36458,-0.4375 -0.54688,-1.07734 -0.54688,-1.91953" + id="path3418" + inkscape:connector-curvature="0" /><path + d="m 844.19407,376.5408 c -0.53958,1e-5 -0.96614,0.21147 -1.27968,0.63438 -0.31355,0.41927 -0.47032,0.99531 -0.47032,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.7336 0.31354,0.41927 0.74192,0.6289 1.28515,0.6289 0.53594,0 0.96068,-0.21145 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72551 -0.15677,-1.29973 -0.47031,-1.72265 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63985 m 0,-0.85312 c 0.875,0 1.56224,0.28438 2.06172,0.85312 0.49948,0.56876 0.74921,1.35626 0.74922,2.3625 -10e-6,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87864,0 -1.56771,-0.28438 -2.06718,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00624 0.24791,-1.79374 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85312 2.06718,-0.85312" + id="path3420" + inkscape:connector-curvature="0" /><path + d="m 849.66284,374.09627 0,1.73906 2.07266,0 0,0.78204 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82031 0.20235,0.9625 0.13853,0.14218 0.41744,0.21328 0.83671,0.21328 l 1.0336,0 0,0.84218 -1.0336,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29531,-0.29166 -0.44297,-0.82031 -0.44297,-1.58593 l 0,-3.325 -0.73828,0 0,-0.78204 0.73828,0 0,-1.73906 1.01172,0" + id="path3422" + inkscape:connector-curvature="0" /><path + d="m 858.30347,378.64627 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.5414 1.56406,0.5414 0.38645,0 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42657 l 0,0.95157 c -0.36095,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28438 -2.32421,-0.85313 -0.56876,-0.56875 -0.85313,-1.33802 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54322,-0.59062 1.27421,-0.88594 2.19296,-0.88594 0.82396,0 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.3172 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + id="path3424" + inkscape:connector-curvature="0" /></g><g + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="text4751"><path + d="m 574.46167,302.28942 c -0.73282,1.25783 -1.27696,2.50197 -1.63242,3.73242 -0.35547,1.23048 -0.53321,2.47735 -0.5332,3.74063 -1e-5,1.26328 0.17773,2.51563 0.5332,3.75703 0.36093,1.23594 0.90507,2.48008 1.63242,3.73242 l -1.3125,0 c -0.82032,-1.28515 -1.43555,-2.54843 -1.8457,-3.78984 -0.40469,-1.2414 -0.60704,-2.47461 -0.60703,-3.69961 -1e-5,-1.21953 0.20234,-2.44726 0.60703,-3.6832 0.40468,-1.23593 1.01992,-2.49921 1.8457,-3.78985 l 1.3125,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3427" + inkscape:connector-curvature="0" /><path + d="m 582.63198,308.43356 c 0.79296,0.16954 1.41093,0.52227 1.85391,1.05821 0.44843,0.53594 0.67265,1.19766 0.67266,1.98515 -10e-6,1.2086 -0.41564,2.14375 -1.24688,2.80547 -0.83126,0.66172 -2.01251,0.99258 -3.54375,0.99258 -0.51407,0 -1.04453,-0.0519 -1.59141,-0.15586 -0.5414,-0.0984 -1.10195,-0.24883 -1.68164,-0.45117 l 0,-1.59961 c 0.45938,0.26797 0.9625,0.47031 1.50938,0.60703 0.54687,0.13672 1.11835,0.20508 1.71445,0.20508 1.03906,0 1.82929,-0.20508 2.37071,-0.61524 0.54686,-0.41015 0.8203,-1.00624 0.82031,-1.78828 -10e-6,-0.72187 -0.25431,-1.28515 -0.76289,-1.68984 -0.50313,-0.41015 -1.20587,-0.61523 -2.10821,-0.61524 l -1.42734,0 0,-1.36171 1.49297,0 c 0.81484,0 1.43827,-0.16133 1.87031,-0.48399 0.43203,-0.32812 0.64804,-0.79843 0.64805,-1.41094 -10e-6,-0.62889 -0.22423,-1.11014 -0.67266,-1.44375 -0.44297,-0.33905 -1.08008,-0.50858 -1.91133,-0.50859 -0.45391,1e-5 -0.94063,0.0492 -1.46015,0.14766 -0.51954,0.0984 -1.09102,0.25157 -1.71446,0.45937 l 0,-1.47656 c 0.62891,-0.17499 1.2168,-0.30624 1.76368,-0.39375 0.55234,-0.0875 1.07187,-0.13124 1.55859,-0.13125 1.25781,10e-6 2.25312,0.28712 2.98594,0.86133 0.7328,0.56876 1.09921,1.33985 1.09922,2.31328 -10e-6,0.67813 -0.19415,1.25235 -0.58243,1.72265 -0.38828,0.46485 -0.94063,0.78751 -1.65703,0.96797" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3429" + inkscape:connector-curvature="0" /><path + d="m 587.85737,302.28942 1.3125,0 c 0.82031,1.29064 1.43281,2.55392 1.8375,3.78985 0.41016,1.23594 0.61523,2.46367 0.61524,3.6832 -10e-6,1.225 -0.20508,2.45821 -0.61524,3.69961 -0.40469,1.24141 -1.01719,2.50469 -1.8375,3.78984 l -1.3125,0 c 0.72735,-1.25234 1.26875,-2.49648 1.62422,-3.73242 0.36094,-1.2414 0.54141,-2.49375 0.54141,-3.75703 0,-1.26328 -0.18047,-2.51015 -0.54141,-3.74063 -0.35547,-1.23045 -0.89687,-2.47459 -1.62422,-3.73242" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3431" + inkscape:connector-curvature="0" /><path + d="m 608.42261,313.28981 0,-3.28945 -2.70703,0 0,-1.36172 4.34766,0 0,5.2582 c -0.63986,0.45391 -1.34533,0.79844 -2.11641,1.0336 -0.7711,0.22969 -1.59415,0.34453 -2.46914,0.34453 -1.91407,0 -3.41251,-0.55781 -4.49531,-1.67344 -1.07735,-1.12109 -1.61602,-2.67968 -1.61602,-4.67578 0,-2.00155 0.53867,-3.56015 1.61602,-4.67578 1.0828,-1.12108 2.58124,-1.68163 4.49531,-1.68164 0.79843,10e-6 1.55585,0.0985 2.27226,0.29531 0.72187,0.19689 1.38632,0.48673 1.99336,0.86953 l 0,1.76367 c -0.61251,-0.51952 -1.26329,-0.91053 -1.95234,-1.17304 -0.68907,-0.26249 -1.41368,-0.39374 -2.17383,-0.39375 -1.49844,1e-5 -2.625,0.41837 -3.37969,1.25508 -0.74922,0.83672 -1.12383,2.0836 -1.12382,3.74062 -10e-6,1.65157 0.3746,2.89571 1.12382,3.73242 0.75469,0.83672 1.88125,1.25508 3.37969,1.25508 0.58515,0 1.10742,-0.0492 1.5668,-0.14766 0.45936,-0.1039 0.87225,-0.26249 1.23867,-0.47578" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3433" + inkscape:connector-curvature="0" /><path + d="m 620.89136,310.06598 0,0.73829 -6.93984,0 c 0.0656,1.03906 0.37734,1.83203 0.93515,2.3789 0.56328,0.54141 1.34531,0.81211 2.3461,0.81211 0.57968,0 1.14022,-0.0711 1.68164,-0.21328 0.54686,-0.14219 1.08827,-0.35547 1.62422,-0.63984 l 0,1.42734 c -0.54142,0.22969 -1.0965,0.40469 -1.66524,0.525 -0.56876,0.12031 -1.14571,0.18047 -1.73086,0.18047 -1.46563,0 -2.62774,-0.42656 -3.48633,-1.27969 -0.85312,-0.85312 -1.27969,-2.00703 -1.27968,-3.46172 -10e-6,-1.5039 0.40468,-2.69608 1.21406,-3.57656 0.81484,-0.88593 1.91132,-1.3289 3.28945,-1.32891 1.23593,1e-5 2.2121,0.39923 2.92852,1.19766 0.72186,0.79298 1.0828,1.87305 1.08281,3.24023 m -1.50938,-0.44296 c -0.0109,-0.82578 -0.24336,-1.48476 -0.69726,-1.97696 -0.44845,-0.49218 -1.04454,-0.73827 -1.78828,-0.73828 -0.84219,10e-6 -1.51758,0.2379 -2.02617,0.71367 -0.50313,0.47579 -0.79298,1.14571 -0.86954,2.00977 l 5.38125,-0.008" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3435" + inkscape:connector-curvature="0" /><path + d="m 624.86168,303.24098 0,2.6086 3.10898,0 0,1.17305 -3.10898,0 0,4.9875 c -10e-6,0.74922 0.10116,1.23047 0.30351,1.44375 0.20781,0.21328 0.62617,0.31992 1.25508,0.31992 l 1.55039,0 0,1.26328 -1.55039,0 c -1.16485,0 -1.96875,-0.21602 -2.41172,-0.64805 -0.44297,-0.4375 -0.66445,-1.23047 -0.66445,-2.3789 l 0,-4.9875 -1.10742,0 0,-1.17305 1.10742,0 0,-2.6086 1.51758,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3437" + inkscape:connector-curvature="0" /><path + d="m 639.48785,310.41872 c -1.21954,0 -2.06446,0.13946 -2.53477,0.41836 -0.47031,0.27891 -0.70547,0.75469 -0.70546,1.42734 -10e-6,0.53594 0.17499,0.9625 0.525,1.27969 0.35546,0.31172 0.83671,0.46758 1.44375,0.46758 0.83671,0 1.50663,-0.29531 2.00976,-0.88594 0.50859,-0.59609 0.76288,-1.38632 0.76289,-2.3707 l 0,-0.33633 -1.50117,0 m 3.01055,-0.62344 0,5.2418 -1.50938,0 0,-1.39453 c -0.34454,0.55781 -0.77383,0.9707 -1.28789,1.23867 -0.51407,0.2625 -1.14297,0.39375 -1.88672,0.39375 -0.94063,0 -1.68984,-0.2625 -2.24765,-0.7875 -0.55235,-0.53047 -0.82852,-1.23867 -0.82852,-2.12461 0,-1.03359 0.34453,-1.81289 1.03359,-2.33789 0.69453,-0.525 1.72813,-0.7875 3.10079,-0.7875 l 2.1164,0 0,-0.14766 c -10e-6,-0.69452 -0.22969,-1.23046 -0.68906,-1.60781 -0.45391,-0.3828 -1.09376,-0.57421 -1.91953,-0.57422 -0.52501,10e-6 -1.03633,0.0629 -1.53399,0.18867 -0.49766,0.12579 -0.97617,0.31446 -1.43554,0.56602 l 0,-1.39453 c 0.55234,-0.21327 1.08827,-0.37187 1.60781,-0.47578 0.51953,-0.10937 1.02539,-0.16406 1.51758,-0.16407 1.3289,1e-5 2.32147,0.34454 2.97773,1.0336 0.65624,0.68907 0.98437,1.7336 0.98438,3.13359" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3439" + inkscape:connector-curvature="0" /><path + d="m 653.25269,309.49177 0,5.54531 -1.50937,0 0,-5.4961 c -1e-5,-0.86952 -0.16954,-1.5203 -0.5086,-1.95234 -0.33907,-0.43202 -0.84766,-0.64804 -1.52578,-0.64805 -0.81485,1e-5 -1.45742,0.25978 -1.92773,0.7793 -0.47032,0.51954 -0.70547,1.22774 -0.70547,2.12461 l 0,5.19258 -1.51758,0 0,-9.1875 1.51758,0 0,1.42734 c 0.36093,-0.55233 0.78476,-0.96522 1.27148,-1.23867 0.49219,-0.27343 1.0582,-0.41015 1.69805,-0.41016 1.05546,1e-5 1.8539,0.32814 2.39531,0.98438 0.5414,0.65079 0.8121,1.61055 0.81211,2.8793" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3441" + inkscape:connector-curvature="0" /><path + d="m 661.6937,302.78981 1.65704,0 0,12.24727 -1.65704,0 0,-12.24727" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3443" + inkscape:connector-curvature="0" /><path + d="m 674.21988,309.49177 0,5.54531 -1.50938,0 0,-5.4961 c 0,-0.86952 -0.16954,-1.5203 -0.50859,-1.95234 -0.33907,-0.43202 -0.84766,-0.64804 -1.52578,-0.64805 -0.81485,1e-5 -1.45743,0.25978 -1.92774,0.7793 -0.47031,0.51954 -0.70547,1.22774 -0.70547,2.12461 l 0,5.19258 -1.51757,0 0,-9.1875 1.51757,0 0,1.42734 c 0.36094,-0.55233 0.78477,-0.96522 1.27149,-1.23867 0.49218,-0.27343 1.0582,-0.41015 1.69805,-0.41016 1.05546,1e-5 1.85389,0.32814 2.39531,0.98438 0.5414,0.65079 0.8121,1.61055 0.81211,2.8793" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3445" + inkscape:connector-curvature="0" /><path + d="m 683.10386,306.12028 0,1.42735 c -0.42657,-0.21875 -0.86954,-0.38281 -1.3289,-0.49219 -0.45938,-0.10937 -0.93517,-0.16406 -1.42735,-0.16406 -0.74922,0 -1.3125,0.11485 -1.68984,0.34453 -0.37188,0.22969 -0.55782,0.57422 -0.55781,1.03359 -10e-6,0.35001 0.13398,0.62618 0.40195,0.82852 0.26796,0.19688 0.80664,0.38555 1.61601,0.56601 l 0.5168,0.11485 c 1.07187,0.22969 1.83203,0.55508 2.28047,0.97617 0.4539,0.41563 0.68085,0.99805 0.68086,1.74726 -10e-6,0.85313 -0.33907,1.52852 -1.01719,2.02618 -0.67266,0.49765 -1.59961,0.74648 -2.78086,0.74648 -0.49219,0 -1.00625,-0.0492 -1.54218,-0.14766 -0.53048,-0.093 -1.09102,-0.23515 -1.68165,-0.42656 l 0,-1.55859 c 0.55782,0.28984 1.10742,0.50859 1.64883,0.65625 0.54141,0.14219 1.07734,0.21328 1.60782,0.21328 0.71093,0 1.2578,-0.12031 1.64062,-0.36094 0.38281,-0.24609 0.57421,-0.59062 0.57422,-1.03359 -10e-6,-0.41016 -0.13946,-0.72461 -0.41836,-0.94336 -0.27344,-0.21875 -0.87774,-0.4293 -1.81289,-0.63164 l -0.525,-0.12305 c -0.93516,-0.19687 -1.61055,-0.49765 -2.02617,-0.90234 -0.41563,-0.41015 -0.62344,-0.9707 -0.62344,-1.68164 0,-0.86406 0.30625,-1.53125 0.91875,-2.00157 0.6125,-0.4703 1.48203,-0.70546 2.60859,-0.70547 0.55781,1e-5 1.08281,0.041 1.575,0.12305 0.49218,0.082 0.94609,0.20509 1.36172,0.36914" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3447" + inkscape:connector-curvature="0" /><path + d="m 687.50074,303.24098 0,2.6086 3.10898,0 0,1.17305 -3.10898,0 0,4.9875 c 0,0.74922 0.10117,1.23047 0.30352,1.44375 0.2078,0.21328 0.62616,0.31992 1.25507,0.31992 l 1.55039,0 0,1.26328 -1.55039,0 c -1.16484,0 -1.96875,-0.21602 -2.41171,-0.64805 -0.44298,-0.4375 -0.66446,-1.23047 -0.66446,-2.3789 l 0,-4.9875 -1.10742,0 0,-1.17305 1.10742,0 0,-2.6086 1.51758,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3449" + inkscape:connector-curvature="0" /><path + d="m 696.77848,310.41872 c -1.21954,0 -2.06446,0.13946 -2.53477,0.41836 -0.47031,0.27891 -0.70547,0.75469 -0.70547,1.42734 0,0.53594 0.175,0.9625 0.525,1.27969 0.35547,0.31172 0.83672,0.46758 1.44375,0.46758 0.83672,0 1.50664,-0.29531 2.00977,-0.88594 0.50858,-0.59609 0.76288,-1.38632 0.76289,-2.3707 l 0,-0.33633 -1.50117,0 m 3.01054,-0.62344 0,5.2418 -1.50937,0 0,-1.39453 c -0.34454,0.55781 -0.77384,0.9707 -1.28789,1.23867 -0.51407,0.2625 -1.14298,0.39375 -1.88672,0.39375 -0.94063,0 -1.68985,-0.2625 -2.24766,-0.7875 -0.55234,-0.53047 -0.82851,-1.23867 -0.82851,-2.12461 0,-1.03359 0.34453,-1.81289 1.03359,-2.33789 0.69453,-0.525 1.72812,-0.7875 3.10078,-0.7875 l 2.11641,0 0,-0.14766 c -10e-6,-0.69452 -0.2297,-1.23046 -0.68906,-1.60781 -0.45392,-0.3828 -1.09376,-0.57421 -1.91954,-0.57422 -0.525,10e-6 -1.03633,0.0629 -1.53398,0.18867 -0.49766,0.12579 -0.97617,0.31446 -1.43555,0.56602 l 0,-1.39453 c 0.55234,-0.21327 1.08828,-0.37187 1.60782,-0.47578 0.51952,-0.10937 1.02538,-0.16406 1.51757,-0.16407 1.3289,1e-5 2.32148,0.34454 2.97774,1.0336 0.65624,0.68907 0.98436,1.7336 0.98437,3.13359" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3451" + inkscape:connector-curvature="0" /><path + d="m 710.54333,309.49177 0,5.54531 -1.50938,0 0,-5.4961 c -10e-6,-0.86952 -0.16954,-1.5203 -0.50859,-1.95234 -0.33907,-0.43202 -0.84767,-0.64804 -1.52578,-0.64805 -0.81485,1e-5 -1.45743,0.25978 -1.92774,0.7793 -0.47031,0.51954 -0.70547,1.22774 -0.70547,2.12461 l 0,5.19258 -1.51758,0 0,-9.1875 1.51758,0 0,1.42734 c 0.36094,-0.55233 0.78476,-0.96522 1.27149,-1.23867 0.49218,-0.27343 1.0582,-0.41015 1.69804,-0.41016 1.05547,1e-5 1.8539,0.32814 2.39532,0.98438 0.54139,0.65079 0.8121,1.61055 0.81211,2.8793" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3453" + inkscape:connector-curvature="0" /><path + d="m 715.06325,303.24098 0,2.6086 3.10898,0 0,1.17305 -3.10898,0 0,4.9875 c -1e-5,0.74922 0.10117,1.23047 0.30351,1.44375 0.20781,0.21328 0.62617,0.31992 1.25508,0.31992 l 1.55039,0 0,1.26328 -1.55039,0 c -1.16485,0 -1.96875,-0.21602 -2.41172,-0.64805 -0.44297,-0.4375 -0.66445,-1.23047 -0.66445,-2.3789 l 0,-4.9875 -1.10742,0 0,-1.17305 1.10742,0 0,-2.6086 1.51758,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3455" + inkscape:connector-curvature="0" /><path + d="m 730.55074,303.91364 c -1.20313,1e-5 -2.16016,0.44845 -2.87109,1.34531 -0.70548,0.89689 -1.05821,2.11915 -1.05821,3.6668 0,1.54219 0.35273,2.76172 1.05821,3.65859 0.71093,0.89688 1.66796,1.34532 2.87109,1.34532 1.20312,0 2.15468,-0.44844 2.85469,-1.34532 0.70546,-0.89687 1.05819,-2.1164 1.0582,-3.65859 -10e-6,-1.54765 -0.35274,-2.76991 -1.0582,-3.6668 -0.70001,-0.89686 -1.65157,-1.3453 -2.85469,-1.34531 m 2.32148,10.90195 2.18203,2.38711 -2.00156,0 -1.81289,-1.96054 c -0.18047,0.0109 -0.31993,0.0191 -0.41836,0.0246 -0.093,0.005 -0.18321,0.008 -0.2707,0.008 -1.72266,0 -3.10079,-0.57422 -4.13438,-1.72266 -1.02812,-1.1539 -1.54218,-2.69609 -1.54218,-4.62656 0,-1.93593 0.51406,-3.47812 1.54218,-4.62656 1.03359,-1.1539 2.41172,-1.73085 4.13438,-1.73086 1.71718,10e-6 3.08983,0.57696 4.11797,1.73086 1.02811,1.14844 1.54217,2.69063 1.54219,4.62656 -2e-5,1.42188 -0.28713,2.63868 -0.86133,3.65039 -0.56876,1.01172 -1.39454,1.75821 -2.47735,2.23945" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3457" + inkscape:connector-curvature="0" /><path + d="m 738.58161,311.4113 0,-5.56172 1.50938,0 0,5.5043 c -1e-5,0.86953 0.16952,1.52304 0.50859,1.96054 0.33906,0.43204 0.84765,0.64805 1.52578,0.64805 0.81484,0 1.45742,-0.25976 1.92773,-0.7793 0.47578,-0.51953 0.71367,-1.22773 0.71368,-2.12461 l 0,-5.20898 1.50937,0 0,9.1875 -1.50937,0 0,-1.41094 c -0.36642,0.55781 -0.79298,0.97344 -1.27969,1.24688 -0.48126,0.26797 -1.0418,0.40195 -1.68164,0.40195 -1.05547,0 -1.85664,-0.32813 -2.40352,-0.98438 -0.54687,-0.65624 -0.82031,-1.61601 -0.82031,-2.87929" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3459" + inkscape:connector-curvature="0" /><path + d="m 752.96169,306.90778 c -0.80938,10e-6 -1.44922,0.3172 -1.91953,0.95156 -0.47032,0.62892 -0.70547,1.49298 -0.70547,2.59219 0,1.09922 0.23242,1.96602 0.69726,2.60039 0.47031,0.62891 1.11289,0.94336 1.92774,0.94336 0.8039,0 1.44101,-0.31718 1.91133,-0.95156 0.4703,-0.63437 0.70546,-1.49843 0.70547,-2.59219 -10e-6,-1.08827 -0.23517,-1.9496 -0.70547,-2.58398 -0.47032,-0.63984 -1.10743,-0.95976 -1.91133,-0.95977 m 0,-1.27969 c 1.31249,1e-5 2.34335,0.42658 3.09258,1.27969 0.74921,0.85313 1.12382,2.03438 1.12383,3.54375 -10e-6,1.50391 -0.37462,2.68516 -1.12383,3.54375 -0.74923,0.85313 -1.78009,1.27969 -3.09258,1.27969 -1.31797,0 -2.35157,-0.42656 -3.10078,-1.27969 -0.74375,-0.85859 -1.11563,-2.03984 -1.11563,-3.54375 0,-1.50937 0.37188,-2.69062 1.11563,-3.54375 0.74921,-0.85311 1.78281,-1.27968 3.10078,-1.27969" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3461" + inkscape:connector-curvature="0" /><path + d="m 761.16481,303.24098 0,2.6086 3.10898,0 0,1.17305 -3.10898,0 0,4.9875 c 0,0.74922 0.10117,1.23047 0.30352,1.44375 0.2078,0.21328 0.62616,0.31992 1.25507,0.31992 l 1.55039,0 0,1.26328 -1.55039,0 c -1.16484,0 -1.96875,-0.21602 -2.41171,-0.64805 -0.44298,-0.4375 -0.66446,-1.23047 -0.66446,-2.3789 l 0,-4.9875 -1.10742,0 0,-1.17305 1.10742,0 0,-2.6086 1.51758,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3463" + inkscape:connector-curvature="0" /><path + d="m 774.12574,310.06598 0,0.73829 -6.93984,0 c 0.0656,1.03906 0.37734,1.83203 0.93515,2.3789 0.56328,0.54141 1.34531,0.81211 2.3461,0.81211 0.57968,0 1.14023,-0.0711 1.68164,-0.21328 0.54687,-0.14219 1.08827,-0.35547 1.62422,-0.63984 l 0,1.42734 c -0.54142,0.22969 -1.09649,0.40469 -1.66524,0.525 -0.56875,0.12031 -1.14571,0.18047 -1.73086,0.18047 -1.46563,0 -2.62773,-0.42656 -3.48632,-1.27969 -0.85313,-0.85312 -1.27969,-2.00703 -1.27969,-3.46172 0,-1.5039 0.40468,-2.69608 1.21406,-3.57656 0.81484,-0.88593 1.91132,-1.3289 3.28945,-1.32891 1.23593,1e-5 2.21211,0.39923 2.92852,1.19766 0.72187,0.79298 1.0828,1.87305 1.08281,3.24023 m -1.50937,-0.44296 c -0.0109,-0.82578 -0.24337,-1.48476 -0.69727,-1.97696 -0.44844,-0.49218 -1.04454,-0.73827 -1.78828,-0.73828 -0.84219,10e-6 -1.51758,0.2379 -2.02617,0.71367 -0.50313,0.47579 -0.79297,1.14571 -0.86953,2.00977 l 5.38125,-0.008" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path3465" + inkscape:connector-curvature="0" /></g><g + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="text4803"><path + d="m 574.46167,3.1534802 c -0.73282,1.2578241 -1.27696,2.5019636 -1.63242,3.7324222 -0.35547,1.2304766 -0.53321,2.4773504 -0.5332,3.7406256 -1e-5,1.263285 0.17773,2.515628 0.5332,3.757031 0.36093,1.235938 0.90507,2.480077 1.63242,3.732422 l -1.3125,0 c -0.82032,-1.285157 -1.43555,-2.548437 -1.8457,-3.789844 -0.40469,-1.241403 -0.60704,-2.474605 -0.60703,-3.699609 -1e-5,-1.2195252 0.20234,-2.4472585 0.60703,-3.6832038 0.40468,-1.2359273 1.01992,-2.4992074 1.8457,-3.789844 l 1.3125,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4445" + inkscape:connector-curvature="0" /><path + d="m 579.03901,14.506606 5.78321,0 0,1.394531 -7.77657,0 0,-1.394531 c 0.62891,-0.650779 1.48477,-1.523044 2.56758,-2.616797 1.08828,-1.099214 1.77187,-1.807416 2.05078,-2.1246096 0.53047,-0.596087 0.89961,-1.0992116 1.10743,-1.5093751 0.21327,-0.4156169 0.31991,-0.8230384 0.31992,-1.2222657 -10e-6,-0.6507718 -0.2297,-1.18124 -0.68906,-1.5914063 -0.45392,-0.4101454 -1.04728,-0.6152234 -1.78008,-0.6152345 -0.51954,1.11e-5 -1.06915,0.090245 -1.64883,0.2707032 -0.57422,0.1804794 -1.18946,0.4539166 -1.8457,0.8203125 l 0,-1.6734376 c 0.66718,-0.2679568 1.29062,-0.4703004 1.87031,-0.6070313 0.57968,-0.1367063 1.11015,-0.2050656 1.59141,-0.2050781 1.26874,1.25e-5 2.28046,0.3171997 3.03515,0.9515626 0.75468,0.6343859 1.13202,1.4820414 1.13203,2.5429689 -10e-6,0.5031335 -0.0957,0.9816487 -0.28711,1.435547 -0.18594,0.4484446 -0.52774,0.9789128 -1.02539,1.5914063 -0.13672,0.1585997 -0.57149,0.6179737 -1.30429,1.3781247 -0.73282,0.754692 -1.76642,1.812894 -3.10079,3.17461" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4447" + inkscape:connector-curvature="0" /><path + d="m 587.85737,3.1534802 1.3125,0 c 0.82031,1.2906366 1.43281,2.5539167 1.8375,3.789844 0.41016,1.2359453 0.61523,2.4636786 0.61524,3.6832038 -10e-6,1.225004 -0.20508,2.458206 -0.61524,3.699609 -0.40469,1.241407 -1.01719,2.504687 -1.8375,3.789844 l -1.3125,0 c 0.72735,-1.252345 1.26875,-2.496484 1.62422,-3.732422 0.36094,-1.241403 0.54141,-2.493746 0.54141,-3.757031 0,-1.2632752 -0.18047,-2.510149 -0.54141,-3.7406256 -0.35547,-1.2304586 -0.89687,-2.4745981 -1.62422,-3.7324222" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4449" + inkscape:connector-curvature="0" /><path + d="m 601.72886,5.0155897 0,4.6019535 2.08359,0 c 0.77109,6.3e-6 1.36718,-0.1996029 1.78829,-0.5988282 0.42108,-0.3992115 0.63163,-0.967961 0.63164,-1.7062501 -1e-5,-0.7328032 -0.21056,-1.2988183 -0.63164,-1.698047 -0.42111,-0.3992081 -1.0172,-0.5988173 -1.78829,-0.5988282 l -2.08359,0 m -1.65703,-1.3617188 3.74062,0 c 1.37265,1.22e-5 2.40898,0.3117307 3.10899,0.9351563 0.70546,0.6179795 1.05819,1.5257911 1.0582,2.7234377 -10e-6,1.2086012 -0.35274,2.1218816 -1.0582,2.7398441 -0.70001,0.617974 -1.73634,0.926958 -3.10899,0.926953 l -2.08359,0 0,4.921875 -1.65703,0 0,-12.2472661" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4451" + inkscape:connector-curvature="0" /><path + d="m 615.19019,8.1245743 c -0.16954,-0.09843 -0.35548,-0.1695233 -0.55781,-0.2132812 -0.19688,-0.049211 -0.41563,-0.07382 -0.65625,-0.073828 -0.85313,8.1e-6 -1.50938,0.2789141 -1.96875,0.8367188 -0.45391,0.5523505 -0.68087,1.3480531 -0.68086,2.3871091 l 0,4.839844 -1.51758,0 0,-9.1875001 1.51758,0 0,1.4273439 c 0.31718,-0.5578042 0.73007,-0.9706945 1.23867,-1.238672 0.50859,-0.2734282 1.12656,-0.4101469 1.85391,-0.4101563 0.1039,9.4e-6 0.21874,0.00821 0.34453,0.024609 0.12577,0.010947 0.26522,0.030087 0.41836,0.057422 l 0.008,1.5503907" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4453" + inkscape:connector-curvature="0" /><path + d="m 624.28745,10.930043 0,0.738282 -6.93984,0 c 0.0656,1.039065 0.37734,1.832033 0.93516,2.378906 0.56327,0.541408 1.3453,0.81211 2.34609,0.812109 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08827,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54141,0.229688 -1.09649,0.404688 -1.66523,0.525 -0.56876,0.120313 -1.14571,0.180469 -1.73086,0.180469 -1.46563,0 -2.62774,-0.426562 -3.48633,-1.279688 -0.85313,-0.853123 -1.27969,-2.007028 -1.27969,-3.461719 0,-1.5038999 0.40469,-2.6960863 1.21406,-3.5765623 0.81484,-0.8859286 1.91133,-1.328897 3.28946,-1.3289064 1.23593,9.4e-6 2.2121,0.3992278 2.92851,1.1976564 0.72187,0.7929762 1.08281,1.8730533 1.08281,3.2402343 m -1.50937,-0.442969 c -0.011,-0.8257746 -0.24337,-1.4847583 -0.69727,-1.9769528 -0.44844,-0.4921796 -1.04453,-0.7382731 -1.78828,-0.7382813 -0.84219,8.2e-6 -1.51758,0.2378986 -2.02617,0.7136719 -0.50313,0.4757883 -0.79297,1.1457095 -0.86953,2.0097662 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4455" + inkscape:connector-curvature="0" /><path + d="m 626.01831,10.626528 4.42149,0 0,1.345312 -4.42149,0 0,-1.345312" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4457" + inkscape:connector-curvature="0" /><path + d="m 638.52808,4.7776991 c -1.20313,1.11e-5 -2.16016,0.4484482 -2.87109,1.3453126 -0.70548,0.8968839 -1.05821,2.1191484 -1.05821,3.6667971 0,1.5421922 0.35273,2.7617222 1.05821,3.6585942 0.71093,0.896876 1.66796,1.345314 2.87109,1.345312 1.20312,2e-6 2.15468,-0.448436 2.85469,-1.345312 0.70546,-0.896872 1.05819,-2.116402 1.0582,-3.6585942 -10e-6,-1.5476487 -0.35274,-2.7699132 -1.0582,-3.6667971 -0.70001,-0.8968644 -1.65157,-1.3453015 -2.85469,-1.3453126 m 2.32148,10.9019539 2.18204,2.387109 -2.00157,0 -1.81289,-1.960547 c -0.18047,0.01094 -0.31993,0.01914 -0.41836,0.02461 -0.093,0.0055 -0.18321,0.0082 -0.2707,0.0082 -1.72266,0 -3.10079,-0.574218 -4.13438,-1.722656 -1.02812,-1.153904 -1.54218,-2.69609 -1.54218,-4.6265632 0,-1.9359296 0.51406,-3.4781156 1.54218,-4.6265628 1.03359,-1.1538944 2.41172,-1.730847 4.13438,-1.7308595 1.71718,1.25e-5 3.08983,0.5769651 4.11797,1.7308595 1.02811,1.1484472 1.54217,2.6906332 1.54219,4.6265628 -2e-5,1.4218802 -0.28713,2.6386752 -0.86133,3.6503912 -0.56876,1.01172 -1.39454,1.758204 -2.47735,2.239453" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4459" + inkscape:connector-curvature="0" /><path + d="m 646.57535,12.275356 0,-5.5617193 1.50937,0 0,5.5042973 c 0,0.869534 0.16953,1.523049 0.5086,1.960547 0.33905,0.432033 0.84765,0.648048 1.52578,0.648047 0.81483,1e-6 1.45741,-0.259764 1.92773,-0.779297 0.47578,-0.519529 0.71367,-1.227731 0.71367,-2.12461 l 0,-5.2089843 1.50938,0 0,9.1875003 -1.50938,0 0,-1.410937 c -0.36641,0.557813 -0.79297,0.973438 -1.27968,1.246875 -0.48126,0.267969 -1.04181,0.401953 -1.68165,0.401953 -1.05547,0 -1.85664,-0.328125 -2.40351,-0.984375 -0.54688,-0.656249 -0.82031,-1.616013 -0.82031,-2.879297" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4461" + inkscape:connector-curvature="0" /><path + d="m 660.95542,7.7718399 c -0.80937,8.2e-6 -1.44922,0.3171954 -1.91953,0.9515626 -0.47031,0.6289128 -0.70547,1.4929745 -0.70547,2.5921875 0,1.099222 0.23242,1.966019 0.69727,2.600391 0.47031,0.628908 1.11289,0.94336 1.92773,0.943359 0.80391,1e-6 1.44101,-0.317186 1.91133,-0.951562 0.47031,-0.634373 0.70546,-1.498434 0.70547,-2.592188 -10e-6,-1.088275 -0.23516,-1.9496028 -0.70547,-2.5839844 -0.47032,-0.639836 -1.10742,-0.9597575 -1.91133,-0.9597657 m 0,-1.2796876 c 1.3125,9.4e-6 2.34336,0.4265715 3.09258,1.2796876 0.74921,0.8531324 1.12382,2.0343813 1.12383,3.5437501 -10e-6,1.50391 -0.37462,2.685158 -1.12383,3.54375 -0.74922,0.853126 -1.78008,1.279688 -3.09258,1.279688 -1.31797,0 -2.35156,-0.426562 -3.10078,-1.279688 -0.74375,-0.858592 -1.11562,-2.03984 -1.11562,-3.54375 0,-1.5093688 0.37187,-2.6906177 1.11562,-3.5437501 0.74922,-0.8531161 1.78281,-1.2796782 3.10078,-1.2796876" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4463" + inkscape:connector-curvature="0" /><path + d="m 669.15855,4.1050428 0,2.6085939 3.10899,0 0,1.173047 -3.10899,0 0,4.9875003 c 0,0.749221 0.10117,1.230471 0.30352,1.44375 0.20781,0.213283 0.62617,0.319923 1.25508,0.319922 l 1.55039,0 0,1.263281 -1.55039,0 c -1.16485,0 -1.96875,-0.216015 -2.41172,-0.648047 -0.44297,-0.437499 -0.66446,-1.230467 -0.66445,-2.378906 l 0,-4.9875003 -1.10743,0 0,-1.173047 1.10743,0 0,-2.6085939 1.51757,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4465" + inkscape:connector-curvature="0" /><path + d="m 682.11949,10.930043 0,0.738282 -6.93984,0 c 0.0656,1.039065 0.37734,1.832033 0.93516,2.378906 0.56327,0.541408 1.3453,0.81211 2.34609,0.812109 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08827,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54142,0.229688 -1.09649,0.404688 -1.66524,0.525 -0.56875,0.120313 -1.1457,0.180469 -1.73085,0.180469 -1.46563,0 -2.62774,-0.426562 -3.48633,-1.279688 -0.85313,-0.853123 -1.27969,-2.007028 -1.27969,-3.461719 0,-1.5038999 0.40469,-2.6960863 1.21406,-3.5765623 0.81484,-0.8859286 1.91133,-1.328897 3.28946,-1.3289064 1.23593,9.4e-6 2.2121,0.3992278 2.92851,1.1976564 0.72187,0.7929762 1.0828,1.8730533 1.08281,3.2402343 m -1.50937,-0.442969 c -0.011,-0.8257746 -0.24337,-1.4847583 -0.69727,-1.9769528 -0.44844,-0.4921796 -1.04453,-0.7382731 -1.78828,-0.7382813 -0.84219,8.2e-6 -1.51758,0.2378986 -2.02617,0.7136719 -0.50313,0.4757883 -0.79297,1.1457095 -0.86953,2.0097662 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4467" + inkscape:connector-curvature="0" /><path + d="m 699.18199,4.5972303 0,1.7472658 c -0.55782,-0.5195212 -1.15392,-0.9078021 -1.78828,-1.1648439 -0.62892,-0.2570202 -1.29884,-0.3855357 -2.00977,-0.3855469 -1.4,1.12e-5 -2.47188,0.4293076 -3.21562,1.2878908 -0.74375,0.853134 -1.11563,2.0890703 -1.11563,3.7078127 0,1.6132862 0.37188,2.8492222 1.11563,3.7078132 0.74374,0.853126 1.81562,1.279688 3.21562,1.279687 0.71093,10e-7 1.38085,-0.128514 2.00977,-0.385547 0.63436,-0.257029 1.23046,-0.64531 1.78828,-1.164844 l 0,1.73086 c -0.5797,0.39375 -1.19493,0.689063 -1.8457,0.885937 -0.64532,0.196875 -1.32892,0.295313 -2.05078,0.295313 -1.85392,0 -3.31407,-0.566015 -4.38047,-1.698047 -1.06641,-1.137497 -1.59961,-2.687887 -1.59961,-4.6511722 0,-1.968742 0.5332,-3.5191312 1.59961,-4.6511722 1.0664,-1.1374882 2.52655,-1.7062376 4.38047,-1.7062501 0.7328,1.25e-5 1.42186,0.09845 2.06718,0.2953125 0.65078,0.1914183 1.26054,0.4812617 1.8293,0.8695313" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4469" + inkscape:connector-curvature="0" /><path + d="m 709.32926,10.355824 0,5.545313 -1.50937,0 0,-5.496094 c -10e-6,-0.8695247 -0.16954,-1.5203054 -0.5086,-1.9523437 -0.33907,-0.4320234 -0.84766,-0.6480388 -1.52578,-0.6480469 -0.81485,8.1e-6 -1.45743,0.2597735 -1.92773,0.779297 -0.47032,0.519538 -0.70548,1.2277405 -0.70547,2.1246096 l 0,5.192578 -1.51758,0 0,-12.764063 1.51758,0 0,5.0039066 c 0.36093,-0.5523355 0.78476,-0.9652257 1.27148,-1.238672 0.49218,-0.2734282 1.0582,-0.4101469 1.69805,-0.4101563 1.05546,9.4e-6 1.8539,0.3281341 2.39531,0.9843751 0.5414,0.6507891 0.8121,1.6105538 0.81211,2.8792966" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4471" + inkscape:connector-curvature="0" /><path + d="m 720.21481,10.930043 0,0.738282 -6.93985,0 c 0.0656,1.039065 0.37734,1.832033 0.93516,2.378906 0.56328,0.541408 1.34531,0.81211 2.34609,0.812109 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08828,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54141,0.229688 -1.09649,0.404688 -1.66523,0.525 -0.56876,0.120313 -1.14571,0.180469 -1.73086,0.180469 -1.46563,0 -2.62774,-0.426562 -3.48633,-1.279688 -0.85313,-0.853123 -1.27969,-2.007028 -1.27969,-3.461719 0,-1.5038999 0.40469,-2.6960863 1.21407,-3.5765623 0.81484,-0.8859286 1.91132,-1.328897 3.28945,-1.3289064 1.23593,9.4e-6 2.2121,0.3992278 2.92852,1.1976564 0.72186,0.7929762 1.0828,1.8730533 1.08281,3.2402343 m -1.50938,-0.442969 c -0.0109,-0.8257746 -0.24336,-1.4847583 -0.69726,-1.9769528 -0.44845,-0.4921796 -1.04454,-0.7382731 -1.78828,-0.7382813 -0.8422,8.2e-6 -1.51759,0.2378986 -2.02618,0.7136719 -0.50312,0.4757883 -0.79297,1.1457095 -0.86953,2.0097662 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4473" + inkscape:connector-curvature="0" /><path + d="m 729.30387,7.0663711 0,1.4109376 c -0.42657,-0.2351486 -0.85587,-0.4101484 -1.28789,-0.525 -0.42657,-0.1203045 -0.8586,-0.1804606 -1.29609,-0.1804688 -0.97892,8.2e-6 -1.73907,0.3117266 -2.28047,0.9351563 -0.54141,0.6179754 -0.81212,1.4875058 -0.81211,2.6085938 -10e-6,1.121097 0.2707,1.993362 0.81211,2.616797 0.5414,0.61797 1.30155,0.926954 2.28047,0.926953 0.43749,1e-6 0.86952,-0.05742 1.29609,-0.172265 0.43202,-0.120311 0.86132,-0.298046 1.28789,-0.533203 l 0,1.394531 c -0.4211,0.196875 -0.8586,0.344531 -1.3125,0.442969 -0.44844,0.09844 -0.92696,0.147656 -1.43555,0.147656 -1.38359,0 -2.48281,-0.434765 -3.29765,-1.304297 -0.81485,-0.869529 -1.22227,-2.042575 -1.22227,-3.519141 0,-1.4984314 0.41016,-2.6769459 1.23047,-3.535547 0.82578,-0.8585848 1.95507,-1.2878813 3.38789,-1.2878907 0.46484,9.4e-6 0.91874,0.049228 1.36172,0.1476563 0.44296,0.092978 0.87226,0.2351653 1.28789,0.4265625" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4475" + inkscape:connector-curvature="0" /><path + d="m 731.88786,3.137074 1.51758,0 0,7.538672 4.50351,-3.9621093 1.92774,0 -4.87266,4.2984383 5.07773,4.889062 -1.96875,0 -4.66757,-4.487109 0,4.487109 -1.51758,0 0,-12.764063" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4477" + inkscape:connector-curvature="0" /><path + d="m 741.69059,3.137074 1.50938,0 0,12.764063 -1.50938,0 0,-12.764063" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4479" + inkscape:connector-curvature="0" /><path + d="m 746.34996,6.7136367 1.50937,0 0,9.1875003 -1.50937,0 0,-9.1875003 m 0,-3.5765627 1.50937,0 0,1.9113282 -1.50937,0 0,-1.9113282" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4481" + inkscape:connector-curvature="0" /><path + d="m 756.86637,6.9843399 0,1.4273438 c -0.42657,-0.2187423 -0.86954,-0.3828046 -1.32891,-0.4921875 -0.45938,-0.1093669 -0.93516,-0.1640544 -1.42734,-0.1640625 -0.74923,8.1e-6 -1.31251,0.1148518 -1.68985,0.3445312 -0.37187,0.2296951 -0.55781,0.5742261 -0.55781,1.0335939 0,0.3500064 0.13398,0.626178 0.40195,0.8285156 0.26797,0.1968806 0.80664,0.3855526 1.61602,0.5660156 l 0.5168,0.114844 c 1.07187,0.229692 1.83202,0.555083 2.28047,0.976172 0.45389,0.415629 0.68085,0.99805 0.68085,1.747266 0,0.853126 -0.33907,1.528516 -1.01718,2.026172 -0.67267,0.497656 -1.59962,0.746484 -2.78086,0.746484 -0.49219,0 -1.00626,-0.04922 -1.54219,-0.147656 -0.53047,-0.09297 -1.09102,-0.235156 -1.68164,-0.426563 l 0,-1.558594 c 0.55781,0.289846 1.10742,0.508596 1.64883,0.65625 0.5414,0.142189 1.07734,0.213283 1.60781,0.213282 0.71093,10e-7 1.25781,-0.120312 1.64063,-0.360938 0.3828,-0.246092 0.57421,-0.590623 0.57421,-1.033594 0,-0.410153 -0.13946,-0.724606 -0.41836,-0.943359 -0.27344,-0.218747 -0.87774,-0.429293 -1.81289,-0.631641 l -0.525,-0.123047 c -0.93516,-0.19687 -1.61055,-0.497651 -2.02617,-0.902343 -0.41562,-0.410151 -0.62344,-0.9706977 -0.62344,-1.6816412 0,-0.864055 0.30625,-1.5312419 0.91875,-2.0015627 0.6125,-0.4703033 1.48203,-0.7054594 2.6086,-0.7054688 0.55781,9.4e-6 1.08281,0.041025 1.575,0.1230469 0.49218,0.08204 0.94609,0.2050872 1.36172,0.3691407" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4483" + inkscape:connector-curvature="0" /><path + d="m 761.26324,4.1050428 0,2.6085939 3.10899,0 0,1.173047 -3.10899,0 0,4.9875003 c 0,0.749221 0.10117,1.230471 0.30352,1.44375 0.20781,0.213283 0.62617,0.319923 1.25508,0.319922 l 1.55039,0 0,1.263281 -1.55039,0 c -1.16485,0 -1.96875,-0.216015 -2.41172,-0.648047 -0.44297,-0.437499 -0.66445,-1.230467 -0.66445,-2.378906 l 0,-4.9875003 -1.10743,0 0,-1.173047 1.10743,0 0,-2.6085939 1.51757,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4485" + inkscape:connector-curvature="0" /></g><g + transform="matrix(0.80000001,0,0,0.80000001,118.01204,0.26753544)" + id="g4805"><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,55.710999 12.757,0 0,12.755999 -12.757,0 z" + id="rect4807" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,78.594002 12.757,0 0,12.755999 -12.757,0 z" + id="rect4809" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,101.477 12.757,0 0,12.756 -12.757,0 z" + id="rect4811" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,124.359 12.757,0 0,12.756 -12.757,0 z" + id="rect4813" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,147.242 12.757,0 0,12.756 -12.757,0 z" + id="rect4815" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,170.12399 12.757,0 0,12.756 -12.757,0 z" + id="rect4817" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,193.007 12.757,0 0,12.756 -12.757,0 z" + id="rect4819" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,215.89 12.757,0 0,12.756 -12.757,0 z" + id="rect4821" + inkscape:connector-curvature="0" /><path + style="fill:none;stroke:#f6921e;stroke-width:1.41729999" + d="m 564.05103,238.772 12.757,0 0,12.756 -12.757,0 z" + id="rect4825" + inkscape:connector-curvature="0" /></g><g + style="font-size:9.60000038px" + id="text4831-2"><path + d="m -204.23171,331.74354 6.90703,0 0,0.92969 -2.89844,0 0,7.23516 -1.11015,0 0,-7.23516 -2.89844,0 0,-0.92969" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4499" + inkscape:connector-curvature="0" /><path + d="m -195.8153,334.48886 c -0.53959,0 -0.96615,0.21146 -1.27969,0.63437 -0.31355,0.41928 -0.47032,0.99532 -0.47031,1.72813 -1e-5,0.73281 0.15494,1.31067 0.46484,1.73359 0.31354,0.41927 0.74192,0.62891 1.28516,0.6289 0.53593,1e-5 0.96067,-0.21145 1.27421,-0.63437 0.31354,-0.42291 0.47031,-0.99896 0.47032,-1.72812 -1e-5,-0.72552 -0.15678,-1.29974 -0.47032,-1.72266 -0.31354,-0.42656 -0.73828,-0.63984 -1.27421,-0.63984 m 0,-0.85313 c 0.87499,10e-6 1.56223,0.28438 2.06171,0.85313 0.49948,0.56875 0.74922,1.35625 0.74922,2.3625 0,1.0026 -0.24974,1.7901 -0.74922,2.36249 -0.49948,0.56876 -1.18672,0.85313 -2.06171,0.85313 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85313 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.36249 0,-1.00625 0.24791,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4501" + inkscape:connector-curvature="0" /><path + d="m -187.72155,331.74354 5.1625,0 0,0.92969 -4.05782,0 0,2.41719 3.88828,0 0,0.92969 -3.88828,0 0,2.95859 4.15625,0 0,0.92969 -5.26093,0 0,-8.16485" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4503" + inkscape:connector-curvature="0" /><path + d="m -175.5864,336.21151 0,3.69688 -1.00625,0 0,-3.66407 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22605,-0.28801 -0.56511,-0.43202 -1.01719,-0.43203 -0.54323,10e-6 -0.97161,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.81849 -0.47032,1.41641 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.24063,-0.36822 0.52318,-0.64348 0.84766,-0.82578 0.32812,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4505" + inkscape:connector-curvature="0" /><path + d="m -169.53796,336.77479 c -1e-5,-0.72916 -0.15131,-1.29426 -0.45391,-1.69531 -0.29896,-0.40104 -0.72005,-0.60156 -1.26328,-0.60156 -0.53958,0 -0.96068,0.20052 -1.26328,0.60156 -0.29896,0.40105 -0.44844,0.96615 -0.44844,1.69531 0,0.72553 0.14948,1.28881 0.44844,1.68985 0.3026,0.40104 0.7237,0.60156 1.26328,0.60156 0.54323,0 0.96432,-0.20052 1.26328,-0.60156 0.3026,-0.40104 0.4539,-0.96432 0.45391,-1.68985 m 1.00625,2.37344 c -1e-5,1.04271 -0.23152,1.81745 -0.69453,2.32422 -0.46303,0.51041 -1.17214,0.76562 -2.12735,0.76562 -0.35364,0 -0.68724,-0.0273 -1.00078,-0.082 -0.31354,-0.051 -0.61797,-0.13125 -0.91328,-0.24062 l 0,-0.97891 c 0.29531,0.16042 0.58698,0.27891 0.875,0.35547 0.28802,0.0766 0.58151,0.11484 0.88047,0.11484 0.65989,0 1.1539,-0.17317 1.48203,-0.51953 0.32812,-0.34271 0.49218,-0.86224 0.49219,-1.55859 l 0,-0.49766 c -0.20782,0.36094 -0.47396,0.63073 -0.79844,0.80938 -0.32448,0.17864 -0.71276,0.26797 -1.16484,0.26797 -0.75105,0 -1.35625,-0.2862 -1.81563,-0.8586 -0.45937,-0.57239 -0.68906,-1.33072 -0.68906,-2.275 0,-0.94791 0.22969,-1.70807 0.68906,-2.28047 0.45938,-0.57239 1.06458,-0.85858 1.81563,-0.85859 0.45208,10e-6 0.84036,0.0893 1.16484,0.26797 0.32448,0.17865 0.59062,0.44844 0.79844,0.80937 l 0,-0.92968 1.00625,0 0,5.36484" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4507" + inkscape:connector-curvature="0" /><path + d="m -162.90984,334.72401 c -0.11302,-0.0656 -0.23698,-0.11301 -0.37187,-0.14219 -0.13125,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56875,0 -1.00625,0.18594 -1.3125,0.55781 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.5914 l 0,3.22657 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0839,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.03359" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4509" + inkscape:connector-curvature="0" /><path + d="m -159.05984,336.82948 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31354,0.18594 -0.47031,0.50312 -0.47031,0.95156 0,0.35729 0.11666,0.64167 0.35,0.85312 0.23697,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33984,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41562 0,3.49453 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55234,-0.82578 -0.55234,-1.41641 0,-0.68906 0.22968,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06719,-0.525 l 1.41093,0 0,-0.0984 c 0,-0.46301 -0.15313,-0.82031 -0.45937,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38281 -0.35,0 -0.69089,0.0419 -1.02265,0.12578 -0.33178,0.0839 -0.65079,0.20964 -0.95704,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31718 0.34635,-0.0729 0.68359,-0.10937 1.01172,-0.10938 0.88593,1e-5 1.54765,0.22969 1.98515,0.68906 0.4375,0.45938 0.65625,1.15574 0.65625,2.08907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4511" + inkscape:connector-curvature="0" /><path + d="m -155.69655,333.78339 1.0664,0 1.91406,5.14062 1.91407,-5.14062 1.0664,0 -2.29687,6.125 -1.36719,0 -2.29687,-6.125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4513" + inkscape:connector-curvature="0" /><path + d="m -143.10749,336.59432 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89687,0.54141 1.56407,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37918,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75183,-0.28437 -2.32422,-0.85313 -0.56875,-0.56874 -0.85313,-1.33801 -0.85312,-2.30781 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49218 -0.56146,0 -1.01172,0.15859 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4515" + inkscape:connector-curvature="0" /><path + d="m -135.10671,336.82948 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31355,0.18594 -0.47032,0.50312 -0.47031,0.95156 -1e-5,0.35729 0.11666,0.64167 0.35,0.85312 0.23697,0.20782 0.55781,0.31172 0.9625,0.31172 0.5578,0 1.00442,-0.19687 1.33984,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41562 0,3.49453 -1.00625,0 0,-0.92969 c -0.22969,0.37187 -0.51589,0.64713 -0.85859,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.35365 -0.55234,-0.82578 -0.55234,-1.41641 0,-0.68906 0.22968,-1.20859 0.68906,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06719,-0.525 l 1.41093,0 0,-0.0984 c 0,-0.46301 -0.15313,-0.82031 -0.45937,-1.07187 -0.30261,-0.25521 -0.72917,-0.38281 -1.27969,-0.38281 -0.35,0 -0.69089,0.0419 -1.02266,0.12578 -0.33177,0.0839 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31718 0.34635,-0.0729 0.68359,-0.10937 1.01172,-0.10938 0.88593,1e-5 1.54765,0.22969 1.98515,0.68906 0.4375,0.45938 0.65625,1.15574 0.65625,2.08907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4517" + inkscape:connector-curvature="0" /><path + d="m -127.41218,331.74354 1.10469,0 0,7.23516 3.97578,0 0,0.92969 -5.08047,0 0,-8.16485" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4519" + inkscape:connector-curvature="0" /><path + d="m -121.22155,333.78339 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4521" + inkscape:connector-curvature="0" /><path + d="m -113.0239,336.21151 0,3.69688 -1.00625,0 0,-3.66407 c -10e-6,-0.57968 -0.11303,-1.01353 -0.33906,-1.30156 -0.22605,-0.28801 -0.56511,-0.43202 -1.01719,-0.43203 -0.54323,10e-6 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.24062,-0.36822 0.52317,-0.64348 0.84766,-0.82578 0.32812,-0.18229 0.70546,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59687,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4523" + inkscape:connector-curvature="0" /><path + d="m -105.76687,336.59432 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89688,0.54141 1.56407,0.5414 0.38645,1e-5 0.76015,-0.0474 1.12109,-0.14218 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15312 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97709,0 -1.75182,-0.28437 -2.32422,-0.85313 -0.56875,-0.56874 -0.85312,-1.33801 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47474,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49218 -0.56146,0 -1.01172,0.15859 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.7638 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4525" + inkscape:connector-curvature="0" /><path + d="m -103.85828,338.51932 1.15391,0 0,1.38907 -1.15391,0 0,-1.38907 m 0,-4.40234 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4527" + inkscape:connector-curvature="0" /><path + d="m -198.20515,345.45151 0,1.07735 c -0.41927,-0.20052 -0.81485,-0.35 -1.18672,-0.44844 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14766 -0.60157,1e-5 -1.06641,0.11668 -1.39453,0.35 -0.32448,0.23334 -0.48672,0.56511 -0.48672,0.99532 0,0.36094 0.10755,0.63438 0.32266,0.82031 0.21874,0.1823 0.63072,0.32995 1.23593,0.44297 l 0.66719,0.13672 c 0.82395,0.15677 1.43098,0.43385 1.82109,0.83125 0.39375,0.39375 0.59062,0.92239 0.59063,1.58593 -1e-5,0.79115 -0.26615,1.39089 -0.79844,1.79922 -0.52865,0.40834 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0437 -1.23593,-0.13125 -0.43386,-0.0875 -0.88412,-0.21692 -1.35078,-0.38828 l 0,-1.1375 c 0.44843,0.25156 0.88775,0.44115 1.31796,0.56875 0.43021,0.12761 0.85313,0.19141 1.26875,0.19141 0.63073,0 1.11745,-0.12396 1.46016,-0.37188 0.3427,-0.24791 0.51406,-0.60156 0.51406,-1.06094 0,-0.40103 -0.12396,-0.71458 -0.37187,-0.94062 -0.24428,-0.22604 -0.64714,-0.39557 -1.2086,-0.50859 l -0.67265,-0.13125 c -0.82396,-0.16406 -1.42006,-0.42109 -1.78828,-0.7711 -0.36823,-0.34999 -0.55235,-0.83671 -0.55235,-1.46015 0,-0.72187 0.25339,-1.29062 0.76016,-1.70625 0.51041,-0.41562 1.21224,-0.62343 2.10547,-0.62344 0.38281,1e-5 0.77291,0.0346 1.17031,0.10391 0.39739,0.0693 0.8039,0.17318 1.21953,0.31171" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4529" + inkscape:connector-curvature="0" /><path + d="m -195.03874,345.48433 0,1.73906 2.07265,0 0,0.78203 -2.07265,0 0,3.325 c 0,0.49948 0.0674,0.82031 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29532,-0.29167 -0.44297,-0.82031 -0.44297,-1.58594 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73906 1.01172,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4531" + inkscape:connector-curvature="0" /><path + d="m -188.08796,348.16401 c -0.11303,-0.0656 -0.23698,-0.11301 -0.37188,-0.14218 -0.13125,-0.0328 -0.27708,-0.0492 -0.4375,-0.0492 -0.56875,0 -1.00625,0.18594 -1.3125,0.55781 -0.3026,0.36823 -0.4539,0.8987 -0.4539,1.59141 l 0,3.22656 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21145,-0.37187 0.48671,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22968,0.0164 0.0839,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.03359" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4533" + inkscape:connector-curvature="0" /><path + d="m -184.87781,347.92886 c -0.53958,0 -0.96614,0.21146 -1.27968,0.63437 -0.31355,0.41928 -0.47032,0.99532 -0.47031,1.72813 -1e-5,0.73281 0.15494,1.31068 0.46484,1.73359 0.31354,0.41927 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96068,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47032,-1.72812 -1e-5,-0.72552 -0.15678,-1.29974 -0.47032,-1.72266 -0.31354,-0.42656 -0.73828,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.875,10e-6 1.56224,0.28438 2.06172,0.85313 0.49948,0.56875 0.74922,1.35625 0.74922,2.3625 0,1.0026 -0.24974,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87864,0 -1.56771,-0.28437 -2.06718,-0.85312 -0.49584,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24791,-1.79375 0.74375,-2.3625 0.49947,-0.56875 1.18854,-0.85312 2.06718,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4535" + inkscape:connector-curvature="0" /><path + d="m -180.43171,344.83901 1.01172,0 0,5.02578 3.00234,-2.6414 1.28516,0 -3.24844,2.86562 3.38516,3.25938 -1.3125,0 -3.11172,-2.99141 0,2.99141 -1.01172,0 0,-8.50938" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4537" + inkscape:connector-curvature="0" /><path + d="m -169.05124,350.03433 0,0.49218 -4.62656,0 c 0.0437,0.69271 0.25156,1.22136 0.62343,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38646,0 0.76016,-0.0474 1.1211,-0.14219 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15313 -0.73099,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85313,-1.33802 -0.85312,-2.30782 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26615 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16016 m -1.00625,-0.29532 c -0.007,-0.55051 -0.16225,-0.98984 -0.46485,-1.31796 -0.29896,-0.32812 -0.69635,-0.49219 -1.19218,-0.49219 -0.56147,0 -1.01173,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4539" + inkscape:connector-curvature="0" /><path + d="m -159.42624,347.45855 0,0.94062 c -0.28438,-0.15677 -0.57058,-0.27343 -0.8586,-0.35 -0.28437,-0.0802 -0.57239,-0.12031 -0.86406,-0.12031 -0.6526,0 -1.15938,0.20782 -1.52031,0.62344 -0.36094,0.41198 -0.54141,0.99167 -0.54141,1.73906 0,0.7474 0.18047,1.32891 0.54141,1.74453 0.36093,0.41198 0.86771,0.61797 1.52031,0.61797 0.29167,0 0.57969,-0.0383 0.86406,-0.11485 0.28802,-0.0802 0.57422,-0.19869 0.8586,-0.35547 l 0,0.92969 c -0.28074,0.13125 -0.5724,0.22969 -0.875,0.29531 -0.29896,0.0656 -0.61797,0.0984 -0.95703,0.0984 -0.9224,0 -1.65521,-0.28984 -2.19844,-0.86953 -0.54323,-0.57969 -0.81484,-1.36172 -0.81484,-2.34609 0,-0.99896 0.27343,-1.78463 0.82031,-2.35703 0.55052,-0.57239 1.30338,-0.85859 2.25859,-0.8586 0.30989,10e-6 0.6125,0.0328 0.90781,0.0984 0.29531,0.062 0.58151,0.15678 0.8586,0.28438" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4541" + inkscape:connector-curvature="0" /><path + d="m -155.29187,347.92886 c -0.53959,0 -0.96615,0.21146 -1.27969,0.63437 -0.31354,0.41928 -0.47031,0.99532 -0.47031,1.72813 0,0.73281 0.15495,1.31068 0.46484,1.73359 0.31354,0.41927 0.74193,0.62891 1.28516,0.62891 0.53593,0 0.96067,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47031,-1.72812 0,-0.72552 -0.15677,-1.29974 -0.47031,-1.72266 -0.31355,-0.42656 -0.73829,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.875,10e-6 1.56224,0.28438 2.06172,0.85313 0.49947,0.56875 0.74921,1.35625 0.74922,2.3625 -1e-5,1.0026 -0.24975,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4543" + inkscape:connector-curvature="0" /><path + d="m -150.81843,344.83901 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4545" + inkscape:connector-curvature="0" /><path + d="m -145.33874,347.92886 c -0.53959,0 -0.96615,0.21146 -1.27969,0.63437 -0.31355,0.41928 -0.47032,0.99532 -0.47031,1.72813 -1e-5,0.73281 0.15494,1.31068 0.46484,1.73359 0.31354,0.41927 0.74192,0.62891 1.28516,0.62891 0.53593,0 0.96067,-0.21146 1.27421,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47032,-1.72812 -1e-5,-0.72552 -0.15678,-1.29974 -0.47032,-1.72266 -0.31354,-0.42656 -0.73828,-0.63984 -1.27421,-0.63984 m 0,-0.85313 c 0.87499,10e-6 1.56223,0.28438 2.06171,0.85313 0.49948,0.56875 0.74922,1.35625 0.74922,2.3625 0,1.0026 -0.24974,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06171,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49584,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24791,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4547" + inkscape:connector-curvature="0" /><path + d="m -137.31609,348.16401 c -0.11302,-0.0656 -0.23698,-0.11301 -0.37187,-0.14218 -0.13126,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56876,0 -1.00626,0.18594 -1.3125,0.55781 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.59141 l 0,3.22656 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.82578 0.33906,-0.18229 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22969,0.0164 0.0839,0.007 0.17681,0.0201 0.2789,0.0383 l 0.005,1.03359" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4549" + inkscape:connector-curvature="0" /><path + d="m -136.17859,351.95933 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906 m 0,-4.40235 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4551" + inkscape:connector-curvature="0" /><path + d="m -125.15906,349.52026 c 0.23698,0.0802 0.46667,0.25157 0.68907,0.51407 0.22603,0.2625 0.45207,0.62344 0.67812,1.08281 l 1.1211,2.23125 -1.18672,0 -1.04453,-2.09453 c -0.2698,-0.54687 -0.5323,-0.90963 -0.7875,-1.08828 -0.25157,-0.17865 -0.5961,-0.26797 -1.0336,-0.26797 l -1.20312,0 0,3.45078 -1.10469,0 0,-8.16484 2.49375,0 c 0.93333,0 1.62968,0.19506 2.08906,0.58515 0.45937,0.39011 0.68906,0.97891 0.68906,1.76641 0,0.51407 -0.12031,0.94063 -0.36093,1.27968 -0.23699,0.33907 -0.58334,0.57423 -1.03907,0.70547 m -2.76718,-3.4289 0,2.89843 1.38906,0 c 0.53229,10e-6 0.93333,-0.12213 1.20312,-0.3664 0.27344,-0.24791 0.41015,-0.61067 0.41016,-1.08828 -1e-5,-0.4776 -0.13672,-0.83671 -0.41016,-1.07735 -0.26979,-0.24426 -0.67083,-0.3664 -1.20312,-0.3664 l -1.38906,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4553" + inkscape:connector-curvature="0" /><path + d="m -116.54031,350.03433 0,0.49218 -4.62656,0 c 0.0438,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38645,0 0.76015,-0.0474 1.12109,-0.14219 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42656 l 0,0.95156 c -0.36095,0.15313 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85312,-1.33802 -0.85312,-2.30782 0,-1.0026 0.26979,-1.79739 0.80937,-2.38437 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,10e-6 1.47474,0.26615 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16016 m -1.00625,-0.29532 c -0.007,-0.55051 -0.16224,-0.98984 -0.46484,-1.31796 -0.29896,-0.32812 -0.69636,-0.49219 -1.19219,-0.49219 -0.56146,0 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4555" + inkscape:connector-curvature="0" /><path + d="m -110.84734,348.15308 0,-3.31407 1.00625,0 0,8.50938 -1.00625,0 0,-0.91875 c -0.21146,0.36458 -0.47943,0.6362 -0.8039,0.81484 -0.32084,0.175 -0.7073,0.2625 -1.15938,0.2625 -0.7401,0 -1.34349,-0.29531 -1.81015,-0.88594 -0.46303,-0.59062 -0.69454,-1.36718 -0.69453,-2.32968 -1e-5,-0.9625 0.2315,-1.73906 0.69453,-2.32969 0.46666,-0.59062 1.07005,-0.88593 1.81015,-0.88594 0.45208,10e-6 0.83854,0.0893 1.15938,0.26797 0.32447,0.17501 0.59244,0.4448 0.8039,0.80938 m -3.4289,2.13828 c 0,0.7401 0.1513,1.32161 0.4539,1.74453 0.30625,0.41927 0.72552,0.62891 1.25782,0.6289 0.53228,1e-5 0.95155,-0.20963 1.25781,-0.6289 0.30624,-0.42292 0.45937,-1.00443 0.45937,-1.74453 0,-0.7401 -0.15313,-1.31979 -0.45937,-1.73906 -0.30626,-0.42292 -0.72553,-0.63437 -1.25781,-0.63438 -0.5323,1e-5 -0.95157,0.21146 -1.25782,0.63438 -0.3026,0.41927 -0.4539,0.99896 -0.4539,1.73906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4557" + inkscape:connector-curvature="0" /><path + d="m -104.7114,349.83198 2.94765,0 0,0.89688 -2.94765,0 0,-0.89688" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4559" + inkscape:connector-curvature="0" /><path + d="m -92.674681,349.52026 c 0.236974,0.0802 0.466661,0.25157 0.689062,0.51407 0.226036,0.2625 0.452078,0.62344 0.678125,1.08281 l 1.121094,2.23125 -1.186719,0 -1.044531,-2.09453 c -0.269797,-0.54687 -0.532296,-0.90963 -0.7875,-1.08828 -0.251567,-0.17865 -0.596098,-0.26797 -1.033594,-0.26797 l -1.203125,0 0,3.45078 -1.104687,0 0,-8.16484 2.49375,0 c 0.933329,0 1.629682,0.19506 2.089062,0.58515 0.459369,0.39011 0.689056,0.97891 0.689063,1.76641 -7e-6,0.51407 -0.120319,0.94063 -0.360938,1.27968 -0.236985,0.33907 -0.583338,0.57423 -1.039062,0.70547 m -2.767188,-3.4289 0,2.89843 1.389063,0 c 0.532287,10e-6 0.933329,-0.12213 1.203125,-0.3664 0.273432,-0.24791 0.410151,-0.61067 0.410156,-1.08828 -5e-6,-0.4776 -0.136724,-0.83671 -0.410156,-1.07735 -0.269796,-0.24426 -0.670838,-0.3664 -1.203125,-0.3664 l -1.389063,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4561" + inkscape:connector-curvature="0" /><path + d="m -88.895775,351.95933 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4563" + inkscape:connector-curvature="0" /><path + d="m -84.274686,352.4187 3.855469,0 0,0.92969 -5.184375,0 0,-0.92969 c 0.41927,-0.43385 0.989842,-1.01536 1.711719,-1.74453 0.725517,-0.73281 1.181246,-1.20494 1.367187,-1.41641 0.353642,-0.39739 0.599735,-0.7328 0.738282,-1.00625 0.142182,-0.27707 0.213276,-0.54869 0.213281,-0.81484 -5e-6,-0.43385 -0.15313,-0.78749 -0.459375,-1.06094 -0.302608,-0.27343 -0.698181,-0.41015 -1.186719,-0.41015 -0.346357,0 -0.712763,0.0602 -1.099219,0.18047 -0.382814,0.12031 -0.79297,0.30261 -1.230468,0.54687 l 0,-1.11562 c 0.44479,-0.17864 0.860414,-0.31354 1.246875,-0.40469 0.386455,-0.0911 0.740101,-0.13671 1.060937,-0.13672 0.845829,1e-5 1.520308,0.21147 2.023437,0.63437 0.50312,0.42293 0.754682,0.98803 0.754688,1.69532 -6e-6,0.33542 -0.06381,0.65443 -0.191406,0.95703 -0.123964,0.29896 -0.351829,0.65261 -0.683594,1.06093 -0.09115,0.10574 -0.380994,0.41199 -0.869531,0.91875 -0.488546,0.50313 -1.177607,1.2086 -2.067188,2.11641" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4565" + inkscape:connector-curvature="0" /><path + d="m -78.084055,345.18355 4.336719,0 0,0.92968 -3.325,0 0,2.00157 c 0.160414,-0.0547 0.320831,-0.0948 0.48125,-0.12032 0.160414,-0.0292 0.32083,-0.0437 0.48125,-0.0437 0.911454,10e-6 1.633329,0.24975 2.165625,0.74922 0.532286,0.49948 0.798431,1.17579 0.798438,2.02891 -7e-6,0.87865 -0.273444,1.56224 -0.820313,2.05078 -0.54688,0.48489 -1.317973,0.72734 -2.313281,0.72734 -0.342711,0 -0.692711,-0.0292 -1.05,-0.0875 -0.353648,-0.0583 -0.720053,-0.14583 -1.099219,-0.2625 l 0,-1.11015 c 0.328124,0.17864 0.667186,0.31172 1.017188,0.39921 0.349997,0.0875 0.720049,0.13126 1.110156,0.13125 0.630725,1e-5 1.130204,-0.16588 1.498437,-0.49765 0.368225,-0.33177 0.552339,-0.78203 0.552344,-1.35078 -5e-6,-0.56875 -0.184119,-1.01901 -0.552344,-1.35078 -0.368233,-0.33177 -0.867712,-0.49766 -1.498437,-0.49766 -0.295315,0 -0.590628,0.0328 -0.885938,0.0984 -0.291668,0.0656 -0.590626,0.16771 -0.896875,0.30625 l 0,-4.10156" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4567" + inkscape:connector-curvature="0" /><path + d="m -70.952814,345.18355 4.336719,0 0,0.92968 -3.325,0 0,2.00157 c 0.160414,-0.0547 0.320831,-0.0948 0.48125,-0.12032 0.160414,-0.0292 0.32083,-0.0437 0.48125,-0.0437 0.911454,10e-6 1.633328,0.24975 2.165625,0.74922 0.532286,0.49948 0.798431,1.17579 0.798437,2.02891 -6e-6,0.87865 -0.273443,1.56224 -0.820312,2.05078 -0.54688,0.48489 -1.317973,0.72734 -2.313281,0.72734 -0.342711,0 -0.692711,-0.0292 -1.05,-0.0875 -0.353648,-0.0583 -0.720054,-0.14583 -1.099219,-0.2625 l 0,-1.11015 c 0.328124,0.17864 0.667186,0.31172 1.017187,0.39921 0.349998,0.0875 0.72005,0.13126 1.110157,0.13125 0.630725,1e-5 1.130204,-0.16588 1.498437,-0.49765 0.368225,-0.33177 0.552339,-0.78203 0.552344,-1.35078 -5e-6,-0.56875 -0.184119,-1.01901 -0.552344,-1.35078 -0.368233,-0.33177 -0.867712,-0.49766 -1.498437,-0.49766 -0.295315,0 -0.590628,0.0328 -0.885938,0.0984 -0.291668,0.0656 -0.590626,0.16771 -0.896875,0.30625 l 0,-4.10156" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4569" + inkscape:connector-curvature="0" /><path + d="m -54.798117,352.18354 0,-2.19296 -1.804688,0 0,-0.90782 2.898438,0 0,3.50547 c -0.42657,0.30261 -0.896882,0.53229 -1.410938,0.68906 -0.514068,0.15313 -1.062765,0.22969 -1.646093,0.22969 -1.276045,0 -2.275003,-0.37187 -2.996875,-1.11562 -0.71823,-0.7474 -1.077345,-1.78646 -1.077344,-3.11719 -10e-7,-1.33437 0.359114,-2.37343 1.077344,-3.11719 0.721872,-0.74739 1.72083,-1.12108 2.996875,-1.12109 0.532286,1e-5 1.037233,0.0656 1.514843,0.19687 0.481244,0.13126 0.924212,0.32449 1.328907,0.57969 l 0,1.17578 c -0.408341,-0.34634 -0.842195,-0.60702 -1.301563,-0.78203 -0.459381,-0.17499 -0.942453,-0.26249 -1.449219,-0.2625 -0.998962,1e-5 -1.750003,0.27891 -2.253125,0.83672 -0.499481,0.55782 -0.74922,1.38907 -0.749218,2.49375 -2e-6,1.10104 0.249737,1.93047 0.749218,2.48828 0.503122,0.55781 1.254163,0.83672 2.253125,0.83672 0.390099,0 0.738276,-0.0328 1.044532,-0.0984 0.306243,-0.0693 0.581504,-0.175 0.825781,-0.31719" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4571" + inkscape:connector-curvature="0" /><path + d="m -51.467651,351.95933 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4573" + inkscape:connector-curvature="0" /><path + d="m -45.435617,345.91089 c -0.568753,1e-5 -0.997138,0.28074 -1.285156,0.84219 -0.284377,0.55781 -0.426565,1.39818 -0.426563,2.52109 -2e-6,1.11927 0.142186,1.95964 0.426563,2.52109 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285156,-0.83672 0.288016,-0.56145 0.432026,-1.40182 0.432031,-2.52109 -5e-6,-1.12291 -0.144015,-1.96328 -0.432031,-2.52109 -0.284379,-0.56145 -0.712764,-0.84218 -1.285156,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.613276,0.36277 2.094531,1.08828 0.48489,0.72188 0.727337,1.77188 0.727344,3.15 -7e-6,1.37448 -0.242454,2.42448 -0.727344,3.15 -0.481255,0.72188 -1.179431,1.08281 -2.094531,1.08281 -0.915107,0 -1.615106,-0.36093 -2.1,-1.08281 -0.481251,-0.72552 -0.721876,-1.77552 -0.721875,-3.15 -10e-7,-1.37812 0.240624,-2.42812 0.721875,-3.15 0.484894,-0.72551 1.184893,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4575" + inkscape:connector-curvature="0" /><path + d="m -36.094998,349.44917 0,2.99141 1.771875,0 c 0.594266,0 1.033588,-0.12214 1.317968,-0.36641 0.288016,-0.24792 0.432026,-0.62526 0.432032,-1.13203 -6e-6,-0.51042 -0.144016,-0.88594 -0.432032,-1.12656 -0.28438,-0.24427 -0.723702,-0.36641 -1.317968,-0.36641 l -1.771875,0 m 0,-3.35781 0,2.46094 1.635156,0 c 0.539579,0 0.94062,-0.10026 1.203125,-0.30079 0.266141,-0.20416 0.399213,-0.51405 0.399219,-0.92968 -6e-6,-0.41198 -0.133078,-0.72005 -0.399219,-0.92422 -0.262505,-0.20416 -0.663546,-0.30625 -1.203125,-0.30625 l -1.635156,0 m -1.104688,-0.90781 2.821875,0 c 0.842183,0 1.491141,0.175 1.946875,0.525 0.455723,0.35 0.683587,0.84766 0.683594,1.49296 -7e-6,0.49949 -0.116673,0.89688 -0.35,1.19219 -0.233339,0.29532 -0.576047,0.47943 -1.028125,0.55234 0.543223,0.11668 0.964317,0.36095 1.263281,0.73282 0.302598,0.36823 0.4539,0.82943 0.453906,1.38359 -6e-6,0.72917 -0.247923,1.29245 -0.74375,1.68984 -0.495838,0.3974 -1.201307,0.5961 -2.116406,0.5961 l -2.93125,0 0,-8.16484" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4577" + inkscape:connector-curvature="0" /><path + d="m -29.308273,351.95933 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4579" + inkscape:connector-curvature="0" /><path + d="m -23.276239,345.91089 c -0.568753,1e-5 -0.997138,0.28074 -1.285156,0.84219 -0.284377,0.55781 -0.426565,1.39818 -0.426563,2.52109 -2e-6,1.11927 0.142186,1.95964 0.426563,2.52109 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285156,-0.83672 0.288016,-0.56145 0.432026,-1.40182 0.432031,-2.52109 -5e-6,-1.12291 -0.144015,-1.96328 -0.432031,-2.52109 -0.284379,-0.56145 -0.712764,-0.84218 -1.285156,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.613276,0.36277 2.094531,1.08828 0.48489,0.72188 0.727337,1.77188 0.727344,3.15 -7e-6,1.37448 -0.242454,2.42448 -0.727344,3.15 -0.481255,0.72188 -1.179431,1.08281 -2.094531,1.08281 -0.915107,0 -1.615106,-0.36093 -2.1,-1.08281 -0.481251,-0.72552 -0.721876,-1.77552 -0.721875,-3.15 -1e-6,-1.37812 0.240624,-2.42812 0.721875,-3.15 0.484894,-0.72551 1.184893,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4581" + inkscape:connector-curvature="0" /><path + d="m -198.20515,358.89152 0,1.07734 c -0.41927,-0.20051 -0.81485,-0.34999 -1.18672,-0.44844 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14765 -0.60157,0 -1.06641,0.11667 -1.39453,0.35 -0.32448,0.23334 -0.48672,0.56511 -0.48672,0.99531 0,0.36094 0.10755,0.63438 0.32266,0.82031 0.21874,0.1823 0.63072,0.32995 1.23593,0.44297 l 0.66719,0.13672 c 0.82395,0.15677 1.43098,0.43386 1.82109,0.83125 0.39375,0.39375 0.59062,0.9224 0.59063,1.58594 -1e-5,0.79114 -0.26615,1.39088 -0.79844,1.79921 -0.52865,0.40834 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0437 -1.23593,-0.13125 -0.43386,-0.0875 -0.88412,-0.21692 -1.35078,-0.38828 l 0,-1.1375 c 0.44843,0.25157 0.88775,0.44115 1.31796,0.56875 0.43021,0.12761 0.85313,0.19141 1.26875,0.19141 0.63073,0 1.11745,-0.12396 1.46016,-0.37188 0.3427,-0.24791 0.51406,-0.60156 0.51406,-1.06093 0,-0.40104 -0.12396,-0.71458 -0.37187,-0.94063 -0.24428,-0.22604 -0.64714,-0.39557 -1.2086,-0.50859 l -0.67265,-0.13125 c -0.82396,-0.16406 -1.42006,-0.42109 -1.78828,-0.7711 -0.36823,-0.34999 -0.55235,-0.83671 -0.55235,-1.46015 0,-0.72187 0.25339,-1.29062 0.76016,-1.70625 0.51041,-0.41562 1.21224,-0.62343 2.10547,-0.62344 0.38281,1e-5 0.77291,0.0346 1.17031,0.10391 0.39739,0.0693 0.8039,0.17318 1.21953,0.31172" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4583" + inkscape:connector-curvature="0" /><path + d="m -195.03874,358.92433 0,1.73906 2.07265,0 0,0.78203 -2.07265,0 0,3.325 c 0,0.49948 0.0674,0.82032 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29532,-0.29167 -0.44297,-0.82031 -0.44297,-1.58594 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73906 1.01172,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4585" + inkscape:connector-curvature="0" /><path + d="m -188.08796,361.60402 c -0.11303,-0.0656 -0.23698,-0.11302 -0.37188,-0.14219 -0.13125,-0.0328 -0.27708,-0.0492 -0.4375,-0.0492 -0.56875,1e-5 -1.00625,0.18594 -1.3125,0.55781 -0.3026,0.36824 -0.4539,0.8987 -0.4539,1.59141 l 0,3.22656 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21145,-0.37187 0.48671,-0.64713 0.82578,-0.82578 0.33906,-0.18228 0.75104,-0.27343 1.23594,-0.27344 0.0693,10e-6 0.14583,0.005 0.22968,0.0164 0.0839,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.0336" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4587" + inkscape:connector-curvature="0" /><path + d="m -184.87781,361.36886 c -0.53958,1e-5 -0.96614,0.21146 -1.27968,0.63437 -0.31355,0.41928 -0.47032,0.99532 -0.47031,1.72813 -1e-5,0.73281 0.15494,1.31068 0.46484,1.73359 0.31354,0.41928 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96068,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47032,-1.72812 -1e-5,-0.72552 -0.15678,-1.29974 -0.47032,-1.72266 -0.31354,-0.42655 -0.73828,-0.63983 -1.27422,-0.63984 m 0,-0.85313 c 0.875,10e-6 1.56224,0.28439 2.06172,0.85313 0.49948,0.56875 0.74922,1.35625 0.74922,2.3625 0,1.00261 -0.24974,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87864,0 -1.56771,-0.28437 -2.06718,-0.85312 -0.49584,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00625 0.24791,-1.79375 0.74375,-2.3625 0.49947,-0.56874 1.18854,-0.85312 2.06718,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4589" + inkscape:connector-curvature="0" /><path + d="m -180.43171,358.27902 1.01172,0 0,5.02578 3.00234,-2.64141 1.28516,0 -3.24844,2.86563 3.38516,3.25937 -1.3125,0 -3.11172,-2.99141 0,2.99141 -1.01172,0 0,-8.50937" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4591" + inkscape:connector-curvature="0" /><path + d="m -169.05124,363.47433 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22135 0.62343,1.58593 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38646,0 0.76016,-0.0474 1.1211,-0.14219 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15313 -0.73099,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85313,-1.33802 -0.85312,-2.30781 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38438 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82395,10e-6 1.47473,0.26616 1.95234,0.79844 0.48125,0.52865 0.72187,1.2487 0.72188,2.16016 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49219 -0.56147,1e-5 -1.01173,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4593" + inkscape:connector-curvature="0" /><path + d="m -164.41921,360.66339 1.00625,0 1.25781,4.77969 1.25235,-4.77969 1.18671,0 1.25782,4.77969 1.25234,-4.77969 1.00625,0 -1.60234,6.125 -1.18672,0 -1.31797,-5.02031 -1.32344,5.02031 -1.18672,0 -1.60234,-6.125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4595" + inkscape:connector-curvature="0" /><path + d="m -149.42937,363.47433 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22135 0.62344,1.58593 0.37551,0.36094 0.89687,0.54141 1.56406,0.54141 0.38645,0 0.76015,-0.0474 1.12109,-0.14219 0.36458,-0.0948 0.72552,-0.23698 1.08282,-0.42656 l 0,0.95156 c -0.36095,0.15313 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85312,-1.33802 -0.85312,-2.30781 0,-1.0026 0.26979,-1.79739 0.80937,-2.38438 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,10e-6 1.47474,0.26616 1.95235,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16016 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29897,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4597" + inkscape:connector-curvature="0" /><path + d="m -147.77781,360.66339 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38437 1.00625,0 0,1.27421 -1.00625,0 0,-1.27421" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4599" + inkscape:connector-curvature="0" /><path + d="m -140.64109,363.6548 c 0,-0.72917 -0.1513,-1.29427 -0.4539,-1.69532 -0.29897,-0.40103 -0.72006,-0.60155 -1.26328,-0.60156 -0.53959,1e-5 -0.96068,0.20053 -1.26329,0.60156 -0.29896,0.40105 -0.44843,0.96615 -0.44843,1.69532 0,0.72552 0.14947,1.2888 0.44843,1.68984 0.30261,0.40104 0.7237,0.60156 1.26329,0.60156 0.54322,0 0.96431,-0.20052 1.26328,-0.60156 0.3026,-0.40104 0.4539,-0.96432 0.4539,-1.68984 m 1.00625,2.37343 c 0,1.04271 -0.23151,1.81745 -0.69453,2.32422 -0.46302,0.51042 -1.17214,0.76563 -2.12734,0.76563 -0.35365,0 -0.68724,-0.0274 -1.00078,-0.082 -0.31355,-0.051 -0.61797,-0.13125 -0.91328,-0.24063 l 0,-0.9789 c 0.29531,0.16041 0.58697,0.2789 0.875,0.35546 0.28801,0.0766 0.5815,0.11485 0.88046,0.11485 0.6599,0 1.15391,-0.17318 1.48204,-0.51953 0.32812,-0.34271 0.49218,-0.86224 0.49218,-1.5586 l 0,-0.49765 c -0.20781,0.36094 -0.47396,0.63073 -0.79843,0.80937 -0.32449,0.17865 -0.71277,0.26797 -1.16485,0.26797 -0.75104,0 -1.35625,-0.2862 -1.81562,-0.85859 -0.45938,-0.5724 -0.68907,-1.33073 -0.68907,-2.275 0,-0.94792 0.22969,-1.70807 0.68907,-2.28047 0.45937,-0.57239 1.06458,-0.85859 1.81562,-0.8586 0.45208,10e-6 0.84036,0.0893 1.16485,0.26797 0.32447,0.17866 0.59062,0.44845 0.79843,0.80938 l 0,-0.92969 1.00625,0 0,5.36484" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4601" + inkscape:connector-curvature="0" /><path + d="m -132.47078,363.09152 0,3.69687 -1.00625,0 0,-3.66406 c 0,-0.57968 -0.11302,-1.01354 -0.33906,-1.30156 -0.22605,-0.28802 -0.56511,-0.43203 -1.01719,-0.43204 -0.54323,10e-6 -0.97162,0.17319 -1.28515,0.51954 -0.31355,0.34635 -0.47032,0.81849 -0.47032,1.4164 l 0,3.46172 -1.01172,0 0,-8.50937 1.01172,0 0,3.33593 c 0.24063,-0.36822 0.52318,-0.64348 0.84766,-0.82578 0.32812,-0.18228 0.70546,-0.27343 1.13203,-0.27344 0.70364,10e-6 1.23593,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.07371 0.5414,1.91954" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4603" + inkscape:connector-curvature="0" /><path + d="m -129.4575,358.92433 0,1.73906 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82032 0.20235,0.9625 0.13854,0.14219 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.31251,-0.14401 -1.60782,-0.43203 -0.29531,-0.29167 -0.44297,-0.82031 -0.44297,-1.58594 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73906 1.01172,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4605" + inkscape:connector-curvature="0" /><path + d="m -125.7989,365.39933 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906 m 0,-4.40235 1.15391,0 0,1.38907 -1.15391,0 0,-1.38907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4607" + inkscape:connector-curvature="0" /><path + d="m -116.20124,359.35089 c -0.56876,1e-5 -0.99714,0.28074 -1.28516,0.84219 -0.28438,0.55782 -0.42656,1.39818 -0.42656,2.52109 0,1.11928 0.14218,1.95964 0.42656,2.5211 0.28802,0.55781 0.7164,0.83672 1.28516,0.83671 0.57239,1e-5 1.00077,-0.2789 1.28515,-0.83671 0.28802,-0.56146 0.43203,-1.40182 0.43204,-2.5211 -1e-5,-1.12291 -0.14402,-1.96327 -0.43204,-2.52109 -0.28438,-0.56145 -0.71276,-0.84218 -1.28515,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.61327,0.36277 2.09453,1.08828 0.48489,0.72188 0.72734,1.77188 0.72734,3.15 0,1.37448 -0.24245,2.42448 -0.72734,3.15 -0.48126,0.72188 -1.17943,1.08281 -2.09453,1.08281 -0.91511,0 -1.61511,-0.36093 -2.1,-1.08281 -0.48125,-0.72552 -0.72188,-1.77552 -0.72188,-3.15 0,-1.37812 0.24063,-2.42812 0.72188,-3.15 0.48489,-0.72551 1.18489,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4609" + inkscape:connector-curvature="0" /><path + d="m -111.43249,365.39933 1.1539,0 0,1.38906 -1.1539,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4611" + inkscape:connector-curvature="0" /><path + d="m -105.50437,359.35089 c -0.56875,1e-5 -0.99713,0.28074 -1.28515,0.84219 -0.28438,0.55782 -0.42657,1.39818 -0.42656,2.52109 -10e-6,1.11928 0.14218,1.95964 0.42656,2.5211 0.28802,0.55781 0.7164,0.83672 1.28515,0.83671 0.5724,1e-5 1.00078,-0.2789 1.28516,-0.83671 0.28802,-0.56146 0.43203,-1.40182 0.43203,-2.5211 0,-1.12291 -0.14401,-1.96327 -0.43203,-2.52109 -0.28438,-0.56145 -0.71276,-0.84218 -1.28516,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.61328,0.36277 2.09454,1.08828 0.48489,0.72188 0.72733,1.77188 0.72734,3.15 -1e-5,1.37448 -0.24245,2.42448 -0.72734,3.15 -0.48126,0.72188 -1.17944,1.08281 -2.09454,1.08281 -0.9151,0 -1.6151,-0.36093 -2.1,-1.08281 -0.48125,-0.72552 -0.72187,-1.77552 -0.72187,-3.15 0,-1.37812 0.24062,-2.42812 0.72187,-3.15 0.4849,-0.72551 1.1849,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4613" + inkscape:connector-curvature="0" /><path + d="m -100.54421,365.8587 1.804687,0 0,-6.2289 -1.963277,0.39375 0,-1.00625 1.952339,-0.39375 1.104688,0 0,7.23515 1.804687,0 0,0.92969 -4.703124,0 0,-0.92969" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4615" + inkscape:connector-curvature="0" /><path + d="m -88.977806,361.83917 c 0.251556,-0.45208 0.552337,-0.78567 0.902344,-1.00078 0.349992,-0.2151 0.761971,-0.32265 1.235937,-0.32266 0.638012,10e-6 1.130199,0.22423 1.476562,0.67266 0.346345,0.4448 0.519522,1.07917 0.519532,1.90313 l 0,3.69687 -1.011719,0 0,-3.66406 c -9e-6,-0.58698 -0.103915,-1.02265 -0.311719,-1.30703 -0.207821,-0.28437 -0.525008,-0.42656 -0.951562,-0.42657 -0.521362,10e-6 -0.93334,0.17319 -1.235938,0.51954 -0.30261,0.34635 -0.453912,0.81849 -0.453906,1.4164 l 0,3.46172 -1.011719,0 0,-3.66406 c -5e-6,-0.59062 -0.103911,-1.0263 -0.311718,-1.30703 -0.207817,-0.28437 -0.52865,-0.42656 -0.9625,-0.42657 -0.514066,10e-6 -0.922399,0.17501 -1.225,0.525 -0.302607,0.34636 -0.453909,0.81668 -0.453907,1.41094 l 0,3.46172 -1.011718,0 0,-6.125 1.011718,0 0,0.95156 c 0.229686,-0.37551 0.504946,-0.65259 0.825782,-0.83125 0.32083,-0.17864 0.701819,-0.26796 1.142968,-0.26797 0.444788,10e-6 0.822131,0.11303 1.132032,0.33907 0.313536,0.22604 0.545046,0.55417 0.694531,0.98437" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4617" + inkscape:connector-curvature="0" /><path + d="m -78.06218,361.83917 c 0.251557,-0.45208 0.552338,-0.78567 0.902344,-1.00078 0.349993,-0.2151 0.761972,-0.32265 1.235938,-0.32266 0.638012,10e-6 1.130199,0.22423 1.476562,0.67266 0.346344,0.4448 0.519521,1.07917 0.519531,1.90313 l 0,3.69687 -1.011718,0 0,-3.66406 c -9e-6,-0.58698 -0.103916,-1.02265 -0.311719,-1.30703 -0.207821,-0.28437 -0.525008,-0.42656 -0.951563,-0.42657 -0.521361,10e-6 -0.93334,0.17319 -1.235937,0.51954 -0.30261,0.34635 -0.453912,0.81849 -0.453906,1.4164 l 0,3.46172 -1.011719,0 0,-3.66406 c -5e-6,-0.59062 -0.103911,-1.0263 -0.311719,-1.30703 -0.207817,-0.28437 -0.52865,-0.42656 -0.9625,-0.42657 -0.514066,10e-6 -0.922398,0.17501 -1.225,0.525 -0.302606,0.34636 -0.453908,0.81668 -0.453906,1.41094 l 0,3.46172 -1.011719,0 0,-6.125 1.011719,0 0,0.95156 c 0.229685,-0.37551 0.504945,-0.65259 0.825781,-0.83125 0.32083,-0.17864 0.701819,-0.26796 1.142969,-0.26797 0.444787,10e-6 0.82213,0.11303 1.132031,0.33907 0.313536,0.22604 0.545046,0.55417 0.694531,0.98437" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4619" + inkscape:connector-curvature="0" /></g><g + style="font-size:9.60000038px" + id="text4841-4"><path + d="m -204.2325,201.04194 6.90703,0 0,0.92969 -2.89844,0 0,7.23516 -1.11016,0 0,-7.23516 -2.89843,0 0,-0.92969" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4622" + inkscape:connector-curvature="0" /><path + d="m -195.8161,203.78726 c -0.53958,0 -0.96615,0.21146 -1.27969,0.63437 -0.31354,0.41928 -0.47031,0.99532 -0.47031,1.72813 0,0.73281 0.15495,1.31067 0.46485,1.73359 0.31353,0.41927 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96067,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99896 0.47031,-1.72812 0,-0.72552 -0.15677,-1.29974 -0.47031,-1.72266 -0.31355,-0.42656 -0.73828,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.875,1e-5 1.56224,0.28438 2.06172,0.85313 0.49947,0.56875 0.74921,1.35625 0.74922,2.3625 -1e-5,1.0026 -0.24975,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4624" + inkscape:connector-curvature="0" /><path + d="m -181.60829,201.67085 0,1.16484 c -0.37188,-0.34634 -0.76927,-0.6052 -1.19218,-0.77656 -0.41928,-0.17135 -0.86589,-0.25702 -1.33985,-0.25703 -0.93333,1e-5 -1.64792,0.2862 -2.14375,0.85859 -0.49583,0.56876 -0.74375,1.39272 -0.74375,2.47188 0,1.07552 0.24792,1.89948 0.74375,2.47187 0.49583,0.56875 1.21042,0.85313 2.14375,0.85313 0.47396,0 0.92057,-0.0857 1.33985,-0.25703 0.42291,-0.17136 0.8203,-0.43021 1.19218,-0.77657 l 0,1.15391 c -0.38646,0.2625 -0.79662,0.45938 -1.23046,0.59063 -0.43022,0.13125 -0.88595,0.19687 -1.36719,0.19687 -1.23594,0 -2.20938,-0.37734 -2.92031,-1.13203 -0.71094,-0.75833 -1.06641,-1.79192 -1.06641,-3.10078 0,-1.3125 0.35547,-2.34609 1.06641,-3.10078 0.71093,-0.75833 1.68437,-1.13749 2.92031,-1.1375 0.48853,10e-6 0.94791,0.0656 1.37812,0.19687 0.43385,0.12761 0.84036,0.32084 1.21953,0.57969" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4626" + inkscape:connector-curvature="0" /><path + d="m -180.03875,206.7896 0,-3.70781 1.00625,0 0,3.66953 c -1e-5,0.57969 0.11301,1.01536 0.33906,1.30703 0.22604,0.28802 0.5651,0.43203 1.01719,0.43203 0.54322,0 0.97161,-0.17318 1.28515,-0.51953 0.31718,-0.34635 0.47578,-0.81849 0.47578,-1.41641 l 0,-3.47265 1.00625,0 0,6.125 -1.00625,0 0,-0.94063 c -0.24427,0.37188 -0.52865,0.64896 -0.85312,0.83125 -0.32084,0.17865 -0.69454,0.26797 -1.1211,0.26797 -0.70364,0 -1.23776,-0.21875 -1.60234,-0.65625 -0.36458,-0.4375 -0.54687,-1.07734 -0.54687,-1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4628" + inkscape:connector-curvature="0" /><path + d="m -171.83016,201.34272 0,1.73907 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82031 0.20234,0.9625 0.13854,0.14219 0.41745,0.21328 0.83672,0.21328 l 1.0336,0 0,0.84219 -1.0336,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29531,-0.29167 -0.44297,-0.82032 -0.44297,-1.58594 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73907 1.01172,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4630" + inkscape:connector-curvature="0" /><path + d="m -162.07938,206.12788 c -0.81302,0 -1.3763,0.093 -1.68984,0.27891 -0.31355,0.18594 -0.47032,0.50312 -0.47032,0.95156 0,0.35729 0.11667,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00443,-0.19687 1.33985,-0.59062 0.33906,-0.3974 0.50859,-0.92422 0.50859,-1.58047 l 0,-0.22422 -1.00078,0 m 2.00703,-0.41562 0,3.49453 -1.00625,0 0,-0.92969 c -0.22969,0.37188 -0.51589,0.64714 -0.85859,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.35364 -0.55235,-0.82578 -0.55235,-1.41641 0,-0.68906 0.22969,-1.20859 0.68907,-1.55859 0.46302,-0.35 1.15208,-0.525 2.06718,-0.525 l 1.41094,0 0,-0.0984 c 0,-0.46301 -0.15313,-0.8203 -0.45937,-1.07187 -0.30261,-0.2552 -0.72917,-0.38281 -1.27969,-0.38281 -0.35,0 -0.69089,0.0419 -1.02266,0.12578 -0.33177,0.0839 -0.65078,0.20964 -0.95703,0.37734 l 0,-0.92969 c 0.36823,-0.14218 0.72552,-0.24791 1.07188,-0.31718 0.34635,-0.0729 0.68359,-0.10937 1.01172,-0.10938 0.88593,1e-5 1.54765,0.22969 1.98515,0.68906 0.4375,0.45938 0.65625,1.15574 0.65625,2.08907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4632" + inkscape:connector-curvature="0" /><path + d="m -154.38485,201.04194 1.10469,0 0,7.23516 3.97578,0 0,0.92969 -5.08047,0 0,-8.16485" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4634" + inkscape:connector-curvature="0" /><path + d="m -148.19422,203.08179 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38438 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4636" + inkscape:connector-curvature="0" /><path + d="m -139.99657,205.50991 0,3.69688 -1.00625,0 0,-3.66407 c 0,-0.57968 -0.11302,-1.01353 -0.33906,-1.30156 -0.22604,-0.28801 -0.56511,-0.43202 -1.01719,-0.43203 -0.54323,1e-5 -0.97161,0.17318 -1.28515,0.51953 -0.31355,0.34636 -0.47032,0.8185 -0.47031,1.41641 l 0,3.46172 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.24062,-0.36822 0.52317,-0.64348 0.84765,-0.82578 0.32812,-0.18229 0.70547,-0.27343 1.13203,-0.27344 0.70364,1e-5 1.23594,0.21876 1.59688,0.65625 0.36093,0.43386 0.5414,1.0737 0.5414,1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4638" + inkscape:connector-curvature="0" /><path + d="m -132.73953,205.89272 0,0.49219 -4.62657,0 c 0.0437,0.69271 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38646,0 0.76016,-0.0474 1.1211,-0.14219 0.36458,-0.0948 0.72551,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15312 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85313,-1.33802 -0.85313,-2.30782 0,-1.0026 0.26979,-1.79739 0.80938,-2.38437 0.54323,-0.59062 1.27421,-0.88593 2.19297,-0.88594 0.82395,1e-5 1.47473,0.26615 1.95234,0.79844 0.48124,0.52865 0.72187,1.2487 0.72188,2.16015 m -1.00625,-0.29531 c -0.007,-0.55051 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49218 -0.56146,0 -1.01172,0.15859 -1.35078,0.47578 -0.33542,0.31719 -0.52864,0.7638 -0.57968,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4640" + inkscape:connector-curvature="0" /><path + d="m -130.83094,207.81772 1.15391,0 0,1.38907 -1.15391,0 0,-1.38907 m 0,-4.40234 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4642" + inkscape:connector-curvature="0" /><path + d="m -198.20594,214.74991 0,1.07735 c -0.41928,-0.20052 -0.81485,-0.34999 -1.18672,-0.44844 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14766 -0.60157,1e-5 -1.06641,0.11668 -1.39454,0.35 -0.32448,0.23334 -0.48672,0.56512 -0.48671,0.99532 -1e-5,0.36094 0.10755,0.63438 0.32265,0.82031 0.21875,0.1823 0.63073,0.32995 1.23594,0.44297 l 0.66719,0.13672 c 0.82395,0.15677 1.43098,0.43386 1.82109,0.83125 0.39374,0.39375 0.59062,0.9224 0.59063,1.58593 -1e-5,0.79115 -0.26616,1.39089 -0.79844,1.79922 -0.52865,0.40834 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0438 -1.23594,-0.13125 -0.43385,-0.0875 -0.88411,-0.21692 -1.35078,-0.38828 l 0,-1.1375 c 0.44844,0.25157 0.88776,0.44115 1.31797,0.56875 0.43021,0.12761 0.85312,0.19141 1.26875,0.19141 0.63073,0 1.11744,-0.12396 1.46016,-0.37188 0.3427,-0.24791 0.51405,-0.60156 0.51406,-1.06093 -1e-5,-0.40104 -0.12396,-0.71458 -0.37188,-0.94063 -0.24427,-0.22604 -0.64714,-0.39557 -1.20859,-0.50859 l -0.67266,-0.13125 c -0.82396,-0.16406 -1.42005,-0.42109 -1.78828,-0.7711 -0.36823,-0.34999 -0.55234,-0.83671 -0.55234,-1.46015 0,-0.72187 0.25338,-1.29062 0.76016,-1.70625 0.51041,-0.41562 1.21223,-0.62343 2.10546,-0.62344 0.38281,1e-5 0.77292,0.0346 1.17032,0.10391 0.39739,0.0693 0.8039,0.17318 1.21953,0.31171" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4644" + inkscape:connector-curvature="0" /><path + d="m -195.03954,214.78273 0,1.73906 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0674,0.82031 0.20235,0.9625 0.13854,0.14219 0.41744,0.21328 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60782,-0.43203 -0.29531,-0.29167 -0.44297,-0.82031 -0.44296,-1.58594 l 0,-3.325 -0.73829,0 0,-0.78203 0.73829,0 0,-1.73906 1.01171,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4646" + inkscape:connector-curvature="0" /><path + d="m -188.08875,217.46241 c -0.11303,-0.0656 -0.23699,-0.11301 -0.37188,-0.14218 -0.13125,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56875,0 -1.00625,0.18594 -1.3125,0.55781 -0.30261,0.36823 -0.45391,0.8987 -0.45391,1.59141 l 0,3.22656 -1.01171,0 0,-6.125 1.01171,0 0,0.95156 c 0.21146,-0.37187 0.48672,-0.64713 0.82579,-0.82578 0.33906,-0.18228 0.75103,-0.27343 1.23593,-0.27344 0.0693,1e-5 0.14583,0.005 0.22969,0.0164 0.0839,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.03359" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4648" + inkscape:connector-curvature="0" /><path + d="m -184.8786,217.22726 c -0.53958,0 -0.96615,0.21146 -1.27969,0.63437 -0.31354,0.41928 -0.47031,0.99532 -0.47031,1.72813 0,0.73281 0.15495,1.31068 0.46485,1.73359 0.31353,0.41927 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96067,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47031,-1.72812 0,-0.72552 -0.15677,-1.29974 -0.47031,-1.72266 -0.31355,-0.42656 -0.73828,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.875,1e-5 1.56224,0.28438 2.06172,0.85313 0.49947,0.56875 0.74921,1.35625 0.74922,2.3625 -1e-5,1.0026 -0.24975,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4650" + inkscape:connector-curvature="0" /><path + d="m -180.4325,214.13741 1.01171,0 0,5.02579 3.00235,-2.64141 1.28515,0 -3.24843,2.86562 3.38515,3.25938 -1.3125,0 -3.11172,-2.99141 0,2.99141 -1.01171,0 0,-8.50938" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4652" + inkscape:connector-curvature="0" /><path + d="m -169.05204,219.33273 0,0.49218 -4.62656,0 c 0.0437,0.69272 0.25156,1.22136 0.62344,1.58594 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38646,0 0.76015,-0.0474 1.1211,-0.14219 0.36457,-0.0948 0.72551,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36095,0.15313 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12031 -1.1539,0.12031 -0.97709,0 -1.75183,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85313,-1.33802 -0.85313,-2.30781 0,-1.0026 0.26979,-1.7974 0.80938,-2.38438 0.54322,-0.59062 1.27421,-0.88593 2.19297,-0.88594 0.82395,1e-5 1.47473,0.26616 1.95234,0.79844 0.48124,0.52865 0.72187,1.2487 0.72187,2.16016 m -1.00625,-0.29532 c -0.007,-0.55051 -0.16224,-0.98983 -0.46484,-1.31796 -0.29896,-0.32812 -0.69636,-0.49219 -1.19219,-0.49219 -0.56146,0 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4654" + inkscape:connector-curvature="0" /><path + d="m -159.42703,216.75695 0,0.94062 c -0.28439,-0.15676 -0.57058,-0.27343 -0.8586,-0.35 -0.28438,-0.0802 -0.5724,-0.12031 -0.86406,-0.12031 -0.65261,0 -1.15938,0.20782 -1.52031,0.62344 -0.36094,0.41198 -0.54141,0.99167 -0.54141,1.73906 0,0.7474 0.18047,1.32891 0.54141,1.74453 0.36093,0.41198 0.8677,0.61797 1.52031,0.61797 0.29166,0 0.57968,-0.0383 0.86406,-0.11485 0.28802,-0.0802 0.57421,-0.19869 0.8586,-0.35546 l 0,0.92968 c -0.28074,0.13125 -0.57241,0.22969 -0.875,0.29532 -0.29897,0.0656 -0.61798,0.0984 -0.95704,0.0984 -0.92239,0 -1.65521,-0.28984 -2.19843,-0.86953 -0.54323,-0.57968 -0.81485,-1.36171 -0.81485,-2.34609 0,-0.99896 0.27344,-1.78463 0.82032,-2.35703 0.55051,-0.57239 1.30338,-0.85859 2.25859,-0.8586 0.30989,1e-5 0.61249,0.0328 0.90781,0.0984 0.29531,0.062 0.58151,0.15678 0.8586,0.28438" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4656" + inkscape:connector-curvature="0" /><path + d="m -155.29266,217.22726 c -0.53959,0 -0.96615,0.21146 -1.27969,0.63437 -0.31354,0.41928 -0.47031,0.99532 -0.47031,1.72813 0,0.73281 0.15494,1.31068 0.46484,1.73359 0.31354,0.41927 0.74193,0.62891 1.28516,0.62891 0.53593,0 0.96067,-0.21146 1.27422,-0.63438 0.31353,-0.42291 0.4703,-0.99895 0.47031,-1.72812 -1e-5,-0.72552 -0.15678,-1.29974 -0.47031,-1.72266 -0.31355,-0.42656 -0.73829,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.87499,1e-5 1.56223,0.28438 2.06172,0.85313 0.49947,0.56875 0.74921,1.35625 0.74921,2.3625 0,1.0026 -0.24974,1.7901 -0.74921,2.3625 -0.49949,0.56875 -1.18673,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4658" + inkscape:connector-curvature="0" /><path + d="m -150.81923,214.13741 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4660" + inkscape:connector-curvature="0" /><path + d="m -145.33954,217.22726 c -0.53958,0 -0.96615,0.21146 -1.27969,0.63437 -0.31354,0.41928 -0.47031,0.99532 -0.47031,1.72813 0,0.73281 0.15495,1.31068 0.46485,1.73359 0.31354,0.41927 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96067,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.99895 0.47031,-1.72812 0,-0.72552 -0.15677,-1.29974 -0.47031,-1.72266 -0.31355,-0.42656 -0.73828,-0.63984 -1.27422,-0.63984 m 0,-0.85313 c 0.875,1e-5 1.56224,0.28438 2.06172,0.85313 0.49947,0.56875 0.74921,1.35625 0.74922,2.3625 -10e-6,1.0026 -0.24975,1.7901 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79375 0.74375,-2.3625 0.49948,-0.56875 1.18854,-0.85312 2.06719,-0.85313" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4662" + inkscape:connector-curvature="0" /><path + d="m -137.31688,217.46241 c -0.11303,-0.0656 -0.23699,-0.11301 -0.37188,-0.14218 -0.13125,-0.0328 -0.27708,-0.0492 -0.4375,-0.0492 -0.56875,0 -1.00625,0.18594 -1.3125,0.55781 -0.3026,0.36823 -0.45391,0.8987 -0.4539,1.59141 l 0,3.22656 -1.01172,0 0,-6.125 1.01172,0 0,0.95156 c 0.21145,-0.37187 0.48671,-0.64713 0.82578,-0.82578 0.33906,-0.18228 0.75104,-0.27343 1.23594,-0.27344 0.0693,1e-5 0.14582,0.005 0.22968,0.0164 0.0838,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.03359" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4664" + inkscape:connector-curvature="0" /><path + d="m -136.17938,221.25773 1.1539,0 0,1.38906 -1.1539,0 0,-1.38906 m 0,-4.40235 1.1539,0 0,1.38907 -1.1539,0 0,-1.38907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4666" + inkscape:connector-curvature="0" /><path + d="m -127.92704,218.74757 0,2.99141 1.77188,0 c 0.59426,0 1.03359,-0.12214 1.31797,-0.36641 0.28801,-0.24791 0.43202,-0.62526 0.43203,-1.13203 -1e-5,-0.51041 -0.14402,-0.88593 -0.43203,-1.12656 -0.28438,-0.24427 -0.72371,-0.36641 -1.31797,-0.36641 l -1.77188,0 m 0,-3.35781 0,2.46094 1.63516,0 c 0.53958,0 0.94062,-0.10026 1.20312,-0.30079 0.26614,-0.20416 0.39922,-0.51405 0.39922,-0.92968 0,-0.41198 -0.13308,-0.72005 -0.39922,-0.92422 -0.2625,-0.20416 -0.66354,-0.30624 -1.20312,-0.30625 l -1.63516,0 m -1.10468,-0.90781 2.82187,0 c 0.84218,0 1.49114,0.175 1.94688,0.525 0.45572,0.35 0.68358,0.84766 0.68359,1.49296 -1e-5,0.49949 -0.11667,0.89688 -0.35,1.19219 -0.23334,0.29532 -0.57605,0.47943 -1.02813,0.55235 0.54323,0.11667 0.96432,0.36094 1.26329,0.73281 0.30259,0.36823 0.45389,0.82943 0.4539,1.38359 -1e-5,0.72917 -0.24792,1.29245 -0.74375,1.68985 -0.49584,0.39739 -1.20131,0.59609 -2.1164,0.59609 l -2.93125,0 0,-8.16484" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4668" + inkscape:connector-curvature="0" /><path + d="m -121.39735,214.13741 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4670" + inkscape:connector-curvature="0" /><path + d="m -118.395,220.2296 0,-3.70781 1.00625,0 0,3.66953 c 0,0.57969 0.11302,1.01537 0.33906,1.30703 0.22604,0.28802 0.5651,0.43203 1.01719,0.43203 0.54322,0 0.97161,-0.17317 1.28515,-0.51953 0.31719,-0.34635 0.47578,-0.81849 0.47578,-1.4164 l 0,-3.47266 1.00625,0 0,6.125 -1.00625,0 0,-0.94063 c -0.24427,0.37188 -0.52865,0.64896 -0.85312,0.83125 -0.32084,0.17865 -0.69454,0.26797 -1.12109,0.26797 -0.70365,0 -1.23777,-0.21875 -1.60235,-0.65625 -0.36458,-0.4375 -0.54687,-1.07734 -0.54687,-1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4672" + inkscape:connector-curvature="0" /><path + d="m -105.94266,219.33273 0,0.49218 -4.62656,0 c 0.0438,0.69272 0.25156,1.22136 0.62344,1.58594 0.37551,0.36094 0.89687,0.54141 1.56406,0.54141 0.38645,0 0.76015,-0.0474 1.12109,-0.14219 0.36458,-0.0948 0.72552,-0.23698 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15313 -0.73099,0.26979 -1.11015,0.35 -0.37917,0.0802 -0.76381,0.12031 -1.15391,0.12031 -0.97708,0 -1.75182,-0.28437 -2.32422,-0.85312 -0.56875,-0.56875 -0.85312,-1.33802 -0.85312,-2.30781 0,-1.0026 0.26979,-1.7974 0.80937,-2.38438 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88594 0.82396,1e-5 1.47474,0.26616 1.95235,0.79844 0.48124,0.52865 0.72186,1.2487 0.72187,2.16016 m -1.00625,-0.29532 c -0.007,-0.55051 -0.16224,-0.98983 -0.46484,-1.31796 -0.29897,-0.32812 -0.69636,-0.49219 -1.19219,-0.49219 -0.56146,0 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33984 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4674" + inkscape:connector-curvature="0" /><path + d="m -101.23407,219.13038 2.947656,0 0,0.89688 -2.947656,0 0,-0.89688" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4676" + inkscape:connector-curvature="0" /><path + d="m -89.197348,218.81866 c 0.236974,0.0802 0.466661,0.25157 0.689062,0.51407 0.226036,0.2625 0.452078,0.62344 0.678125,1.08281 l 1.121094,2.23125 -1.186719,0 -1.044531,-2.09453 c -0.269796,-0.54687 -0.532296,-0.90963 -0.7875,-1.08828 -0.251567,-0.17865 -0.596097,-0.26797 -1.033594,-0.26797 l -1.203125,0 0,3.45078 -1.104687,0 0,-8.16484 2.49375,0 c 0.933329,0 1.629682,0.19506 2.089062,0.58515 0.459369,0.39011 0.689056,0.97892 0.689063,1.76641 -7e-6,0.51407 -0.120319,0.94063 -0.360938,1.27969 -0.236985,0.33906 -0.583338,0.57422 -1.039062,0.70546 m -2.767188,-3.4289 0,2.89844 1.389063,0 c 0.532287,0 0.933329,-0.12214 1.203125,-0.36641 0.273432,-0.24791 0.410151,-0.61067 0.410156,-1.08828 -5e-6,-0.4776 -0.136724,-0.83671 -0.410156,-1.07735 -0.269796,-0.24426 -0.670838,-0.36639 -1.203125,-0.3664 l -1.389063,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4678" + inkscape:connector-curvature="0" /><path + d="m -85.418442,221.25773 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38907 -1.153906,0 0,-1.38907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4680" + inkscape:connector-curvature="0" /><path + d="m -79.386415,215.20929 c -0.568753,1e-5 -0.997138,0.28074 -1.285156,0.84219 -0.284377,0.55782 -0.426565,1.39818 -0.426563,2.52109 -2e-6,1.11927 0.142186,1.95964 0.426563,2.52109 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285156,-0.83672 0.288016,-0.56145 0.432026,-1.40182 0.432031,-2.52109 -5e-6,-1.12291 -0.144015,-1.96327 -0.432031,-2.52109 -0.284379,-0.56145 -0.712764,-0.84218 -1.285156,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.613276,0.36277 2.094531,1.08828 0.48489,0.72188 0.727337,1.77188 0.727344,3.15 -7e-6,1.37448 -0.242454,2.42448 -0.727344,3.15 -0.481255,0.72188 -1.179431,1.08281 -2.094531,1.08281 -0.915107,0 -1.615106,-0.36093 -2.1,-1.08281 -0.481251,-0.72552 -0.721876,-1.77552 -0.721875,-3.15 -10e-7,-1.37812 0.240624,-2.42812 0.721875,-3.15 0.484894,-0.72551 1.184893,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4682" + inkscape:connector-curvature="0" /><path + d="m -65.583289,221.48195 0,-2.19297 -1.804687,0 0,-0.90782 2.898437,0 0,3.50547 c -0.42657,0.30261 -0.896882,0.5323 -1.410937,0.68907 -0.514069,0.15312 -1.062766,0.22968 -1.646094,0.22968 -1.276045,0 -2.275002,-0.37187 -2.996875,-1.11562 -0.71823,-0.7474 -1.077344,-1.78646 -1.077344,-3.11719 0,-1.33437 0.359114,-2.37343 1.077344,-3.11719 0.721873,-0.74738 1.72083,-1.12108 2.996875,-1.12109 0.532287,1e-5 1.037234,0.0656 1.514844,0.19687 0.481243,0.13126 0.924211,0.32449 1.328906,0.57969 l 0,1.17578 c -0.40834,-0.34634 -0.842194,-0.60702 -1.301562,-0.78203 -0.459381,-0.17499 -0.942454,-0.26249 -1.449219,-0.2625 -0.998962,1e-5 -1.750003,0.27892 -2.253125,0.83672 -0.499481,0.55782 -0.749221,1.38907 -0.749219,2.49375 -2e-6,1.10105 0.249738,1.93047 0.749219,2.48828 0.503122,0.55782 1.254163,0.83672 2.253125,0.83672 0.390099,0 0.738276,-0.0328 1.044531,-0.0984 0.306244,-0.0693 0.581504,-0.175 0.825781,-0.31718" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4684" + inkscape:connector-curvature="0" /><path + d="m -62.252823,221.25773 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38907 -1.153906,0 0,-1.38907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4686" + inkscape:connector-curvature="0" /><path + d="m -56.220789,215.20929 c -0.568753,1e-5 -0.997138,0.28074 -1.285156,0.84219 -0.284377,0.55782 -0.426564,1.39818 -0.426562,2.52109 -2e-6,1.11927 0.142185,1.95964 0.426562,2.52109 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285157,-0.83672 0.288015,-0.56145 0.432026,-1.40182 0.432031,-2.52109 -5e-6,-1.12291 -0.144016,-1.96327 -0.432031,-2.52109 -0.28438,-0.56145 -0.712765,-0.84218 -1.285157,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.613276,0.36277 2.094532,1.08828 0.484889,0.72188 0.727337,1.77188 0.727343,3.15 -6e-6,1.37448 -0.242454,2.42448 -0.727343,3.15 -0.481256,0.72188 -1.179432,1.08281 -2.094532,1.08281 -0.915106,0 -1.615106,-0.36093 -2.1,-1.08281 -0.481251,-0.72552 -0.721875,-1.77552 -0.721875,-3.15 0,-1.37812 0.240624,-2.42812 0.721875,-3.15 0.484894,-0.72551 1.184894,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4688" + inkscape:connector-curvature="0" /><path + d="m -46.88017,218.74757 0,2.99141 1.771875,0 c 0.594267,0 1.033589,-0.12214 1.317969,-0.36641 0.288015,-0.24791 0.432025,-0.62526 0.432031,-1.13203 -6e-6,-0.51041 -0.144016,-0.88593 -0.432031,-1.12656 -0.28438,-0.24427 -0.723702,-0.36641 -1.317969,-0.36641 l -1.771875,0 m 0,-3.35781 0,2.46094 1.635157,0 c 0.539578,0 0.94062,-0.10026 1.203124,-0.30079 0.266141,-0.20416 0.399214,-0.51405 0.399219,-0.92968 -5e-6,-0.41198 -0.133078,-0.72005 -0.399219,-0.92422 -0.262504,-0.20416 -0.663546,-0.30624 -1.203124,-0.30625 l -1.635157,0 m -1.104687,-0.90781 2.821875,0 c 0.842182,0 1.49114,0.175 1.946875,0.525 0.455723,0.35 0.683587,0.84766 0.683593,1.49296 -6e-6,0.49949 -0.116673,0.89688 -0.35,1.19219 -0.233339,0.29532 -0.576047,0.47943 -1.028125,0.55235 0.543224,0.11667 0.964317,0.36094 1.263282,0.73281 0.302597,0.36823 0.453899,0.82943 0.453906,1.38359 -7e-6,0.72917 -0.247923,1.29245 -0.74375,1.68985 -0.495839,0.39739 -1.201307,0.59609 -2.116406,0.59609 l -2.93125,0 0,-8.16484" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4690" + inkscape:connector-curvature="0" /><path + d="m -40.093445,221.25773 1.153906,0 0,1.38906 -1.153906,0 0,-1.38906 m 0,-4.40235 1.153906,0 0,1.38907 -1.153906,0 0,-1.38907" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4692" + inkscape:connector-curvature="0" /><path + d="m -35.472348,221.7171 3.855469,0 0,0.92969 -5.184375,0 0,-0.92969 c 0.419269,-0.43385 0.989842,-1.01536 1.711718,-1.74453 0.725518,-0.73281 1.181247,-1.20494 1.367188,-1.41641 0.353641,-0.39739 0.599735,-0.7328 0.738281,-1.00625 0.142183,-0.27707 0.213277,-0.54869 0.213281,-0.81484 -4e-6,-0.43385 -0.153129,-0.78749 -0.459375,-1.06094 -0.302608,-0.27343 -0.69818,-0.41015 -1.186718,-0.41015 -0.346357,0 -0.712763,0.0602 -1.099219,0.18047 -0.382814,0.12032 -0.79297,0.30261 -1.230469,0.54687 l 0,-1.11562 c 0.444791,-0.17864 0.860415,-0.31354 1.246875,-0.40469 0.386456,-0.0911 0.740101,-0.13671 1.060938,-0.13672 0.845829,1e-5 1.520307,0.21147 2.023437,0.63437 0.503119,0.42293 0.754682,0.98803 0.754688,1.69532 -6e-6,0.33542 -0.06381,0.65443 -0.191407,0.95703 -0.123964,0.29896 -0.351828,0.65261 -0.683593,1.06094 -0.09115,0.10573 -0.380995,0.41198 -0.869532,0.91875 -0.488545,0.50312 -1.177607,1.20859 -2.067187,2.1164" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4694" + inkscape:connector-curvature="0" /><path + d="m -29.281732,214.48195 4.336718,0 0,0.92968 -3.324999,0 0,2.00157 c 0.160414,-0.0547 0.32083,-0.0948 0.48125,-0.12032 0.160413,-0.0292 0.32083,-0.0437 0.48125,-0.0437 0.911454,1e-5 1.633328,0.24975 2.165624,0.74922 0.532286,0.49949 0.798432,1.17579 0.798438,2.02891 -6e-6,0.87865 -0.273443,1.56224 -0.820313,2.05078 -0.546879,0.4849 -1.317972,0.72734 -2.313281,0.72734 -0.342711,0 -0.69271,-0.0292 -1.05,-0.0875 -0.353647,-0.0583 -0.720053,-0.14583 -1.099218,-0.2625 l 0,-1.11015 c 0.328123,0.17864 0.667186,0.31172 1.017187,0.39922 0.349998,0.0875 0.72005,0.13125 1.110156,0.13125 0.630726,0 1.130204,-0.16589 1.498438,-0.49766 0.368224,-0.33177 0.552338,-0.78203 0.552343,-1.35078 -5e-6,-0.56875 -0.184119,-1.01901 -0.552343,-1.35078 -0.368234,-0.33177 -0.867712,-0.49765 -1.498438,-0.49766 -0.295315,1e-5 -0.590627,0.0328 -0.885937,0.0984 -0.291669,0.0656 -0.590627,0.16771 -0.896875,0.30625 l 0,-4.10156" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4696" + inkscape:connector-curvature="0" /><path + d="m -22.150476,214.48195 4.336719,0 0,0.92968 -3.325,0 0,2.00157 c 0.160414,-0.0547 0.32083,-0.0948 0.48125,-0.12032 0.160413,-0.0292 0.32083,-0.0437 0.48125,-0.0437 0.911454,1e-5 1.633328,0.24975 2.165625,0.74922 0.532285,0.49949 0.798431,1.17579 0.798437,2.02891 -6e-6,0.87865 -0.273443,1.56224 -0.820312,2.05078 -0.54688,0.4849 -1.317973,0.72734 -2.313282,0.72734 -0.342711,0 -0.69271,-0.0292 -1.05,-0.0875 -0.353647,-0.0583 -0.720053,-0.14583 -1.099218,-0.2625 l 0,-1.11015 c 0.328123,0.17864 0.667186,0.31172 1.017187,0.39922 0.349998,0.0875 0.72005,0.13125 1.110156,0.13125 0.630726,0 1.130205,-0.16589 1.498438,-0.49766 0.368224,-0.33177 0.552339,-0.78203 0.552344,-1.35078 -5e-6,-0.56875 -0.18412,-1.01901 -0.552344,-1.35078 -0.368233,-0.33177 -0.867712,-0.49765 -1.498438,-0.49766 -0.295315,1e-5 -0.590627,0.0328 -0.885937,0.0984 -0.291669,0.0656 -0.590627,0.16771 -0.896875,0.30625 l 0,-4.10156" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4698" + inkscape:connector-curvature="0" /><path + d="m -198.20594,228.18992 0,1.07734 c -0.41928,-0.20051 -0.81485,-0.34999 -1.18672,-0.44844 -0.37188,-0.0984 -0.73099,-0.14765 -1.07734,-0.14765 -0.60157,0 -1.06641,0.11667 -1.39454,0.35 -0.32448,0.23334 -0.48672,0.56511 -0.48671,0.99531 -1e-5,0.36094 0.10755,0.63438 0.32265,0.82031 0.21875,0.1823 0.63073,0.32995 1.23594,0.44297 l 0.66719,0.13672 c 0.82395,0.15677 1.43098,0.43386 1.82109,0.83125 0.39374,0.39375 0.59062,0.9224 0.59063,1.58594 -1e-5,0.79114 -0.26616,1.39088 -0.79844,1.79922 -0.52865,0.40833 -1.30521,0.6125 -2.32969,0.6125 -0.38646,0 -0.79844,-0.0437 -1.23594,-0.13125 -0.43385,-0.0875 -0.88411,-0.21693 -1.35078,-0.38829 l 0,-1.1375 c 0.44844,0.25157 0.88776,0.44115 1.31797,0.56875 0.43021,0.12761 0.85312,0.19141 1.26875,0.19141 0.63073,0 1.11744,-0.12396 1.46016,-0.37187 0.3427,-0.24792 0.51405,-0.60157 0.51406,-1.06094 -1e-5,-0.40104 -0.12396,-0.71458 -0.37188,-0.94063 -0.24427,-0.22604 -0.64714,-0.39557 -1.20859,-0.50859 l -0.67266,-0.13125 c -0.82396,-0.16406 -1.42005,-0.42109 -1.78828,-0.77109 -0.36823,-0.35 -0.55234,-0.83672 -0.55234,-1.46016 0,-0.72187 0.25338,-1.29062 0.76016,-1.70625 0.51041,-0.41562 1.21223,-0.62343 2.10546,-0.62344 0.38281,1e-5 0.77292,0.0346 1.17032,0.10391 0.39739,0.0693 0.8039,0.17318 1.21953,0.31172" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4700" + inkscape:connector-curvature="0" /><path + d="m -195.03954,228.22273 0,1.73906 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0674,0.82032 0.20235,0.9625 0.13854,0.14219 0.41744,0.21329 0.83672,0.21328 l 1.03359,0 0,0.84219 -1.03359,0 c -0.77657,0 -1.3125,-0.14401 -1.60782,-0.43203 -0.29531,-0.29167 -0.44297,-0.82031 -0.44296,-1.58594 l 0,-3.325 -0.73829,0 0,-0.78203 0.73829,0 0,-1.73906 1.01171,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4702" + inkscape:connector-curvature="0" /><path + d="m -188.08875,230.90242 c -0.11303,-0.0656 -0.23699,-0.11302 -0.37188,-0.14219 -0.13125,-0.0328 -0.27709,-0.0492 -0.4375,-0.0492 -0.56875,1e-5 -1.00625,0.18594 -1.3125,0.55781 -0.30261,0.36824 -0.45391,0.89871 -0.45391,1.59141 l 0,3.22656 -1.01171,0 0,-6.125 1.01171,0 0,0.95156 c 0.21146,-0.37186 0.48672,-0.64713 0.82579,-0.82578 0.33906,-0.18228 0.75103,-0.27343 1.23593,-0.27343 0.0693,0 0.14583,0.005 0.22969,0.0164 0.0839,0.007 0.17682,0.0201 0.27891,0.0383 l 0.005,1.0336" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4704" + inkscape:connector-curvature="0" /><path + d="m -184.8786,230.66726 c -0.53958,1e-5 -0.96615,0.21146 -1.27969,0.63438 -0.31354,0.41927 -0.47031,0.99531 -0.47031,1.72812 0,0.73282 0.15495,1.31068 0.46485,1.73359 0.31353,0.41928 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96067,-0.21146 1.27422,-0.63437 0.31354,-0.42292 0.47031,-0.99896 0.47031,-1.72813 0,-0.72552 -0.15677,-1.29973 -0.47031,-1.72266 -0.31355,-0.42655 -0.73828,-0.63983 -1.27422,-0.63984 m 0,-0.85312 c 0.875,0 1.56224,0.28438 2.06172,0.85312 0.49947,0.56876 0.74921,1.35625 0.74922,2.3625 -1e-5,1.00261 -0.24975,1.79011 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.85313 -2.06172,0.85313 -0.87865,0 -1.56771,-0.28438 -2.06719,-0.85313 -0.49583,-0.57239 -0.74375,-1.35989 -0.74375,-2.3625 0,-1.00625 0.24792,-1.79374 0.74375,-2.3625 0.49948,-0.56874 1.18854,-0.85312 2.06719,-0.85312" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4706" + inkscape:connector-curvature="0" /><path + d="m -180.4325,227.57742 1.01171,0 0,5.02578 3.00235,-2.64141 1.28515,0 -3.24843,2.86563 3.38515,3.25937 -1.3125,0 -3.11172,-2.9914 0,2.9914 -1.01171,0 0,-8.50937" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4708" + inkscape:connector-curvature="0" /><path + d="m -169.05204,232.77273 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22135 0.62344,1.58593 0.37552,0.36094 0.89687,0.54141 1.56406,0.54141 0.38646,0 0.76015,-0.0474 1.1211,-0.14219 0.36457,-0.0948 0.72551,-0.23697 1.08281,-0.42656 l 0,0.95156 c -0.36095,0.15313 -0.731,0.26979 -1.11016,0.35 -0.37917,0.0802 -0.7638,0.12032 -1.1539,0.12032 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56875 -0.85313,-1.33802 -0.85313,-2.30781 0,-1.0026 0.26979,-1.79739 0.80938,-2.38438 0.54322,-0.59062 1.27421,-0.88593 2.19297,-0.88593 0.82395,0 1.47473,0.26615 1.95234,0.79843 0.48124,0.52865 0.72187,1.24871 0.72187,2.16016 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16224,-0.98984 -0.46484,-1.31797 -0.29896,-0.32812 -0.69636,-0.49218 -1.19219,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4710" + inkscape:connector-curvature="0" /><path + d="m -164.42,229.96179 1.00625,0 1.25781,4.77969 1.25234,-4.77969 1.18672,0 1.25781,4.77969 1.25235,-4.77969 1.00625,0 -1.60235,6.125 -1.18671,0 -1.31797,-5.02031 -1.32344,5.02031 -1.18672,0 -1.60234,-6.125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4712" + inkscape:connector-curvature="0" /><path + d="m -149.43016,232.77273 0,0.49219 -4.62656,0 c 0.0437,0.69271 0.25156,1.22135 0.62343,1.58593 0.37552,0.36094 0.89687,0.54141 1.56407,0.54141 0.38645,0 0.76015,-0.0474 1.12109,-0.14219 0.36458,-0.0948 0.72551,-0.23697 1.08281,-0.42656 l 0,0.95156 c -0.36094,0.15313 -0.73099,0.26979 -1.11015,0.35 -0.37918,0.0802 -0.76381,0.12032 -1.15391,0.12032 -0.97709,0 -1.75183,-0.28438 -2.32422,-0.85313 -0.56875,-0.56875 -0.85313,-1.33802 -0.85312,-2.30781 -1e-5,-1.0026 0.26979,-1.79739 0.80937,-2.38438 0.54323,-0.59062 1.27422,-0.88593 2.19297,-0.88593 0.82395,0 1.47473,0.26615 1.95234,0.79843 0.48125,0.52865 0.72187,1.24871 0.72188,2.16016 m -1.00625,-0.29531 c -0.007,-0.55052 -0.16225,-0.98984 -0.46485,-1.31797 -0.29896,-0.32812 -0.69635,-0.49218 -1.19218,-0.49219 -0.56146,1e-5 -1.01172,0.1586 -1.35078,0.47578 -0.33542,0.31719 -0.52865,0.76381 -0.57969,1.33985 l 3.5875,-0.005" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4714" + inkscape:connector-curvature="0" /><path + d="m -147.7786,229.96179 1.00625,0 0,6.125 -1.00625,0 0,-6.125 m 0,-2.38437 1.00625,0 0,1.27422 -1.00625,0 0,-1.27422" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4716" + inkscape:connector-curvature="0" /><path + d="m -140.64188,232.9532 c -1e-5,-0.72916 -0.15131,-1.29427 -0.45391,-1.69531 -0.29896,-0.40104 -0.72005,-0.60156 -1.26328,-0.60157 -0.53958,1e-5 -0.96068,0.20053 -1.26328,0.60157 -0.29896,0.40104 -0.44844,0.96615 -0.44844,1.69531 0,0.72552 0.14948,1.2888 0.44844,1.68984 0.3026,0.40104 0.7237,0.60157 1.26328,0.60156 0.54323,1e-5 0.96432,-0.20052 1.26328,-0.60156 0.3026,-0.40104 0.4539,-0.96432 0.45391,-1.68984 m 1.00625,2.37344 c -1e-5,1.0427 -0.23152,1.81744 -0.69453,2.32421 -0.46303,0.51042 -1.17214,0.76563 -2.12735,0.76563 -0.35364,0 -0.68724,-0.0274 -1.00078,-0.082 -0.31354,-0.0511 -0.61797,-0.13125 -0.91328,-0.24063 l 0,-0.9789 c 0.29531,0.16041 0.58698,0.2789 0.875,0.35547 0.28802,0.0766 0.58151,0.11484 0.88047,0.11484 0.65989,0 1.1539,-0.17318 1.48203,-0.51953 0.32812,-0.34271 0.49218,-0.86224 0.49219,-1.5586 l 0,-0.49765 c -0.20782,0.36094 -0.47396,0.63073 -0.79844,0.80937 -0.32448,0.17865 -0.71276,0.26797 -1.16484,0.26797 -0.75105,0 -1.35625,-0.2862 -1.81563,-0.85859 -0.45937,-0.5724 -0.68906,-1.33073 -0.68906,-2.275 0,-0.94791 0.22969,-1.70807 0.68906,-2.28047 0.45938,-0.57239 1.06458,-0.85859 1.81563,-0.85859 0.45208,0 0.84036,0.0893 1.16484,0.26796 0.32448,0.17866 0.59062,0.44845 0.79844,0.80938 l 0,-0.92969 1.00625,0 0,5.36485" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4718" + inkscape:connector-curvature="0" /><path + d="m -132.47157,232.38992 0,3.69687 -1.00625,0 0,-3.66406 c -1e-5,-0.57968 -0.11303,-1.01354 -0.33906,-1.30156 -0.22605,-0.28802 -0.56511,-0.43203 -1.01719,-0.43203 -0.54323,0 -0.97162,0.17318 -1.28516,0.51953 -0.31354,0.34636 -0.47031,0.81849 -0.47031,1.4164 l 0,3.46172 -1.01172,0 0,-8.50937 1.01172,0 0,3.33593 c 0.24062,-0.36822 0.52317,-0.64348 0.84766,-0.82578 0.32812,-0.18228 0.70546,-0.27343 1.13203,-0.27343 0.70364,0 1.23593,0.21875 1.59687,0.65625 0.36093,0.43386 0.5414,1.0737 0.54141,1.91953" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4720" + inkscape:connector-curvature="0" /><path + d="m -129.45829,228.22273 0,1.73906 2.07266,0 0,0.78203 -2.07266,0 0,3.325 c 0,0.49948 0.0675,0.82032 0.20234,0.9625 0.13854,0.14219 0.41745,0.21329 0.83672,0.21328 l 1.0336,0 0,0.84219 -1.0336,0 c -0.77656,0 -1.3125,-0.14401 -1.60781,-0.43203 -0.29531,-0.29167 -0.44297,-0.82031 -0.44297,-1.58594 l 0,-3.325 -0.73828,0 0,-0.78203 0.73828,0 0,-1.73906 1.01172,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4722" + inkscape:connector-curvature="0" /><path + d="m -125.79969,234.69773 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906 m 0,-4.40234 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4724" + inkscape:connector-curvature="0" /><path + d="m -116.20204,228.64929 c -0.56875,1e-5 -0.99713,0.28074 -1.28515,0.84219 -0.28438,0.55782 -0.42657,1.39818 -0.42656,2.52109 -1e-5,1.11928 0.14218,1.95964 0.42656,2.5211 0.28802,0.55781 0.7164,0.83672 1.28515,0.83672 0.5724,0 1.00078,-0.27891 1.28516,-0.83672 0.28802,-0.56146 0.43203,-1.40182 0.43203,-2.5211 0,-1.12291 -0.14401,-1.96327 -0.43203,-2.52109 -0.28438,-0.56145 -0.71276,-0.84218 -1.28516,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.61328,0.36277 2.09454,1.08828 0.48489,0.72188 0.72733,1.77188 0.72734,3.15 -1e-5,1.37449 -0.24245,2.42448 -0.72734,3.15 -0.48126,0.72188 -1.17944,1.08282 -2.09454,1.08282 -0.9151,0 -1.6151,-0.36094 -2.1,-1.08282 -0.48125,-0.72552 -0.72187,-1.77551 -0.72187,-3.15 0,-1.37812 0.24062,-2.42812 0.72187,-3.15 0.4849,-0.72551 1.1849,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4726" + inkscape:connector-curvature="0" /><path + d="m -111.43329,234.69773 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4728" + inkscape:connector-curvature="0" /><path + d="m -105.50516,228.64929 c -0.56875,1e-5 -0.99714,0.28074 -1.28516,0.84219 -0.28437,0.55782 -0.42656,1.39818 -0.42656,2.52109 0,1.11928 0.14219,1.95964 0.42656,2.5211 0.28802,0.55781 0.71641,0.83672 1.28516,0.83672 0.57239,0 1.00078,-0.27891 1.28516,-0.83672 0.28801,-0.56146 0.43202,-1.40182 0.43203,-2.5211 -1e-5,-1.12291 -0.14402,-1.96327 -0.43203,-2.52109 -0.28438,-0.56145 -0.71277,-0.84218 -1.28516,-0.84219 m 0,-0.875 c 0.9151,1e-5 1.61328,0.36277 2.09453,1.08828 0.48489,0.72188 0.72734,1.77188 0.72735,3.15 -1e-5,1.37449 -0.24246,2.42448 -0.72735,3.15 -0.48125,0.72188 -1.17943,1.08282 -2.09453,1.08282 -0.91511,0 -1.61511,-0.36094 -2.1,-1.08282 -0.48125,-0.72552 -0.72187,-1.77551 -0.72187,-3.15 0,-1.37812 0.24062,-2.42812 0.72187,-3.15 0.48489,-0.72551 1.18489,-1.08827 2.1,-1.08828" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4730" + inkscape:connector-curvature="0" /><path + d="m -100.545,235.1571 1.804683,0 0,-6.2289 -1.963283,0.39375 0,-1.00625 1.952346,-0.39375 1.104687,0 0,7.23515 1.804688,0 0,0.92969 -4.703121,0 0,-0.92969" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4732" + inkscape:connector-curvature="0" /><path + d="m -88.9786,231.13757 c 0.251557,-0.45207 0.552338,-0.78567 0.902344,-1.00078 0.349993,-0.2151 0.761972,-0.32265 1.235938,-0.32265 0.638012,0 1.130199,0.22422 1.476562,0.67265 0.346344,0.4448 0.519521,1.07917 0.519531,1.90313 l 0,3.69687 -1.011718,0 0,-3.66406 c -9e-6,-0.58698 -0.103916,-1.02265 -0.311719,-1.30703 -0.207821,-0.28437 -0.525008,-0.42656 -0.951563,-0.42656 -0.521361,0 -0.93334,0.17318 -1.235937,0.51953 -0.30261,0.34636 -0.453912,0.81849 -0.453906,1.4164 l 0,3.46172 -1.011719,0 0,-3.66406 c -5e-6,-0.59062 -0.103911,-1.0263 -0.311719,-1.30703 -0.207817,-0.28437 -0.52865,-0.42656 -0.9625,-0.42656 -0.514066,0 -0.922398,0.175 -1.225,0.525 -0.302606,0.34635 -0.453908,0.81667 -0.453906,1.41093 l 0,3.46172 -1.011719,0 0,-6.125 1.011719,0 0,0.95156 c 0.229685,-0.37551 0.504945,-0.65259 0.825781,-0.83125 0.32083,-0.17864 0.70182,-0.26796 1.142969,-0.26796 0.444787,0 0.82213,0.11302 1.132031,0.33906 0.313536,0.22605 0.545047,0.55417 0.694531,0.98437" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4734" + inkscape:connector-curvature="0" /><path + d="m -78.062973,231.13757 c 0.251556,-0.45207 0.552337,-0.78567 0.902344,-1.00078 0.349993,-0.2151 0.761971,-0.32265 1.235937,-0.32265 0.638012,0 1.130199,0.22422 1.476563,0.67265 0.346344,0.4448 0.519521,1.07917 0.519531,1.90313 l 0,3.69687 -1.011719,0 0,-3.66406 c -9e-6,-0.58698 -0.103915,-1.02265 -0.311719,-1.30703 -0.207821,-0.28437 -0.525008,-0.42656 -0.951562,-0.42656 -0.521361,0 -0.93334,0.17318 -1.235938,0.51953 -0.30261,0.34636 -0.453912,0.81849 -0.453906,1.4164 l 0,3.46172 -1.011719,0 0,-3.66406 c -5e-6,-0.59062 -0.103911,-1.0263 -0.311718,-1.30703 -0.207817,-0.28437 -0.52865,-0.42656 -0.9625,-0.42656 -0.514066,0 -0.922399,0.175 -1.225,0.525 -0.302607,0.34635 -0.453909,0.81667 -0.453907,1.41093 l 0,3.46172 -1.011718,0 0,-6.125 1.011718,0 0,0.95156 c 0.229686,-0.37551 0.504946,-0.65259 0.825782,-0.83125 0.32083,-0.17864 0.701819,-0.26796 1.142968,-0.26796 0.444788,0 0.822131,0.11302 1.132032,0.33906 0.313536,0.22605 0.545046,0.55417 0.694531,0.98437" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4736" + inkscape:connector-curvature="0" /></g><g + style="font-size:9.60000038px" + id="text4851-7"><path + d="m -209.90514,80.585301 6.90703,0 0,0.929688 -2.89844,0 0,7.235156 -1.11015,0 0,-7.235156 -2.89844,0 0,-0.929688" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4739" + inkscape:connector-curvature="0" /><path + d="m -201.48874,83.330614 c -0.53958,5e-6 -0.96614,0.211463 -1.27968,0.634375 -0.31355,0.419275 -0.47032,0.995316 -0.47032,1.728125 0,0.732815 0.15495,1.310679 0.46485,1.733593 0.31354,0.419272 0.74192,0.628907 1.28515,0.628907 0.53594,0 0.96068,-0.211458 1.27422,-0.634375 0.31354,-0.422915 0.47031,-0.998956 0.47032,-1.728125 -1e-5,-0.725517 -0.15678,-1.299735 -0.47032,-1.722656 -0.31354,-0.426558 -0.73828,-0.639839 -1.27422,-0.639844 m 0,-0.853125 c 0.875,6e-6 1.56224,0.284381 2.06172,0.853125 0.49948,0.568755 0.74922,1.356254 0.74922,2.3625 0,1.002606 -0.24974,1.790105 -0.74922,2.3625 -0.49948,0.56875 -1.18672,0.853125 -2.06172,0.853125 -0.87864,0 -1.56771,-0.284375 -2.06718,-0.853125 -0.49584,-0.572395 -0.74375,-1.359894 -0.74375,-2.3625 0,-1.006246 0.24791,-1.793745 0.74375,-2.3625 0.49947,-0.568744 1.18854,-0.853119 2.06718,-0.853125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4741" + inkscape:connector-curvature="0" /><path + d="m -193.39499,80.585301 5.1625,0 0,0.929688 -4.05781,0 0,2.417187 3.88828,0 0,0.929688 -3.88828,0 0,2.958593 4.15625,0 0,0.929688 -5.26094,0 0,-8.164844" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4743" + inkscape:connector-curvature="0" /><path + d="m -181.25983,85.05327 0,3.696875 -1.00625,0 0,-3.664062 c 0,-0.579684 -0.11302,-1.013537 -0.33906,-1.301563 -0.22605,-0.288016 -0.56511,-0.432026 -1.01719,-0.432031 -0.54323,5e-6 -0.97162,0.173182 -1.28516,0.519531 -0.31354,0.346359 -0.47031,0.818494 -0.47031,1.416406 l 0,3.461719 -1.01172,0 0,-6.125 1.01172,0 0,0.951563 c 0.24062,-0.368224 0.52318,-0.643484 0.84766,-0.825782 0.32812,-0.182285 0.70546,-0.273431 1.13203,-0.273437 0.70364,6e-6 1.23593,0.218756 1.59687,0.65625 0.36094,0.433859 0.5414,1.073702 0.54141,1.919531" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4745" + inkscape:connector-curvature="0" /><path + d="m -175.21139,85.616551 c -1e-5,-0.729163 -0.15131,-1.294266 -0.45391,-1.695312 -0.29896,-0.401037 -0.72005,-0.601557 -1.26328,-0.601563 -0.53959,6e-6 -0.96068,0.200526 -1.26328,0.601563 -0.29896,0.401046 -0.44844,0.966149 -0.44844,1.695312 0,0.725523 0.14948,1.288804 0.44844,1.689844 0.3026,0.401043 0.72369,0.601563 1.26328,0.601562 0.54323,10e-7 0.96432,-0.200519 1.26328,-0.601562 0.3026,-0.40104 0.4539,-0.964321 0.45391,-1.689844 m 1.00625,2.373438 c -1e-5,1.042708 -0.23152,1.817447 -0.69453,2.324218 -0.46303,0.510415 -1.17214,0.765623 -2.12735,0.765625 -0.35365,-2e-6 -0.68724,-0.02735 -1.00078,-0.08203 -0.31354,-0.05104 -0.61797,-0.131252 -0.91328,-0.240625 l 0,-0.978906 c 0.29531,0.160415 0.58698,0.278905 0.875,0.355469 0.28802,0.07656 0.58151,0.114842 0.88047,0.114843 0.65989,-10e-7 1.1539,-0.173178 1.48203,-0.519531 0.32812,-0.342709 0.49218,-0.862239 0.49219,-1.558594 l 0,-0.497656 c -0.20782,0.360938 -0.47396,0.63073 -0.79844,0.809375 -0.32448,0.178646 -0.71276,0.267969 -1.16484,0.267969 -0.75105,0 -1.35625,-0.286198 -1.81563,-0.858594 -0.45937,-0.572394 -0.68906,-1.330727 -0.68906,-2.275 0,-0.947912 0.22969,-1.708068 0.68906,-2.280468 0.45938,-0.57239 1.06458,-0.858588 1.81563,-0.858594 0.45208,6e-6 0.84036,0.08933 1.16484,0.267969 0.32448,0.178651 0.59062,0.448443 0.79844,0.809375 l 0,-0.929688 1.00625,0 0,5.364844" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4747" + inkscape:connector-curvature="0" /><path + d="m -168.58327,83.56577 c -0.11302,-0.06562 -0.23698,-0.113015 -0.37187,-0.142187 -0.13126,-0.03281 -0.27709,-0.04921 -0.4375,-0.04922 -0.56875,5e-6 -1.00625,0.185942 -1.3125,0.557812 -0.30261,0.368234 -0.45391,0.898702 -0.45391,1.591407 l 0,3.226562 -1.01172,0 0,-6.125 1.01172,0 0,0.951563 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.825782 0.33906,-0.182285 0.75104,-0.273431 1.23594,-0.273437 0.0693,6e-6 0.14583,0.0055 0.22969,0.01641 0.0838,0.0073 0.17682,0.02006 0.2789,0.03828 l 0.005,1.033594" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4749" + inkscape:connector-curvature="0" /><path + d="m -164.73327,85.671239 c -0.81302,3e-6 -1.3763,0.09297 -1.68984,0.278906 -0.31355,0.18594 -0.47032,0.503127 -0.47031,0.951562 -1e-5,0.357294 0.11666,0.641668 0.35,0.853125 0.23697,0.207814 0.55781,0.31172 0.9625,0.311719 0.5578,10e-7 1.00442,-0.196874 1.33984,-0.590625 0.33906,-0.397394 0.50859,-0.924216 0.50859,-1.580468 l 0,-0.224219 -1.00078,0 m 2.00703,-0.415625 0,3.494531 -1.00625,0 0,-0.929688 c -0.22969,0.371876 -0.51589,0.647136 -0.85859,0.825782 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.353645 -0.55234,-0.82578 -0.55234,-1.416407 0,-0.68906 0.22968,-1.20859 0.68906,-1.558593 0.46302,-0.349997 1.15208,-0.524996 2.06719,-0.525 l 1.41093,0 0,-0.09844 c 0,-0.463016 -0.15313,-0.820307 -0.45937,-1.071875 -0.30261,-0.255203 -0.72917,-0.382807 -1.27969,-0.382812 -0.35,5e-6 -0.69089,0.04193 -1.02266,0.125781 -0.33177,0.08386 -0.65078,0.209641 -0.95703,0.377344 l 0,-0.929688 c 0.36823,-0.142181 0.72552,-0.24791 1.07188,-0.317187 0.34635,-0.07291 0.68359,-0.109369 1.01172,-0.109375 0.88593,6e-6 1.54765,0.229693 1.98515,0.689062 0.4375,0.45938 0.65625,1.155734 0.65625,2.089063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4751" + inkscape:connector-curvature="0" /><path + d="m -161.36999,82.625145 1.06641,0 1.91406,5.140625 1.91407,-5.140625 1.0664,0 -2.29687,6.125 -1.36719,0 -2.29688,-6.125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4753" + inkscape:connector-curvature="0" /><path + d="m -148.78092,85.436083 0,0.492187 -4.62657,0 c 0.0437,0.69271 0.25156,1.221356 0.62344,1.585937 0.37552,0.360939 0.89687,0.541407 1.56406,0.541407 0.38646,0 0.76016,-0.0474 1.1211,-0.142188 0.36458,-0.09479 0.72551,-0.236978 1.08281,-0.426562 l 0,0.951562 c -0.36094,0.153125 -0.73099,0.269792 -1.11016,0.35 -0.37917,0.08021 -0.7638,0.120313 -1.1539,0.120313 -0.97709,0 -1.75183,-0.284375 -2.32422,-0.853125 -0.56875,-0.568749 -0.85313,-1.338019 -0.85313,-2.307813 0,-1.0026 0.26979,-1.797391 0.80938,-2.384375 0.54323,-0.590619 1.27422,-0.885931 2.19297,-0.885937 0.82395,6e-6 1.47473,0.266152 1.95234,0.798437 0.48125,0.528651 0.72187,1.248702 0.72188,2.160157 m -1.00625,-0.295313 c -0.007,-0.550517 -0.16225,-0.989839 -0.46485,-1.317969 -0.29896,-0.328119 -0.69636,-0.492182 -1.19218,-0.492187 -0.56147,5e-6 -1.01173,0.158599 -1.35079,0.475781 -0.33541,0.317192 -0.52864,0.763806 -0.57968,1.339844 l 3.5875,-0.0055" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4755" + inkscape:connector-curvature="0" /><path + d="m -140.78014,85.671239 c -0.81302,3e-6 -1.3763,0.09297 -1.68984,0.278906 -0.31355,0.18594 -0.47032,0.503127 -0.47032,0.951562 0,0.357294 0.11667,0.641668 0.35,0.853125 0.23698,0.207814 0.55781,0.31172 0.9625,0.311719 0.55781,10e-7 1.00443,-0.196874 1.33985,-0.590625 0.33906,-0.397394 0.50859,-0.924216 0.50859,-1.580468 l 0,-0.224219 -1.00078,0 m 2.00703,-0.415625 0,3.494531 -1.00625,0 0,-0.929688 c -0.22969,0.371876 -0.51589,0.647136 -0.85859,0.825782 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12657,-0.175 -1.49844,-0.525 -0.36823,-0.353645 -0.55235,-0.82578 -0.55235,-1.416407 0,-0.68906 0.22969,-1.20859 0.68907,-1.558593 0.46302,-0.349997 1.15208,-0.524996 2.06718,-0.525 l 1.41094,0 0,-0.09844 c 0,-0.463016 -0.15313,-0.820307 -0.45937,-1.071875 -0.30261,-0.255203 -0.72917,-0.382807 -1.27969,-0.382812 -0.35,5e-6 -0.69089,0.04193 -1.02266,0.125781 -0.33177,0.08386 -0.65078,0.209641 -0.95703,0.377344 l 0,-0.929688 c 0.36823,-0.142181 0.72552,-0.24791 1.07188,-0.317187 0.34635,-0.07291 0.68359,-0.109369 1.01172,-0.109375 0.88593,6e-6 1.54765,0.229693 1.98515,0.689062 0.4375,0.45938 0.65625,1.155734 0.65625,2.089063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4757" + inkscape:connector-curvature="0" /><path + d="m -131.60358,85.05327 0,3.696875 -1.00625,0 0,-3.664062 c -1e-5,-0.579684 -0.11303,-1.013537 -0.33907,-1.301563 -0.22604,-0.288016 -0.5651,-0.432026 -1.01718,-0.432031 -0.54324,5e-6 -0.97162,0.173182 -1.28516,0.519531 -0.31354,0.346359 -0.47031,0.818494 -0.47031,1.416406 l 0,3.461719 -1.01172,0 0,-6.125 1.01172,0 0,0.951563 c 0.24062,-0.368224 0.52317,-0.643484 0.84765,-0.825782 0.32813,-0.182285 0.70547,-0.273431 1.13204,-0.273437 0.70364,6e-6 1.23593,0.218756 1.59687,0.65625 0.36093,0.433859 0.5414,1.073702 0.54141,1.919531" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4759" + inkscape:connector-curvature="0" /><path + d="m -123.24733,81.673583 -1.49844,4.063281 3.00235,0 -1.50391,-4.063281 m -0.62344,-1.088282 1.25235,0 3.11172,8.164844 -1.14844,0 -0.74375,-2.094531 -3.68047,0 -0.74375,2.094531 -1.16484,0 3.11718,-8.164844" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4761" + inkscape:connector-curvature="0" /><path + d="m -114.81452,83.56577 c -0.11302,-0.06562 -0.23698,-0.113015 -0.37187,-0.142187 -0.13126,-0.03281 -0.27709,-0.04921 -0.4375,-0.04922 -0.56876,5e-6 -1.00626,0.185942 -1.3125,0.557812 -0.30261,0.368234 -0.45391,0.898702 -0.45391,1.591407 l 0,3.226562 -1.01172,0 0,-6.125 1.01172,0 0,0.951563 c 0.21146,-0.37187 0.48672,-0.64713 0.82578,-0.825782 0.33906,-0.182285 0.75104,-0.273431 1.23594,-0.273437 0.0693,6e-6 0.14583,0.0055 0.22969,0.01641 0.0838,0.0073 0.17682,0.02006 0.2789,0.03828 l 0.005,1.033594" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4763" + inkscape:connector-curvature="0" /><path + d="m -108.73873,85.436083 0,0.492187 -4.62657,0 c 0.0438,0.69271 0.25157,1.221356 0.62344,1.585937 0.37552,0.360939 0.89687,0.541407 1.56406,0.541407 0.38646,0 0.76016,-0.0474 1.1211,-0.142188 0.36458,-0.09479 0.72551,-0.236978 1.08281,-0.426562 l 0,0.951562 c -0.36094,0.153125 -0.73099,0.269792 -1.11016,0.35 -0.37917,0.08021 -0.7638,0.120313 -1.1539,0.120313 -0.97709,0 -1.75183,-0.284375 -2.32422,-0.853125 -0.56875,-0.568749 -0.85313,-1.338019 -0.85313,-2.307813 0,-1.0026 0.2698,-1.797391 0.80938,-2.384375 0.54323,-0.590619 1.27422,-0.885931 2.19297,-0.885937 0.82395,6e-6 1.47473,0.266152 1.95234,0.798437 0.48125,0.528651 0.72187,1.248702 0.72188,2.160157 m -1.00625,-0.295313 c -0.007,-0.550517 -0.16225,-0.989839 -0.46485,-1.317969 -0.29896,-0.328119 -0.69636,-0.492182 -1.19218,-0.492187 -0.56147,5e-6 -1.01173,0.158599 -1.35079,0.475781 -0.33541,0.317192 -0.52864,0.763806 -0.57968,1.339844 l 3.5875,-0.0055" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4765" + inkscape:connector-curvature="0" /><path + d="m -104.29264,85.671239 c -0.81303,3e-6 -1.37631,0.09297 -1.68985,0.278906 -0.31354,0.18594 -0.47031,0.503127 -0.47031,0.951562 0,0.357294 0.11666,0.641668 0.35,0.853125 0.23698,0.207814 0.55781,0.31172 0.9625,0.311719 0.55781,10e-7 1.00442,-0.196874 1.33984,-0.590625 0.33906,-0.397394 0.50859,-0.924216 0.5086,-1.580468 l 0,-0.224219 -1.00078,0 m 2.00703,-0.415625 0,3.494531 -1.00625,0 0,-0.929688 c -0.22969,0.371876 -0.51589,0.647136 -0.8586,0.825782 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62708,0 -1.12656,-0.175 -1.49844,-0.525 -0.36823,-0.353645 -0.55234,-0.82578 -0.55234,-1.416407 0,-0.68906 0.22969,-1.20859 0.68906,-1.558593 0.46302,-0.349997 1.15208,-0.524996 2.06719,-0.525 l 1.41094,0 0,-0.09844 c -1e-5,-0.463016 -0.15313,-0.820307 -0.45938,-1.071875 -0.30261,-0.255203 -0.72917,-0.382807 -1.27969,-0.382812 -0.35,5e-6 -0.69088,0.04193 -1.02265,0.125781 -0.33177,0.08386 -0.65078,0.209641 -0.95703,0.377344 l 0,-0.929688 c 0.36823,-0.142181 0.72552,-0.24791 1.07187,-0.317187 0.34635,-0.07291 0.68359,-0.109369 1.01172,-0.109375 0.88593,6e-6 1.54765,0.229693 1.98516,0.689062 0.43749,0.45938 0.65624,1.155734 0.65625,2.089063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4767" + inkscape:connector-curvature="0" /><path + d="m -99.950455,87.361082 1.153906,0 0,1.389063 -1.153906,0 0,-1.389063 m 0,-4.402343 1.153906,0 0,1.389062 -1.153906,0 0,-1.389062" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4769" + inkscape:connector-curvature="0" /><path + d="m -208.77311,94.025304 4.69219,0 0,0.929687 -3.5875,0 0,2.40625 3.2375,0 0,0.929688 -3.2375,0 0,3.899221 -1.10469,0 0,-8.164846" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4771" + inkscape:connector-curvature="0" /><path + d="m -203.16217,96.065148 1.00625,0 0,6.125002 -1.00625,0 0,-6.125002 m 0,-2.384375 1.00625,0 0,1.274218 -1.00625,0 0,-1.274218" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4773" + inkscape:connector-curvature="0" /><path + d="m -200.04499,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4775" + inkscape:connector-curvature="0" /><path + d="m -196.93874,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4777" + inkscape:connector-curvature="0" /><path + d="m -184.10905,94.65421 0,1.164844 c -0.37188,-0.346348 -0.76928,-0.605202 -1.19219,-0.776563 -0.41927,-0.171347 -0.86589,-0.257024 -1.33984,-0.257031 -0.93334,7e-6 -1.64792,0.286205 -2.14375,0.858594 -0.49584,0.568756 -0.74375,1.392713 -0.74375,2.471875 0,1.075524 0.24791,1.899481 0.74375,2.471871 0.49583,0.56875 1.21041,0.85313 2.14375,0.85313 0.47395,0 0.92057,-0.0857 1.33984,-0.25703 0.42291,-0.17136 0.82031,-0.43021 1.19219,-0.77657 l 0,1.15391 c -0.38646,0.2625 -0.79662,0.45938 -1.23047,0.59063 -0.43021,0.13125 -0.88594,0.19687 -1.36719,0.19687 -1.23594,0 -2.20937,-0.37734 -2.92031,-1.13203 -0.71094,-0.75833 -1.0664,-1.791924 -1.0664,-3.100781 0,-1.312495 0.35546,-2.346088 1.0664,-3.100781 0.71094,-0.758326 1.68437,-1.137492 2.92031,-1.1375 0.48854,8e-6 0.94792,0.06563 1.37813,0.196875 0.43385,0.127612 0.84036,0.320841 1.21953,0.579687" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4779" + inkscape:connector-curvature="0" /><path + d="m -180.06218,96.770616 c -0.53958,6e-6 -0.96614,0.211464 -1.27968,0.634375 -0.31355,0.419275 -0.47032,0.995317 -0.47032,1.728125 0,0.732815 0.15495,1.310684 0.46485,1.733594 0.31354,0.41927 0.74192,0.62891 1.28515,0.62891 0.53594,0 0.96068,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.998955 0.47032,-1.728124 -10e-6,-0.725517 -0.15678,-1.299735 -0.47032,-1.722656 -0.31354,-0.426557 -0.73828,-0.639838 -1.27422,-0.639844 m 0,-0.853125 c 0.875,7e-6 1.56224,0.284381 2.06172,0.853125 0.49948,0.568755 0.74922,1.356254 0.74922,2.3625 0,1.002604 -0.24974,1.790104 -0.74922,2.362504 -0.49948,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87864,0 -1.56771,-0.28437 -2.06718,-0.85312 -0.49584,-0.5724 -0.74375,-1.3599 -0.74375,-2.362504 0,-1.006246 0.24791,-1.793745 0.74375,-2.3625 0.49947,-0.568744 1.18854,-0.853118 2.06718,-0.853125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4781" + inkscape:connector-curvature="0" /><path + d="m -175.58874,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4783" + inkscape:connector-curvature="0" /><path + d="m -170.10905,96.770616 c -0.53959,6e-6 -0.96615,0.211464 -1.27969,0.634375 -0.31354,0.419275 -0.47031,0.995317 -0.47031,1.728125 0,0.732815 0.15495,1.310684 0.46484,1.733594 0.31354,0.41927 0.74193,0.62891 1.28516,0.62891 0.53593,0 0.96067,-0.21146 1.27422,-0.63438 0.31354,-0.42291 0.47031,-0.998955 0.47031,-1.728124 0,-0.725517 -0.15677,-1.299735 -0.47031,-1.722656 -0.31355,-0.426557 -0.73829,-0.639838 -1.27422,-0.639844 m 0,-0.853125 c 0.875,7e-6 1.56223,0.284381 2.06172,0.853125 0.49947,0.568755 0.74921,1.356254 0.74922,2.3625 -1e-5,1.002604 -0.24975,1.790104 -0.74922,2.362504 -0.49949,0.56875 -1.18672,0.85312 -2.06172,0.85312 -0.87865,0 -1.56771,-0.28437 -2.06719,-0.85312 -0.49583,-0.5724 -0.74375,-1.3599 -0.74375,-2.362504 0,-1.006246 0.24792,-1.793745 0.74375,-2.3625 0.49948,-0.568744 1.18854,-0.853118 2.06719,-0.853125" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4785" + inkscape:connector-curvature="0" /><path + d="m -162.08639,97.005772 c -0.11303,-0.06562 -0.23699,-0.113015 -0.37188,-0.142187 -0.13125,-0.03281 -0.27709,-0.04921 -0.4375,-0.04922 -0.56875,6e-6 -1.00625,0.185943 -1.3125,0.557813 -0.30261,0.368233 -0.45391,0.898702 -0.45391,1.591406 l 0,3.226566 -1.01171,0 0,-6.125003 1.01171,0 0,0.951562 c 0.21146,-0.371869 0.48672,-0.64713 0.82579,-0.825781 0.33905,-0.182286 0.75103,-0.273431 1.23593,-0.273438 0.0693,7e-6 0.14583,0.0055 0.22969,0.01641 0.0838,0.0073 0.17682,0.02006 0.27891,0.03828 l 0.005,1.033593" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4787" + inkscape:connector-curvature="0" /><path + d="m -157.19733,100.80108 1.15391,0 0,1.38907 -1.15391,0 0,-1.38907 m 0,-4.402339 1.15391,0 0,1.389063 -1.15391,0 0,-1.389063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4789" + inkscape:connector-curvature="0" /><path + d="m -148.95593,98.290929 0,2.991401 1.77188,0 c 0.59427,1e-5 1.03359,-0.12213 1.31797,-0.3664 0.28801,-0.24792 0.43202,-0.62526 0.43203,-1.132033 -10e-6,-0.510413 -0.14402,-0.885934 -0.43203,-1.126562 -0.28438,-0.244267 -0.7237,-0.366402 -1.31797,-0.366406 l -1.77188,0 m 0,-3.357813 0,2.460938 1.63516,0 c 0.53958,5e-6 0.94062,-0.100256 1.20313,-0.300782 0.26614,-0.204161 0.39921,-0.514056 0.39921,-0.929687 0,-0.411973 -0.13307,-0.720045 -0.39921,-0.924219 -0.26251,-0.204159 -0.66355,-0.306242 -1.20313,-0.30625 l -1.63516,0 m -1.10468,-0.907812 2.82187,0 c 0.84218,8e-6 1.49114,0.175008 1.94688,0.525 0.45572,0.350007 0.68358,0.847663 0.68359,1.492969 -1e-5,0.499484 -0.11667,0.89688 -0.35,1.192187 -0.23334,0.295317 -0.57605,0.479432 -1.02812,0.552344 0.54322,0.116671 0.96431,0.360941 1.26328,0.732812 0.30259,0.368233 0.4539,0.82943 0.4539,1.383594 0,0.72917 -0.24792,1.29245 -0.74375,1.68984 -0.49584,0.3974 -1.2013,0.5961 -2.1164,0.5961 l -2.93125,0 0,-8.164846" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4791" + inkscape:connector-curvature="0" /><path + d="m -142.42624,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4793" + inkscape:connector-curvature="0" /><path + d="m -136.5364,99.111241 c -0.81302,3e-6 -1.3763,0.09297 -1.68984,0.278906 -0.31354,0.185941 -0.47031,0.503128 -0.47031,0.951563 0,0.35729 0.11666,0.64167 0.35,0.85312 0.23698,0.20782 0.55781,0.31172 0.9625,0.31172 0.55781,0 1.00442,-0.19687 1.33984,-0.59062 0.33906,-0.3974 0.50859,-0.924218 0.5086,-1.58047 l 0,-0.224219 -1.00079,0 m 2.00704,-0.415625 0,3.494534 -1.00625,0 0,-0.92969 c -0.2297,0.37188 -0.51589,0.64714 -0.8586,0.82578 -0.34271,0.175 -0.76198,0.2625 -1.25781,0.2625 -0.62709,0 -1.12656,-0.175 -1.49844,-0.525 -0.36823,-0.35364 -0.55234,-0.82578 -0.55234,-1.41641 0,-0.689055 0.22969,-1.208586 0.68906,-1.558589 0.46302,-0.349996 1.15208,-0.524996 2.06719,-0.525 l 1.41094,0 0,-0.09844 c -1e-5,-0.463017 -0.15313,-0.820308 -0.45938,-1.071875 -0.30261,-0.255203 -0.72917,-0.382807 -1.27969,-0.382813 -0.35,6e-6 -0.69088,0.04193 -1.02265,0.125781 -0.33178,0.08386 -0.65079,0.209641 -0.95703,0.377344 l 0,-0.929687 c 0.36822,-0.142182 0.72551,-0.247911 1.07187,-0.317188 0.34635,-0.07291 0.68359,-0.109368 1.01172,-0.109375 0.88593,7e-6 1.54765,0.229694 1.98516,0.689063 0.43749,0.45938 0.65624,1.155733 0.65625,2.089062" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4795" + inkscape:connector-curvature="0" /><path + d="m -128.04343,96.300304 0,0.940625 c -0.28438,-0.156766 -0.57057,-0.273433 -0.85859,-0.35 -0.28438,-0.0802 -0.5724,-0.120307 -0.86406,-0.120313 -0.65261,6e-6 -1.15938,0.207818 -1.52031,0.623438 -0.36094,0.411983 -0.54141,0.99167 -0.54141,1.739062 0,0.747398 0.18047,1.328904 0.54141,1.744534 0.36093,0.41198 0.8677,0.61797 1.52031,0.61797 0.29166,0 0.57968,-0.0383 0.86406,-0.11485 0.28802,-0.0802 0.57421,-0.19869 0.85859,-0.35547 l 0,0.92969 c -0.28073,0.13125 -0.5724,0.22969 -0.875,0.29531 -0.29896,0.0656 -0.61797,0.0984 -0.95703,0.0984 -0.92239,0 -1.65521,-0.28984 -2.19843,-0.86953 -0.54323,-0.57969 -0.81485,-1.36172 -0.81485,-2.346094 0,-0.998954 0.27344,-1.78463 0.82031,-2.357031 0.55052,-0.57239 1.30339,-0.858587 2.2586,-0.858594 0.30989,7e-6 0.61249,0.03282 0.90781,0.09844 0.29531,0.06199 0.58151,0.156777 0.85859,0.284375" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4797" + inkscape:connector-curvature="0" /><path + d="m -126.32077,93.680773 1.01172,0 0,5.025781 3.00234,-2.641406 1.28516,0 -3.24844,2.865624 3.38516,3.259378 -1.3125,0 -3.11172,-2.991409 0,2.991409 -1.01172,0 0,-8.509377" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4799" + inkscape:connector-curvature="0" /><path + d="m -116.72858,98.673741 2.94765,0 0,0.896875 -2.94765,0 0,-0.896875" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4801" + inkscape:connector-curvature="0" /><path + d="m -104.69186,98.362022 c 0.23697,0.08021 0.46666,0.251567 0.68906,0.514063 0.22604,0.262503 0.45208,0.62344 0.67812,1.082812 l 1.1211,2.231253 -1.18672,0 -1.04453,-2.09453 c -0.2698,-0.546876 -0.5323,-0.909636 -0.7875,-1.088285 -0.25157,-0.178643 -0.5961,-0.267965 -1.0336,-0.267969 l -1.20312,0 0,3.450784 -1.10469,0 0,-8.164846 2.49375,0 c 0.93333,8e-6 1.62968,0.19506 2.08906,0.585156 0.45937,0.390111 0.68906,0.978913 0.68907,1.766406 -1e-5,0.514068 -0.12032,0.94063 -0.36094,1.279688 -0.23699,0.339066 -0.58334,0.574222 -1.03906,0.705468 m -2.76719,-3.428906 0,2.898438 1.38906,0 c 0.53229,4e-6 0.93333,-0.122131 1.20313,-0.366407 0.27343,-0.247911 0.41015,-0.610671 0.41015,-1.088281 0,-0.477598 -0.13672,-0.836712 -0.41015,-1.077343 -0.2698,-0.244264 -0.67084,-0.366399 -1.20313,-0.366407 l -1.38906,0" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4803" + inkscape:connector-curvature="0" /><path + d="m -100.91296,100.80108 1.15391,0 0,1.38907 -1.15391,0 0,-1.38907 m 0,-4.402339 1.15391,0 0,1.389063 -1.15391,0 0,-1.389063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4805" + inkscape:connector-curvature="0" /><path + d="m -94.880922,94.752648 c -0.568753,7e-6 -0.997138,0.280736 -1.285156,0.842187 -0.284377,0.557819 -0.426565,1.398182 -0.426563,2.521094 -2e-6,1.119273 0.142186,1.959641 0.426563,2.521091 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285156,-0.83672 0.288016,-0.56145 0.432026,-1.401818 0.432031,-2.521091 -5e-6,-1.122912 -0.144015,-1.963275 -0.432031,-2.521094 -0.284379,-0.561451 -0.712764,-0.84218 -1.285156,-0.842187 m 0,-0.875 c 0.9151,8e-6 1.613276,0.362768 2.094531,1.088281 0.48489,0.721881 0.727338,1.77188 0.727344,3.15 -6e-6,1.374482 -0.242454,2.424481 -0.727344,3.150001 -0.481255,0.72187 -1.179431,1.08281 -2.094531,1.08281 -0.915107,0 -1.615106,-0.36094 -2.1,-1.08281 -0.481251,-0.72552 -0.721876,-1.775519 -0.721875,-3.150001 -10e-7,-1.37812 0.240624,-2.428119 0.721875,-3.15 0.484894,-0.725513 1.184893,-1.088273 2.1,-1.088281" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4807" + inkscape:connector-curvature="0" /><path + d="m -81.077803,101.0253 0,-2.192965 -1.804688,0 0,-0.907813 2.898438,0 0,3.505468 c -0.42657,0.30261 -0.896882,0.53229 -1.410938,0.68906 -0.514068,0.15313 -1.062765,0.22969 -1.646093,0.22969 -1.276045,0 -2.275003,-0.37187 -2.996875,-1.11562 -0.71823,-0.7474 -1.077345,-1.786459 -1.077344,-3.117191 -10e-7,-1.33437 0.359114,-2.373431 1.077344,-3.117188 0.721872,-0.747388 1.72083,-1.121085 2.996875,-1.121093 0.532286,8e-6 1.037233,0.06563 1.514843,0.196875 0.481244,0.131258 0.924212,0.324486 1.328907,0.579687 l 0,1.175781 c -0.408341,-0.346347 -0.842195,-0.607024 -1.301563,-0.782031 -0.459381,-0.174993 -0.942453,-0.262493 -1.449219,-0.2625 -0.998962,7e-6 -1.750003,0.278913 -2.253125,0.836719 -0.499481,0.557818 -0.74922,1.389067 -0.749218,2.49375 -2e-6,1.101044 0.249737,1.930471 0.749218,2.488281 0.503122,0.55781 1.254163,0.83672 2.253125,0.83672 0.390099,0 0.738276,-0.0328 1.044532,-0.0984 0.306243,-0.0693 0.581504,-0.175 0.825781,-0.31719" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4809" + inkscape:connector-curvature="0" /><path + d="m -77.74733,100.80108 1.153906,0 0,1.38907 -1.153906,0 0,-1.38907 m 0,-4.402339 1.153906,0 0,1.389063 -1.153906,0 0,-1.389063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4811" + inkscape:connector-curvature="0" /><path + d="m -71.715295,94.752648 c -0.568753,7e-6 -0.997138,0.280736 -1.285157,0.842187 -0.284377,0.557819 -0.426564,1.398182 -0.426562,2.521094 -2e-6,1.119273 0.142185,1.959641 0.426562,2.521091 0.288019,0.55782 0.716404,0.83672 1.285157,0.83672 0.572391,0 1.000776,-0.2789 1.285156,-0.83672 0.288015,-0.56145 0.432026,-1.401818 0.432031,-2.521091 -5e-6,-1.122912 -0.144016,-1.963275 -0.432031,-2.521094 -0.28438,-0.561451 -0.712765,-0.84218 -1.285156,-0.842187 m 0,-0.875 c 0.915099,8e-6 1.613276,0.362768 2.094531,1.088281 0.484889,0.721881 0.727337,1.77188 0.727343,3.15 -6e-6,1.374482 -0.242454,2.424481 -0.727343,3.150001 -0.481255,0.72187 -1.179432,1.08281 -2.094531,1.08281 -0.915107,0 -1.615107,-0.36094 -2.1,-1.08281 -0.481251,-0.72552 -0.721876,-1.775519 -0.721875,-3.150001 -10e-7,-1.37812 0.240624,-2.428119 0.721875,-3.15 0.484893,-0.725513 1.184893,-1.088273 2.1,-1.088281" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4813" + inkscape:connector-curvature="0" /><path + d="m -62.374677,98.290929 0,2.991401 1.771875,0 c 0.594267,1e-5 1.033589,-0.12213 1.317969,-0.3664 0.288015,-0.24792 0.432026,-0.62526 0.432031,-1.132033 -5e-6,-0.510413 -0.144016,-0.885934 -0.432031,-1.126562 -0.28438,-0.244267 -0.723702,-0.366402 -1.317969,-0.366406 l -1.771875,0 m 0,-3.357813 0,2.460938 1.635157,0 c 0.539579,5e-6 0.94062,-0.100256 1.203125,-0.300782 0.26614,-0.204161 0.399213,-0.514056 0.399218,-0.929687 -5e-6,-0.411973 -0.133078,-0.720045 -0.399218,-0.924219 -0.262505,-0.204159 -0.663546,-0.306242 -1.203125,-0.30625 l -1.635157,0 m -1.104687,-0.907812 2.821875,0 c 0.842183,8e-6 1.49114,0.175008 1.946875,0.525 0.455723,0.350007 0.683587,0.847663 0.683594,1.492969 -7e-6,0.499484 -0.116673,0.89688 -0.35,1.192187 -0.23334,0.295317 -0.576048,0.479432 -1.028125,0.552344 0.543223,0.116671 0.964316,0.360941 1.263281,0.732812 0.302597,0.368233 0.453899,0.82943 0.453906,1.383594 -7e-6,0.72917 -0.247923,1.29245 -0.74375,1.68984 -0.495839,0.3974 -1.201307,0.5961 -2.116406,0.5961 l -2.93125,0 0,-8.164846" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4815" + inkscape:connector-curvature="0" /><path + d="m -55.587952,100.80108 1.153907,0 0,1.38907 -1.153907,0 0,-1.38907 m 0,-4.402339 1.153907,0 0,1.389063 -1.153907,0 0,-1.389063" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4817" + inkscape:connector-curvature="0" /><path + d="m -49.555933,94.752648 c -0.568753,7e-6 -0.997138,0.280736 -1.285156,0.842187 -0.284377,0.557819 -0.426564,1.398182 -0.426562,2.521094 -2e-6,1.119273 0.142185,1.959641 0.426562,2.521091 0.288018,0.55782 0.716403,0.83672 1.285156,0.83672 0.572392,0 1.000777,-0.2789 1.285157,-0.83672 0.288015,-0.56145 0.432026,-1.401818 0.432031,-2.521091 -5e-6,-1.122912 -0.144016,-1.963275 -0.432031,-2.521094 -0.28438,-0.561451 -0.712765,-0.84218 -1.285157,-0.842187 m 0,-0.875 c 0.9151,8e-6 1.613276,0.362768 2.094532,1.088281 0.484889,0.721881 0.727337,1.77188 0.727343,3.15 -6e-6,1.374482 -0.242454,2.424481 -0.727343,3.150001 -0.481256,0.72187 -1.179432,1.08281 -2.094532,1.08281 -0.915106,0 -1.615106,-0.36094 -2.1,-1.08281 -0.481251,-0.72552 -0.721875,-1.775519 -0.721875,-3.150001 0,-1.37812 0.240624,-2.428119 0.721875,-3.15 0.484894,-0.725513 1.184894,-1.088273 2.1,-1.088281" + style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" + id="path4819" + inkscape:connector-curvature="0" /></g><g + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="text4859-4"><path + d="m -392.7157,-1.0205482 c -0.73281,1.25782411 -1.27696,2.5019636 -1.63242,3.7324222 -0.35547,1.2304766 -0.53321,2.4773504 -0.5332,3.7406252 -10e-6,1.2632854 0.17773,2.515628 0.5332,3.7570318 0.36093,1.235938 0.90507,2.480077 1.63242,3.732422 l -1.3125,0 c -0.82031,-1.285157 -1.43555,-2.548437 -1.8457,-3.789844 -0.40469,-1.2414037 -0.60703,-2.4746056 -0.60703,-3.6996098 0,-1.2195248 0.20234,-2.447258 0.60703,-3.6832034 0.40468,-1.2359273 1.01992,-2.49920742 1.8457,-3.789844 l 1.3125,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4822" + inkscape:connector-curvature="0" /><path + d="m -389.27859,10.332578 2.70703,0 0,-9.3433604 -2.94492,0.590625 0,-1.50937506 2.92852,-0.59062504 1.65703,0 0,10.8527355 2.70703,0 0,1.394531 -7.05469,0 0,-1.394531" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4824" + inkscape:connector-curvature="0" /><path + d="m -379.31999,-1.0205482 1.3125,0 c 0.82031,1.29063658 1.43281,2.5539167 1.8375,3.789844 0.41015,1.2359454 0.61523,2.4636786 0.61523,3.6832034 0,1.2250042 -0.20508,2.4582061 -0.61523,3.6996098 -0.40469,1.241407 -1.01719,2.504687 -1.8375,3.789844 l -1.3125,0 c 0.72734,-1.252345 1.26874,-2.496484 1.62422,-3.732422 0.36093,-1.2414038 0.5414,-2.4937464 0.5414,-3.7570318 0,-1.2632748 -0.18047,-2.5101486 -0.5414,-3.7406252 -0.35548,-1.2304586 -0.89688,-2.47459809 -1.62422,-3.7324222" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4826" + inkscape:connector-curvature="0" /><path + d="m -367.10554,-0.5201575 2.46914,0 3.12539,8.3343756 3.1418,-8.3343756 2.46914,0 0,12.2472665 -1.61602,0 0,-10.75429765 -3.1582,8.40000055 -1.66523,0 -3.15821,-8.40000055 0,10.75429765 -1.60781,0 0,-12.2472665" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4828" + inkscape:connector-curvature="0" /><path + d="m -348.49265,7.1087493 c -1.21954,4.6e-6 -2.06446,0.1394576 -2.53477,0.4183594 -0.47031,0.2789102 -0.70547,0.754691 -0.70546,1.4273438 -10e-6,0.5359398 0.17499,0.9625019 0.525,1.2796875 0.35546,0.31172 0.83671,0.467579 1.44375,0.467578 0.83671,1e-6 1.50663,-0.295311 2.00976,-0.8859373 0.50859,-0.5960913 0.76289,-1.3863249 0.76289,-2.3707033 l 0,-0.3363281 -1.50117,0 m 3.01055,-0.6234376 0,5.2417973 -1.50938,0 0,-1.394531 c -0.34454,0.557813 -0.77383,0.970703 -1.28789,1.238672 -0.51407,0.262499 -1.14297,0.393749 -1.88672,0.39375 -0.94063,-10e-7 -1.68984,-0.2625 -2.24765,-0.7875 -0.55235,-0.530468 -0.82852,-1.2386706 -0.82852,-2.12461 0,-1.0335901 0.34453,-1.8128862 1.03359,-2.3378908 0.69453,-0.5249945 1.72813,-0.7874942 3.10079,-0.7875 l 2.1164,0 0,-0.1476563 c 0,-0.6945246 -0.22969,-1.2304616 -0.68906,-1.6078126 -0.45391,-0.3828046 -1.09376,-0.5742106 -1.91953,-0.5742188 -0.52501,8.2e-6 -1.03633,0.062899 -1.53399,0.1886719 -0.49765,0.1257891 -0.97617,0.3144608 -1.43554,0.5660157 l 0,-1.3945314 c 0.55234,-0.2132722 1.08828,-0.3718659 1.60781,-0.4757812 0.51953,-0.1093657 1.02539,-0.1640532 1.51758,-0.1640626 1.3289,9.4e-6 2.32148,0.3445404 2.97773,1.0335939 0.65624,0.6890702 0.98437,1.7336005 0.98438,3.1335939" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4830" + inkscape:connector-curvature="0" /><path + d="m -342.42233,-1.0369544 1.51757,0 0,7.5386724 4.50352,-3.9621097 1.92773,0 -4.87265,4.2984378 5.07773,4.8890629 -1.96875,0 -4.66758,-4.4871097 0,4.4871097 -1.51757,0 0,-12.7640634" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4832" + inkscape:connector-curvature="0" /><path + d="m -325.35163,6.7560149 0,0.7382813 -6.93985,0 c 0.0656,1.0390657 0.37734,1.8320337 0.93516,2.3789064 0.56328,0.5414074 1.34531,0.8121104 2.34609,0.8121094 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08828,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54141,0.229688 -1.09649,0.404687 -1.66523,0.525 -0.56876,0.120312 -1.14571,0.180468 -1.73086,0.180469 -1.46563,-10e-7 -2.62774,-0.426563 -3.48633,-1.279688 -0.85313,-0.8531232 -1.27969,-2.0070283 -1.27969,-3.461719 0,-1.5039003 0.40469,-2.6960867 1.21407,-3.5765627 0.81484,-0.8859286 1.91132,-1.328897 3.28945,-1.3289064 1.23593,9.4e-6 2.2121,0.3992278 2.92851,1.1976564 0.72187,0.7929762 1.08281,1.8730533 1.08282,3.2402346 m -1.50938,-0.4429688 c -0.0109,-0.8257751 -0.24336,-1.4847588 -0.69726,-1.9769533 -0.44845,-0.4921796 -1.04454,-0.7382731 -1.78828,-0.7382813 -0.8422,8.2e-6 -1.51759,0.2378986 -2.02618,0.713672 -0.50312,0.4757882 -0.79297,1.1457094 -0.86953,2.0097657 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4834" + inkscape:connector-curvature="0" /><path + d="m -315.80319,0.84156134 0,4.60195346 2.08359,0 c 0.77109,6.3e-6 1.36718,-0.1996029 1.78828,-0.5988282 0.42109,-0.3992115 0.63163,-0.967961 0.63164,-1.7062501 -10e-6,-0.7328032 -0.21055,-1.2988183 -0.63164,-1.698047 -0.4211,-0.3992081 -1.01719,-0.59881728 -1.78828,-0.59882816 l -2.08359,0 m -1.65704,-1.36171884 3.74063,0 c 1.37265,1.224e-5 2.40898,0.3117307 3.10898,0.93515631 0.70546,0.61797949 1.0582,1.52579119 1.05821,2.72343769 -10e-6,1.2086012 -0.35275,2.1218816 -1.05821,2.7398439 -0.7,0.6179741 -1.73633,0.9269581 -3.10898,0.9269532 l -2.08359,0 0,4.9218754 -1.65704,0 0,-12.2472665" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4836" + inkscape:connector-curvature="0" /><path + d="m -302.34186,3.9505459 c -0.16954,-0.09843 -0.35548,-0.1695233 -0.55781,-0.2132812 -0.19689,-0.049211 -0.41564,-0.07382 -0.65625,-0.073828 -0.85313,8.1e-6 -1.50938,0.2789141 -1.96875,0.8367188 -0.45391,0.5523505 -0.68087,1.3480529 -0.68086,2.3871096 l 0,4.8398439 -1.51758,0 0,-9.1875005 1.51758,0 0,1.4273439 c 0.31718,-0.5578042 0.73007,-0.9706945 1.23867,-1.238672 0.50859,-0.2734282 1.12655,-0.4101469 1.8539,-0.4101563 0.1039,9.4e-6 0.21875,0.00821 0.34454,0.024609 0.12577,0.010947 0.26522,0.030088 0.41835,0.057422 l 0.008,1.5503907" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4838" + inkscape:connector-curvature="0" /><path + d="m -297.54303,3.5978115 c -0.80938,8.2e-6 -1.44923,0.3171954 -1.91954,0.9515626 -0.47031,0.6289128 -0.70547,1.4929745 -0.70546,2.5921877 -1e-5,1.0992223 0.23241,1.9660183 0.69726,2.6003908 0.47031,0.6289074 1.11289,0.9433604 1.92774,0.9433594 0.8039,1e-6 1.44101,-0.317186 1.91132,-0.9515626 0.47031,-0.6343724 0.70547,-1.4984341 0.70547,-2.5921876 0,-1.0882757 -0.23516,-1.949603 -0.70547,-2.5839846 -0.47031,-0.639836 -1.10742,-0.9597575 -1.91132,-0.9597657 m 0,-1.2796876 c 1.31249,9.4e-6 2.34335,0.4265716 3.09257,1.2796876 0.74921,0.8531324 1.12382,2.0343813 1.12383,3.5437503 -10e-6,1.5039094 -0.37462,2.6851583 -1.12383,3.5437502 -0.74922,0.853125 -1.78008,1.279687 -3.09257,1.279688 -1.31798,-10e-7 -2.35157,-0.426563 -3.10079,-1.279688 -0.74375,-0.8585919 -1.11562,-2.0398408 -1.11562,-3.5437502 0,-1.509369 0.37187,-2.6906179 1.11562,-3.5437503 0.74922,-0.853116 1.78281,-1.2796782 3.10079,-1.2796876" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4840" + inkscape:connector-curvature="0" /><path + d="m -284.77077,3.9341397 0,-4.9710941 1.50938,0 0,12.7640634 -1.50938,0 0,-1.378125 c -0.31719,0.546876 -0.71914,0.954297 -1.20586,1.222266 -0.48125,0.262499 -1.06094,0.393749 -1.73906,0.39375 -1.11016,-10e-7 -2.01524,-0.442969 -2.71523,-1.328907 -0.69454,-0.8859353 -1.0418,-2.050778 -1.0418,-3.4945312 0,-1.4437441 0.34726,-2.6085868 1.0418,-3.4945315 0.69999,-0.8859286 1.60507,-1.328897 2.71523,-1.3289064 0.67812,9.4e-6 1.25781,0.1339937 1.73906,0.4019532 0.48672,0.2625088 0.88867,0.6671959 1.20586,1.2140626 m -5.14336,3.2074221 c 0,1.1101598 0.22695,1.9824246 0.68086,2.616797 0.45937,0.6289072 1.08828,0.9433602 1.88672,0.9433592 0.79843,1e-6 1.42734,-0.314452 1.88672,-0.9433592 0.45937,-0.6343724 0.68906,-1.5066372 0.68906,-2.616797 0,-1.1101507 -0.22969,-1.9796811 -0.68906,-2.608594 -0.45938,-0.6343672 -1.08829,-0.9515544 -1.88672,-0.9515625 -0.79844,8.1e-6 -1.42735,0.3171953 -1.88672,0.9515625 -0.45391,0.6289129 -0.68086,1.4984433 -0.68086,2.608594" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4842" + inkscape:connector-curvature="0" /><path + d="m -280.30827,8.1013275 0,-5.5617192 1.50938,0 0,5.5042973 c 0,0.8695341 0.16953,1.5230491 0.50859,1.9605474 0.33906,0.432032 0.84765,0.648048 1.52578,0.648047 0.81484,1e-6 1.45742,-0.259765 1.92774,-0.7792974 0.47577,-0.5195289 0.71366,-1.2277314 0.71367,-2.1246095 l 0,-5.2089848 1.50937,0 0,9.1875007 -1.50937,0 0,-1.410938 c -0.36641,0.557814 -0.79298,0.973438 -1.27969,1.246875 -0.48125,0.267969 -1.0418,0.401953 -1.68164,0.401954 -1.05547,-10e-7 -1.85664,-0.328125 -2.40351,-0.984375 -0.54688,-0.656249 -0.82032,-1.6160138 -0.82032,-2.8792975" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4844" + inkscape:connector-curvature="0" /><path + d="m -262.87663,2.8923427 0,1.4109376 c -0.42657,-0.2351486 -0.85586,-0.4101484 -1.28789,-0.525 -0.42657,-0.1203045 -0.8586,-0.1804606 -1.29609,-0.1804688 -0.97891,8.2e-6 -1.73907,0.3117266 -2.28047,0.9351563 -0.54141,0.6179754 -0.81211,1.4875058 -0.81211,2.608594 0,1.1210973 0.2707,1.9933621 0.81211,2.616797 0.5414,0.6179702 1.30156,0.9269542 2.28047,0.9269532 0.43749,1e-6 0.86952,-0.05742 1.29609,-0.172266 0.43203,-0.120311 0.86132,-0.298045 1.28789,-0.5332028 l 0,1.3945318 c -0.4211,0.196875 -0.8586,0.344531 -1.3125,0.442968 -0.44844,0.09844 -0.92696,0.147656 -1.43554,0.147657 -1.3836,-10e-7 -2.48282,-0.434766 -3.29766,-1.304297 -0.81484,-0.8695297 -1.22227,-2.0425755 -1.22227,-3.5191412 0,-1.4984316 0.41016,-2.6769461 1.23047,-3.5355471 0.82578,-0.8585849 1.95508,-1.2878814 3.38789,-1.2878908 0.46484,9.4e-6 0.91875,0.049228 1.36172,0.1476563 0.44296,0.092978 0.87226,0.2351653 1.28789,0.4265625" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4846" + inkscape:connector-curvature="0" /><path + d="m -258.74225,-0.0689856 0,2.6085939 3.10899,0 0,1.173047 -3.10899,0 0,4.9875003 c 0,0.7492211 0.10117,1.2304707 0.30352,1.4437504 0.20781,0.213282 0.62617,0.319923 1.25508,0.319922 l 1.55039,0 0,1.263281 -1.55039,0 c -1.16485,0 -1.96876,-0.216015 -2.41172,-0.648047 -0.44297,-0.437499 -0.66446,-1.2304669 -0.66446,-2.3789064 l 0,-4.9875003 -1.10742,0 0,-1.173047 1.10742,0 0,-2.6085939 1.51758,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4848" + inkscape:connector-curvature="0" /><path + d="m -247.78288,2.8103115 0,1.4273438 c -0.42657,-0.2187423 -0.86954,-0.3828046 -1.32891,-0.4921875 -0.45938,-0.1093669 -0.93516,-0.1640544 -1.42734,-0.1640625 -0.74922,8.1e-6 -1.3125,0.1148518 -1.68984,0.3445312 -0.37188,0.2296951 -0.55782,0.5742261 -0.55782,1.0335939 0,0.3500064 0.13399,0.626178 0.40196,0.8285157 0.26796,0.1968807 0.80663,0.3855524 1.61601,0.5660156 l 0.5168,0.1148438 c 1.07187,0.2296925 1.83202,0.5550828 2.28047,0.9761719 0.4539,0.4156289 0.68085,0.9980502 0.68086,1.7472658 -10e-6,0.8531268 -0.33907,1.5285168 -1.01719,2.0261718 -0.67266,0.497656 -1.59961,0.746484 -2.78086,0.746485 -0.49219,-10e-7 -1.00625,-0.04922 -1.54219,-0.147657 -0.53047,-0.09297 -1.09101,-0.235156 -1.68164,-0.426562 l 0,-1.558594 c 0.55781,0.289845 1.10742,0.508595 1.64883,0.65625 0.5414,0.142189 1.07734,0.213282 1.60781,0.213281 0.71094,1e-6 1.25781,-0.120311 1.64063,-0.360937 0.38281,-0.246092 0.57421,-0.5906233 0.57422,-1.0335941 -1e-5,-0.4101534 -0.13946,-0.7246063 -0.41836,-0.9433594 -0.27344,-0.2187465 -0.87774,-0.4292931 -1.81289,-0.6316407 l -0.525,-0.1230469 c -0.93516,-0.1968707 -1.61055,-0.4976516 -2.02617,-0.9023438 -0.41563,-0.4101508 -0.62344,-0.9706972 -0.62344,-1.6816407 0,-0.864055 0.30625,-1.5312419 0.91875,-2.0015627 0.6125,-0.4703033 1.48203,-0.7054594 2.60859,-0.7054688 0.55781,9.4e-6 1.08281,0.041025 1.575,0.1230469 0.49218,0.08204 0.94609,0.2050872 1.36172,0.3691407" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4850" + inkscape:connector-curvature="0" /><path + d="m -240.40827,2.5396083 1.50937,0 1.88672,7.1695318 1.87852,-7.1695318 1.78008,0 1.88672,7.1695318 1.87851,-7.1695318 1.50938,0 -2.40352,9.1875007 -1.78008,0 -1.97695,-7.5304693 -1.98516,7.5304693 -1.78007,0 -2.40352,-9.1875007" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4852" + inkscape:connector-curvature="0" /><path + d="m -225.78209,2.5396083 1.50937,0 0,9.1875007 -1.50937,0 0,-9.1875007 m 0,-3.5765627 1.50937,0 0,1.91132824 -1.50937,0 0,-1.91132824" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4854" + inkscape:connector-curvature="0" /><path + d="m -219.62975,-0.0689856 0,2.6085939 3.10899,0 0,1.173047 -3.10899,0 0,4.9875003 c 0,0.7492211 0.10117,1.2304707 0.30352,1.4437504 0.20781,0.213282 0.62617,0.319923 1.25508,0.319922 l 1.55039,0 0,1.263281 -1.55039,0 c -1.16485,0 -1.96875,-0.216015 -2.41172,-0.648047 -0.44297,-0.437499 -0.66446,-1.2304669 -0.66445,-2.3789064 l 0,-4.9875003 -1.10743,0 0,-1.173047 1.10743,0 0,-2.6085939 1.51757,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4856" + inkscape:connector-curvature="0" /><path + d="m -206.8903,6.1817961 0,5.5453129 -1.50937,0 0,-5.4960942 c -1e-5,-0.8695249 -0.16954,-1.5203056 -0.5086,-1.9523439 -0.33907,-0.4320234 -0.84766,-0.6480388 -1.52578,-0.6480469 -0.81485,8.1e-6 -1.45742,0.2597735 -1.92773,0.779297 -0.47032,0.519538 -0.70547,1.2277405 -0.70547,2.1246095 l 0,5.1925785 -1.51758,0 0,-12.7640634 1.51758,0 0,5.0039066 c 0.36093,-0.5523355 0.78476,-0.9652257 1.27148,-1.238672 0.49219,-0.2734282 1.0582,-0.4101469 1.69805,-0.4101563 1.05546,9.4e-6 1.8539,0.3281341 2.39531,0.9843751 0.5414,0.6507891 0.8121,1.6105538 0.81211,2.8792971" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4858" + inkscape:connector-curvature="0" /><path + d="m -193.28132,5.1235929 c 0.79296,0.1695377 1.41093,0.5222717 1.85391,1.0582032 0.44843,0.5359425 0.67265,1.1976607 0.67266,1.9851564 -1e-5,1.2085961 -0.41564,2.1437515 -1.24688,2.8054685 -0.83126,0.661719 -2.01251,0.992578 -3.54375,0.992579 -0.51407,-10e-7 -1.04453,-0.05195 -1.59141,-0.15586 -0.5414,-0.09844 -1.10195,-0.248828 -1.68164,-0.451172 l 0,-1.5996092 c 0.45938,0.2679702 0.9625,0.4703142 1.50938,0.6070312 0.54687,0.13672 1.11835,0.205079 1.71445,0.205078 1.03906,10e-7 1.82929,-0.205077 2.37071,-0.6152342 0.54686,-0.4101541 0.8203,-1.0062473 0.82031,-1.7882813 -1e-5,-0.7218708 -0.25431,-1.2851515 -0.76289,-1.6898439 -0.50313,-0.4101506 -1.20587,-0.6152286 -2.10821,-0.6152344 l -1.42734,0 0,-1.3617189 1.49297,0 c 0.81484,7.3e-6 1.43827,-0.1613207 1.87031,-0.4839844 0.43203,-0.328117 0.64804,-0.798429 0.64805,-1.4109376 -1e-5,-0.6288965 -0.22423,-1.1101461 -0.67266,-1.4437501 -0.44297,-0.33905158 -1.08008,-0.50858267 -1.91133,-0.50859375 -0.45391,1.108e-5 -0.94063,0.0492298 -1.46015,0.14765626 -0.51954,0.0984483 -1.09102,0.25157319 -1.71446,0.45937499 l 0,-1.47656256 c 0.62891,-0.17498789 1.2168,-0.30623777 1.76368,-0.39375003 0.55234,-0.0874876 1.07187,-0.13123754 1.55859,-0.13125 1.25781,1.246e-5 2.25312,0.28712157 2.98594,0.86132818 0.7328,0.56876108 1.09921,1.33985411 1.09922,2.31328141 -10e-6,0.6781337 -0.19415,1.2523519 -0.58243,1.7226564 -0.38828,0.4648509 -0.94063,0.7875068 -1.65703,0.9679688" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4860" + inkscape:connector-curvature="0" /><path + d="m -180.74694,0.84156134 0,9.52382866 2.00157,0 c 1.68983,1e-6 2.92577,-0.3828107 3.70781,-1.1484375 0.78749,-0.7656217 1.18124,-1.9742144 1.18125,-3.6257815 -1e-5,-1.6406173 -0.39376,-2.8410068 -1.18125,-3.6011721 -0.78204,-0.7656145 -2.01798,-1.14842668 -3.70781,-1.14843756 l -2.00157,0 m -1.65703,-1.36171884 3.4043,0 c 2.37343,1.224e-5 4.11523,0.49493366 5.22539,1.48476572 1.11015,0.98438488 1.66522,2.52657088 1.66524,4.62656278 -2e-5,2.1109417 -0.55783,3.6613309 -1.67344,4.651172 -1.11564,0.989845 -2.8547,1.484766 -5.21719,1.484766 l -3.4043,0 0,-12.2472665" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4862" + inkscape:connector-curvature="0" /><path + d="m -161.68287,6.7560149 0,0.7382813 -6.93984,0 c 0.0656,1.0390657 0.37734,1.8320337 0.93516,2.3789064 0.56327,0.5414074 1.3453,0.8121104 2.34609,0.8121094 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08827,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54142,0.229688 -1.09649,0.404687 -1.66524,0.525 -0.56875,0.120312 -1.14571,0.180468 -1.73086,0.180469 -1.46562,-10e-7 -2.62773,-0.426563 -3.48632,-1.279688 -0.85313,-0.8531232 -1.27969,-2.0070283 -1.27969,-3.461719 0,-1.5039003 0.40469,-2.6960867 1.21406,-3.5765627 0.81484,-0.8859286 1.91133,-1.328897 3.28945,-1.3289064 1.23594,9.4e-6 2.21211,0.3992278 2.92852,1.1976564 0.72187,0.7929762 1.0828,1.8730533 1.08281,3.2402346 m -1.50937,-0.4429688 c -0.011,-0.8257751 -0.24337,-1.4847588 -0.69727,-1.9769533 -0.44844,-0.4921796 -1.04454,-0.7382731 -1.78828,-0.7382813 -0.84219,8.2e-6 -1.51758,0.2378986 -2.02617,0.713672 -0.50313,0.4757882 -0.79297,1.1457094 -0.86953,2.0097657 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4864" + inkscape:connector-curvature="0" /><path + d="m -153.34849,2.8103115 0,1.4273438 c -0.42657,-0.2187423 -0.86954,-0.3828046 -1.32891,-0.4921875 -0.45938,-0.1093669 -0.93516,-0.1640544 -1.42734,-0.1640625 -0.74922,8.1e-6 -1.31251,0.1148518 -1.68985,0.3445312 -0.37187,0.2296951 -0.55781,0.5742261 -0.55781,1.0335939 0,0.3500064 0.13398,0.626178 0.40195,0.8285157 0.26797,0.1968807 0.80664,0.3855524 1.61602,0.5660156 l 0.5168,0.1148438 c 1.07187,0.2296925 1.83202,0.5550828 2.28047,0.9761719 0.45389,0.4156289 0.68085,0.9980502 0.68086,1.7472658 -1e-5,0.8531268 -0.33907,1.5285168 -1.01719,2.0261718 -0.67266,0.497656 -1.59962,0.746484 -2.78086,0.746485 -0.49219,-10e-7 -1.00625,-0.04922 -1.54219,-0.147657 -0.53047,-0.09297 -1.09102,-0.235156 -1.68164,-0.426562 l 0,-1.558594 c 0.55781,0.289845 1.10742,0.508595 1.64883,0.65625 0.5414,0.142189 1.07734,0.213282 1.60781,0.213281 0.71093,1e-6 1.25781,-0.120311 1.64063,-0.360937 0.3828,-0.246092 0.57421,-0.5906233 0.57421,-1.0335941 0,-0.4101534 -0.13945,-0.7246063 -0.41835,-0.9433594 -0.27345,-0.2187465 -0.87774,-0.4292931 -1.8129,-0.6316407 l -0.525,-0.1230469 c -0.93515,-0.1968707 -1.61054,-0.4976516 -2.02617,-0.9023438 -0.41562,-0.4101508 -0.62344,-0.9706972 -0.62343,-1.6816407 -1e-5,-0.864055 0.30624,-1.5312419 0.91875,-2.0015627 0.61249,-0.4703033 1.48202,-0.7054594 2.60859,-0.7054688 0.55781,9.4e-6 1.08281,0.041025 1.575,0.1230469 0.49218,0.08204 0.94609,0.2050872 1.36172,0.3691407" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4866" + inkscape:connector-curvature="0" /><path + d="m -150.44458,2.5396083 1.50937,0 0,9.1875007 -1.50937,0 0,-9.1875007 m 0,-3.5765627 1.50937,0 0,1.91132824 -1.50937,0 0,-1.91132824" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4868" + inkscape:connector-curvature="0" /><path + d="m -139.7395,7.026718 c -1e-5,-1.0937443 -0.22696,-1.9413997 -0.68086,-2.5429689 -0.44844,-0.6015547 -1.08008,-0.9023357 -1.89492,-0.9023438 -0.80938,8.1e-6 -1.44102,0.3007891 -1.89492,0.9023438 -0.44845,0.6015692 -0.67266,1.4492246 -0.67266,2.5429689 0,1.0882849 0.22421,1.933206 0.67266,2.5347658 0.4539,0.6015642 1.08554,0.9023452 1.89492,0.9023442 0.81484,1e-6 1.44648,-0.30078 1.89492,-0.9023442 0.4539,-0.6015598 0.68085,-1.4464809 0.68086,-2.5347658 m 1.50937,3.560157 c -1e-5,1.564062 -0.34727,2.72617 -1.04179,3.486328 -0.69454,0.765622 -1.75821,1.148434 -3.19102,1.148437 -0.53047,-3e-6 -1.03086,-0.04102 -1.50117,-0.123046 -0.47032,-0.07657 -0.92696,-0.196879 -1.36992,-0.360938 l 0,-1.468359 c 0.44296,0.240623 0.88046,0.418357 1.3125,0.533203 0.43202,0.114841 0.87226,0.172263 1.3207,0.172265 0.98984,-2e-6 1.73085,-0.259767 2.22305,-0.779297 0.49218,-0.514063 0.73827,-1.293359 0.73828,-2.33789 l 0,-0.746485 c -0.31173,0.541408 -0.71095,0.946095 -1.19766,1.214063 -0.48672,0.267969 -1.06914,0.401953 -1.74726,0.401953 -1.12657,0 -2.03438,-0.429297 -2.72344,-1.287891 -0.68907,-0.8585914 -1.0336,-1.9960904 -1.0336,-3.4125 0,-1.421869 0.34453,-2.5621023 1.0336,-3.4207033 0.68906,-0.8585849 1.59687,-1.2878814 2.72344,-1.2878908 0.67812,9.4e-6 1.26054,0.1339937 1.74726,0.4019532 0.48671,0.2679775 0.88593,0.6726646 1.19766,1.2140626 l 0,-1.3945314 1.50937,0 0,8.0472667" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4870" + inkscape:connector-curvature="0" /><path + d="m -127.48403,6.1817961 0,5.5453129 -1.50938,0 0,-5.4960942 c -10e-6,-0.8695249 -0.16954,-1.5203056 -0.50859,-1.9523439 -0.33907,-0.4320234 -0.84766,-0.6480388 -1.52578,-0.6480469 -0.81485,8.1e-6 -1.45743,0.2597735 -1.92774,0.779297 -0.47031,0.519538 -0.70547,1.2277405 -0.70547,2.1246095 l 0,5.1925785 -1.51757,0 0,-9.1875007 1.51757,0 0,1.4273439 c 0.36094,-0.5523355 0.78477,-0.9652257 1.27149,-1.238672 0.49218,-0.2734282 1.0582,-0.4101469 1.69805,-0.4101563 1.05546,9.4e-6 1.85389,0.3281341 2.39531,0.9843751 0.5414,0.6507891 0.8121,1.6105538 0.81211,2.8792971" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4872" + inkscape:connector-curvature="0" /><path + d="m -111.70124,-0.11820435 0,1.61601575 c -0.62891,-0.3007708 -1.22227,-0.5249893 -1.78008,-0.67265631 -0.55782,-0.14764521 -1.09649,-0.22147327 -1.61601,-0.22148439 -0.90235,1.112e-5 -1.59962,0.17501096 -2.0918,0.525 -0.48672,0.3500103 -0.73008,0.8476661 -0.73008,1.4929689 0,0.5414148 0.16133,0.9515707 0.48399,1.2304688 0.32812,0.2734451 0.94609,0.4949293 1.8539,0.6644532 l 1.00078,0.2050781 c 1.23593,0.2351631 2.14648,0.6507877 2.73165,1.2468751 0.59061,0.5906302 0.88592,1.3835982 0.88593,2.3789064 -1e-5,1.186721 -0.39923,2.0863298 -1.19765,2.6988288 -0.79298,0.6125 -1.95782,0.918749 -3.49453,0.91875 -0.5797,-10e-7 -1.19767,-0.06563 -1.85391,-0.196875 -0.65079,-0.13125 -1.32618,-0.325391 -2.02617,-0.582422 l 0,-1.7062504 c 0.67265,0.3773456 1.33163,0.6617204 1.97695,0.8531254 0.64531,0.191407 1.27968,0.28711 1.90313,0.287109 0.94608,10e-7 1.67616,-0.185936 2.19023,-0.557813 0.51405,-0.3718725 0.77109,-0.9023408 0.77109,-1.5914059 0,-0.6015587 -0.18594,-1.0718707 -0.55781,-1.4109376 -0.36641,-0.3390575 -0.97071,-0.5933541 -1.81289,-0.7628907 l -1.00898,-0.196875 c -1.23595,-0.2460879 -2.13009,-0.6316344 -2.68243,-1.1566407 -0.55234,-0.5249927 -0.82851,-1.2550702 -0.82851,-2.1902345 0,-1.0828025 0.38007,-1.93592673 1.14023,-2.55937518 0.76562,-0.62342539 1.81836,-0.93514385 3.15821,-0.93515631 0.57421,1.246e-5 1.15936,0.0519655 1.75546,0.15585938 0.59609,0.10391847 1.20586,0.2597777 1.8293,0.46757816" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4874" + inkscape:connector-curvature="0" /><path + d="m -100.586,6.7560149 0,0.7382813 -6.93985,0 c 0.0656,1.0390657 0.37734,1.8320337 0.93516,2.3789064 0.56328,0.5414074 1.34531,0.8121104 2.34609,0.8121094 0.57968,1e-6 1.14023,-0.07109 1.68164,-0.213281 0.54687,-0.142186 1.08828,-0.355467 1.62422,-0.639844 l 0,1.427344 c -0.54141,0.229688 -1.09649,0.404687 -1.66523,0.525 -0.56876,0.120312 -1.14571,0.180468 -1.73086,0.180469 -1.46563,-10e-7 -2.62774,-0.426563 -3.48633,-1.279688 -0.85313,-0.8531232 -1.27969,-2.0070283 -1.27969,-3.461719 0,-1.5039003 0.40469,-2.6960867 1.21406,-3.5765627 0.81485,-0.8859286 1.91133,-1.328897 3.28946,-1.3289064 1.23593,9.4e-6 2.2121,0.3992278 2.92851,1.1976564 0.72187,0.7929762 1.08281,1.8730533 1.08282,3.2402346 m -1.50938,-0.4429688 c -0.0109,-0.8257751 -0.24337,-1.4847588 -0.69726,-1.9769533 -0.44845,-0.4921796 -1.04454,-0.7382731 -1.78829,-0.7382813 -0.84219,8.2e-6 -1.51758,0.2378986 -2.02617,0.713672 -0.50313,0.4757882 -0.79297,1.1457094 -0.86953,2.0097657 l 5.38125,-0.0082" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4876" + inkscape:connector-curvature="0" /><path + d="m -96.615661,-0.0689856 0,2.6085939 3.108984,0 0,1.173047 -3.108984,0 0,4.9875003 c -3e-6,0.7492211 0.101168,1.2304707 0.303515,1.4437504 0.207809,0.213282 0.626168,0.319923 1.255078,0.319922 l 1.550391,0 0,1.263281 -1.550391,0 c -1.164847,0 -1.968752,-0.216015 -2.411718,-0.648047 -0.442971,-0.437499 -0.664455,-1.2304669 -0.664454,-2.3789064 l 0,-4.9875003 -1.107422,0 0,-1.173047 1.107422,0 0,-2.6085939 1.517579,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4878" + inkscape:connector-curvature="0" /><path + d="m -90.020355,-0.0689856 0,2.6085939 3.108985,0 0,1.173047 -3.108985,0 0,4.9875003 c -3e-6,0.7492211 0.101169,1.2304707 0.303516,1.4437504 0.207809,0.213282 0.626168,0.319923 1.255078,0.319922 l 1.550391,0 0,1.263281 -1.550391,0 c -1.164847,0 -1.968753,-0.216015 -2.411719,-0.648047 -0.442971,-0.437499 -0.664455,-1.2304669 -0.664453,-2.3789064 l 0,-4.9875003 -1.107422,0 0,-1.173047 1.107422,0 0,-2.6085939 1.517578,0" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4880" + inkscape:connector-curvature="0" /><path + d="m -84.918017,2.5396083 1.509375,0 0,9.1875007 -1.509375,0 0,-9.1875007 m 0,-3.5765627 1.509375,0 0,1.91132824 -1.509375,0 0,-1.91132824" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4882" + inkscape:connector-curvature="0" /><path + d="m -72.621545,6.1817961 0,5.5453129 -1.509375,0 0,-5.4960942 c -8e-6,-0.8695249 -0.169539,-1.5203056 -0.508594,-1.9523439 -0.339069,-0.4320234 -0.847662,-0.6480388 -1.525781,-0.6480469 -0.814849,8.1e-6 -1.457426,0.2597735 -1.927735,0.779297 -0.470315,0.519538 -0.705471,1.2277405 -0.705468,2.1246095 l 0,5.1925785 -1.517579,0 0,-9.1875007 1.517579,0 0,1.4273439 c 0.360934,-0.5523355 0.784762,-0.9652257 1.271484,-1.238672 0.492183,-0.2734282 1.058198,-0.4101469 1.698047,-0.4101563 1.055462,9.4e-6 1.853899,0.3281341 2.395313,0.9843751 0.541397,0.6507891 0.8121,1.6105538 0.812109,2.8792971" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4884" + inkscape:connector-curvature="0" /><path + d="m -63.548889,7.026718 c -7e-6,-1.0937443 -0.22696,-1.9413997 -0.680859,-2.5429689 -0.448444,-0.6015547 -1.080084,-0.9023357 -1.894922,-0.9023438 -0.809379,8.1e-6 -1.441019,0.3007891 -1.894922,0.9023438 -0.44844,0.6015692 -0.672659,1.4492246 -0.672656,2.5429689 -3e-6,1.0882849 0.224216,1.933206 0.672656,2.5347658 0.453903,0.6015642 1.085543,0.9023452 1.894922,0.9023442 0.814838,1e-6 1.446478,-0.30078 1.894922,-0.9023442 0.453899,-0.6015598 0.680852,-1.4464809 0.680859,-2.5347658 m 1.509375,3.560157 c -9e-6,1.564062 -0.347274,2.72617 -1.041796,3.486328 -0.694539,0.765622 -1.75821,1.148434 -3.191016,1.148437 -0.530473,-3e-6 -1.030864,-0.04102 -1.501172,-0.123046 -0.470316,-0.07657 -0.926956,-0.196879 -1.369922,-0.360938 l 0,-1.468359 c 0.442966,0.240623 0.880466,0.418357 1.3125,0.533203 0.432027,0.114841 0.872261,0.172263 1.320703,0.172265 0.989838,-2e-6 1.730853,-0.259767 2.223047,-0.779297 0.49218,-0.514063 0.738274,-1.293359 0.738281,-2.33789 l 0,-0.746485 c -0.311726,0.541408 -0.710944,0.946095 -1.197656,1.214063 -0.486725,0.267969 -1.069146,0.401953 -1.747266,0.401953 -1.126566,0 -2.034378,-0.429297 -2.723437,-1.287891 -0.689064,-0.8585914 -1.033595,-1.9960904 -1.033594,-3.4125 -10e-7,-1.421869 0.34453,-2.5621023 1.033594,-3.4207033 0.689059,-0.8585849 1.596871,-1.2878814 2.723437,-1.2878908 0.67812,9.4e-6 1.260541,0.1339937 1.747266,0.4019532 0.486712,0.2679775 0.88593,0.6726646 1.197656,1.2140626 l 0,-1.3945314 1.509375,0 0,8.0472667" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4886" + inkscape:connector-curvature="0" /><path + d="m -53.073498,2.8103115 0,1.4273438 c -0.42657,-0.2187423 -0.869538,-0.3828046 -1.328906,-0.4921875 -0.459381,-0.1093669 -0.935162,-0.1640544 -1.427344,-0.1640625 -0.749223,8.1e-6 -1.312504,0.1148518 -1.689844,0.3445312 -0.371878,0.2296951 -0.557815,0.5742261 -0.557813,1.0335939 -2e-6,0.3500064 0.133982,0.626178 0.401954,0.8285157 0.267965,0.1968807 0.806637,0.3855524 1.616015,0.5660156 l 0.516797,0.1148438 c 1.071869,0.2296925 1.832025,0.5550828 2.280469,0.9761719 0.453899,0.4156289 0.680852,0.9980502 0.68086,1.7472658 -8e-6,0.8531268 -0.339071,1.5285168 -1.017188,2.0261718 -0.672663,0.497656 -1.599615,0.746484 -2.78086,0.746485 -0.492191,-10e-7 -1.006253,-0.04922 -1.542187,-0.147657 -0.530471,-0.09297 -1.091017,-0.235156 -1.681641,-0.426562 l 0,-1.558594 c 0.557811,0.289845 1.10742,0.508595 1.648828,0.65625 0.541403,0.142189 1.07734,0.213282 1.607813,0.213281 0.710933,1e-6 1.257807,-0.120311 1.640625,-0.360937 0.382806,-0.246092 0.574212,-0.5906233 0.574219,-1.0335941 -7e-6,-0.4101534 -0.13946,-0.7246063 -0.41836,-0.9433594 -0.273443,-0.2187465 -0.877739,-0.4292931 -1.81289,-0.6316407 l -0.525,-0.1230469 C -57.82311,7.4122692 -58.4985,7.1114883 -58.914123,6.7067961 -59.32975,6.2966453 -59.537562,5.7360989 -59.537561,5.0251554 c -1e-6,-0.864055 0.306249,-1.5312419 0.91875,-2.0015627 0.612498,-0.4703033 1.482028,-0.7054594 2.608594,-0.7054688 0.557807,9.4e-6 1.082807,0.041025 1.575,0.1230469 0.492181,0.08204 0.946087,0.2050872 1.361719,0.3691407" + style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4888" + inkscape:connector-curvature="0" /></g><g + style="font-size:9.60000038px" + id="text4863-9"><path + d="m -393.83092,-67.415047 0,5.697657 2.57969,0 c 0.95468,8e-6 1.6927,-0.247128 2.21406,-0.741406 0.52134,-0.494262 0.78202,-1.198428 0.78203,-2.112501 -1e-5,-0.90728 -0.26069,-1.60806 -0.78203,-2.102343 -0.52136,-0.494258 -1.25938,-0.741393 -2.21406,-0.741407 l -2.57969,0 m -2.05156,-1.685937 4.63125,0 c 1.69947,1.5e-5 2.98254,0.385952 3.84922,1.157812 0.87342,0.765118 1.31014,1.889075 1.31015,3.371875 -10e-6,1.496364 -0.43673,2.627092 -1.31015,3.392188 -0.86668,0.765111 -2.14975,1.147663 -3.84922,1.147656 l -2.57969,0 0,6.093751 -2.05156,0 0,-15.163282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4891" + inkscape:connector-curvature="0" /><path + d="m -377.16451,-63.565828 c -0.20991,-0.121865 -0.44012,-0.209886 -0.69063,-0.264062 -0.24376,-0.06093 -0.51459,-0.0914 -0.8125,-0.09141 -1.05625,1e-5 -1.86875,0.345322 -2.4375,1.035937 -0.56198,0.683863 -0.84297,1.669018 -0.84297,2.955469 l 0,5.992188 -1.8789,0 0,-11.375001 1.8789,0 0,1.767188 c 0.39271,-0.690615 0.9039,-1.201812 1.5336,-1.533594 0.62968,-0.33853 1.39478,-0.507801 2.29531,-0.507813 0.12864,1.2e-5 0.27083,0.01017 0.42656,0.03047 0.15572,0.01355 0.32838,0.03725 0.51797,0.07109 l 0.0102,1.919531" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4893" + inkscape:connector-curvature="0" /><path + d="m -371.22311,-64.002546 c -1.00209,10e-6 -1.79427,0.392718 -2.37656,1.178125 -0.58229,0.778654 -0.87344,1.848444 -0.87344,3.209375 0,1.360942 0.28776,2.434118 0.86328,3.219531 0.58229,0.778648 1.37786,1.16797 2.38672,1.167969 0.99531,10e-7 1.78411,-0.392707 2.36641,-1.178125 0.58228,-0.785414 0.87343,-1.855204 0.87344,-3.209375 -1e-5,-1.347389 -0.29116,-2.413794 -0.87344,-3.199219 -0.5823,-0.792178 -1.3711,-1.188271 -2.36641,-1.188281 m 0,-1.584376 c 1.625,1.2e-5 2.9013,0.528137 3.82891,1.584376 0.92759,1.056259 1.39139,2.518757 1.39141,4.3875 -2e-5,1.861983 -0.46382,3.324481 -1.39141,4.3875 -0.92761,1.05625 -2.20391,1.584375 -3.82891,1.584375 -1.63177,0 -2.91146,-0.528125 -3.83906,-1.584375 -0.92083,-1.063019 -1.38125,-2.525517 -1.38125,-4.3875 0,-1.868743 0.46042,-3.331241 1.38125,-4.3875 0.9276,-1.056239 2.20729,-1.584364 3.83906,-1.584376" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4895" + inkscape:connector-curvature="0" /><path + d="m -355.40982,-63.58614 0,-6.154688 1.86875,0 0,15.803126 -1.86875,0 0,-1.70625 c -0.39272,0.677084 -0.89038,1.181511 -1.49297,1.513281 -0.59584,0.325 -1.31355,0.4875 -2.15313,0.4875 -1.37448,0 -2.49505,-0.548437 -3.36172,-1.645313 -0.85989,-1.096872 -1.28984,-2.539058 -1.28984,-4.326562 0,-1.787493 0.42995,-3.229679 1.28984,-4.326563 0.86667,-1.096864 1.98724,-1.645301 3.36172,-1.645313 0.83958,1.2e-5 1.55729,0.165897 2.15313,0.497657 0.60259,0.325011 1.10025,0.826052 1.49297,1.503125 m -6.36797,3.971094 c -1e-5,1.374483 0.28098,2.45443 0.84297,3.239844 0.56874,0.778647 1.34739,1.16797 2.33593,1.167969 0.98854,1e-6 1.76718,-0.389322 2.33594,-1.167969 0.56874,-0.785414 0.85312,-1.865361 0.85313,-3.239844 -10e-6,-1.374472 -0.28439,-2.451034 -0.85313,-3.229688 -0.56876,-0.785407 -1.3474,-1.178115 -2.33594,-1.178125 -0.98854,1e-5 -1.76719,0.392718 -2.33593,1.178125 -0.56199,0.778654 -0.84298,1.855216 -0.84297,3.229688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4897" + inkscape:connector-curvature="0" /><path + d="m -349.88482,-58.426765 0,-6.885938 1.86875,0 0,6.814844 c -10e-6,1.076566 0.20989,1.88568 0.62968,2.427344 0.41979,0.534898 1.04948,0.802345 1.88907,0.802344 1.00884,1e-6 1.80442,-0.321613 2.38671,-0.964844 0.58906,-0.643226 0.88359,-1.520048 0.8836,-2.630469 l 0,-6.449219 1.86875,0 0,11.375001 -1.86875,0 0,-1.746875 c -0.45366,0.690626 -0.98178,1.205209 -1.58438,1.54375 -0.59584,0.331771 -1.28985,0.497656 -2.08203,0.497656 -1.30677,0 -2.2987,-0.40625 -2.97578,-1.21875 -0.67708,-0.812498 -1.01563,-2.000778 -1.01562,-3.564844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4899" + inkscape:connector-curvature="0" /><path + d="m -328.30279,-64.875984 0,1.746875 c -0.52813,-0.291136 -1.05964,-0.507803 -1.59453,-0.65 -0.52813,-0.148948 -1.06303,-0.223427 -1.60469,-0.223437 -1.21198,10e-6 -2.15313,0.385947 -2.82344,1.157812 -0.67031,0.765112 -1.00547,1.841674 -1.00546,3.229688 -10e-6,1.388025 0.33515,2.467972 1.00546,3.239844 0.67031,0.765106 1.61146,1.147657 2.82344,1.147656 0.54166,10e-7 1.07656,-0.07109 1.60469,-0.213281 0.53489,-0.148957 1.0664,-0.369009 1.59453,-0.660157 l 0,1.726563 c -0.52136,0.24375 -1.06303,0.426563 -1.625,0.548438 -0.55522,0.121874 -1.14766,0.182812 -1.77734,0.182812 -1.71303,0 -3.07396,-0.538281 -4.08282,-1.614844 -1.00885,-1.07656 -1.51328,-2.528902 -1.51328,-4.357031 0,-1.855201 0.50781,-3.314314 1.52344,-4.377344 1.02239,-1.06301 2.42057,-1.59452 4.19453,-1.594532 0.57552,1.2e-5 1.13749,0.06095 1.68594,0.182813 0.54843,0.115115 1.07994,0.291157 1.59453,0.528125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4901" + inkscape:connector-curvature="0" /><path + d="m -323.18404,-68.54239 0,3.229687 3.84922,0 0,1.452344 -3.84922,0 0,6.175 c -1e-5,0.927607 0.12525,1.52344 0.37578,1.7875 0.25728,0.264065 0.77525,0.396096 1.5539,0.396094 l 1.91954,0 0,1.564063 -1.91954,0 c -1.44219,0 -2.4375,-0.267448 -2.98593,-0.802344 -0.54844,-0.541665 -0.82266,-1.523435 -0.82266,-2.945313 l 0,-6.175 -1.37109,0 0,-1.452344 1.37109,0 0,-3.229687 1.87891,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4903" + inkscape:connector-curvature="0" /><path + d="m -308.11216,-67.415047 0,11.791407 2.47812,0 c 2.09218,2e-6 3.62239,-0.473956 4.59063,-1.421875 0.97499,-0.947913 1.46249,-2.444265 1.4625,-4.489063 -10e-6,-2.03124 -0.48751,-3.517437 -1.4625,-4.458594 -0.96824,-0.947903 -2.49845,-1.421861 -4.59063,-1.421875 l -2.47812,0 m -2.05157,-1.685937 4.21485,0 c 2.93853,1.5e-5 5.09504,0.612775 6.46953,1.838281 1.37447,1.218762 2.0617,3.128135 2.06172,5.728125 -2e-5,2.613547 -0.69064,4.533077 -2.07188,5.758594 -1.38126,1.225522 -3.53438,1.838282 -6.45937,1.838282 l -4.21485,0 0,-15.163282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4905" + inkscape:connector-curvature="0" /><path + d="m -284.50904,-60.09239 0,0.914063 -8.59219,0 c 0.0813,1.286462 0.46719,2.268232 1.15782,2.945312 0.69739,0.670314 1.66562,1.00547 2.90468,1.005469 0.7177,10e-7 1.41171,-0.08802 2.08203,-0.264063 0.67708,-0.176039 1.34739,-0.440102 2.01094,-0.792187 l 0,1.767188 c -0.67032,0.284375 -1.35756,0.501041 -2.06172,0.65 -0.70417,0.148958 -1.41849,0.223437 -2.14297,0.223437 -1.81458,0 -3.25338,-0.528125 -4.3164,-1.584375 -1.05625,-1.056248 -1.58438,-2.484892 -1.58438,-4.285938 0,-1.861972 0.50104,-3.338012 1.50313,-4.428125 1.00885,-1.096864 2.3664,-1.645301 4.07265,-1.645313 1.5302,1.2e-5 2.7388,0.494282 3.62579,1.482813 0.89374,0.98178 1.34061,2.319018 1.34062,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55522,-0.609365 -1.29324,-0.914052 -2.21406,-0.914062 -1.04272,10e-6 -1.87891,0.294541 -2.5086,0.883593 -0.62292,0.589071 -0.98177,1.418498 -1.07656,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4907" + inkscape:connector-curvature="0" /><path + d="m -274.19029,-64.977547 0,1.767188 c -0.52813,-0.270824 -1.07657,-0.473949 -1.64531,-0.609375 -0.56876,-0.135407 -1.15782,-0.203115 -1.76719,-0.203125 -0.92761,1e-5 -1.625,0.142197 -2.09219,0.426563 -0.46042,0.284384 -0.69062,0.710946 -0.69062,1.279687 0,0.433341 0.16588,0.775268 0.49765,1.025781 0.33177,0.243758 0.9987,0.477351 2.00079,0.700782 l 0.63984,0.142187 c 1.32708,0.284381 2.26822,0.687246 2.82344,1.208594 0.56197,0.514588 0.84296,1.235681 0.84297,2.163281 -10e-6,1.056253 -0.4198,1.89245 -1.25938,2.508594 -0.83282,0.616146 -1.98047,0.924219 -3.44297,0.924219 -0.60938,0 -1.24584,-0.06094 -1.90937,-0.182812 -0.65678,-0.115105 -1.35079,-0.291146 -2.08203,-0.528125 l 0,-1.929688 c 0.69062,0.358856 1.37109,0.629689 2.0414,0.8125 0.67031,0.176043 1.33385,0.264064 1.99063,0.264063 0.8802,1e-6 1.55728,-0.148957 2.03125,-0.446876 0.47395,-0.304685 0.71093,-0.731247 0.71093,-1.279687 0,-0.507809 -0.17266,-0.897132 -0.51796,-1.167969 -0.33855,-0.270829 -1.08673,-0.531506 -2.24454,-0.782031 l -0.65,-0.152344 c -1.15781,-0.243745 -1.99401,-0.61614 -2.50859,-1.117188 -0.51458,-0.507805 -0.77188,-1.201815 -0.77187,-2.082031 -1e-5,-1.069782 0.37916,-1.895823 1.1375,-2.478125 0.75833,-0.58228 1.83489,-0.873426 3.22968,-0.873438 0.69062,1.2e-5 1.34062,0.05079 1.95,0.152344 0.60937,0.101574 1.17135,0.253918 1.68594,0.457031" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4909" + inkscape:connector-curvature="0" /><path + d="m -270.59497,-65.312703 1.86875,0 0,11.375001 -1.86875,0 0,-11.375001 m 0,-4.428125 1.86875,0 0,2.366406 -1.86875,0 0,-2.366406" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4911" + inkscape:connector-curvature="0" /><path + d="m -257.34106,-59.757234 c -10e-6,-1.354159 -0.281,-2.403637 -0.84297,-3.148437 -0.55522,-0.744782 -1.33725,-1.117178 -2.3461,-1.117188 -1.00209,1e-5 -1.78412,0.372406 -2.34609,1.117188 -0.55521,0.7448 -0.83282,1.794278 -0.83281,3.148437 -1e-5,1.347401 0.2776,2.393493 0.83281,3.138282 0.56197,0.744793 1.344,1.117189 2.34609,1.117187 1.00885,2e-6 1.79088,-0.372394 2.3461,-1.117187 0.56197,-0.744789 0.84296,-1.790881 0.84297,-3.138282 m 1.86875,4.407813 c -2e-5,1.936458 -0.42996,3.375259 -1.28985,4.316406 -0.8599,0.947913 -2.17683,1.421871 -3.95078,1.421876 -0.65678,-5e-6 -1.27631,-0.05079 -1.85859,-0.152344 -0.5823,-0.0948 -1.14766,-0.243754 -1.6961,-0.446875 l 0,-1.817969 c 0.54844,0.297914 1.0901,0.517966 1.625,0.660156 0.53489,0.142185 1.07995,0.213279 1.63516,0.213281 1.22551,-2e-6 2.14296,-0.321617 2.75234,-0.964843 0.60937,-0.63646 0.91406,-1.601303 0.91407,-2.894532 l 0,-0.924219 c -0.38595,0.670314 -0.88022,1.171356 -1.48282,1.503126 -0.60261,0.331771 -1.3237,0.497656 -2.16328,0.497656 -1.39479,0 -2.51875,-0.53151 -3.37187,-1.594532 -0.85313,-1.063018 -1.27969,-2.47135 -1.27969,-4.225 0,-1.760409 0.42656,-3.172126 1.27969,-4.235156 0.85312,-1.06301 1.97708,-1.59452 3.37187,-1.594532 0.83958,1.2e-5 1.56067,0.165897 2.16328,0.497657 0.6026,0.331781 1.09687,0.832823 1.48282,1.503125 l 0,-1.726563 1.86875,0 0,9.963282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4913" + inkscape:connector-curvature="0" /><path + d="m -242.16763,-60.803328 0,6.865626 -1.86875,0 0,-6.804688 c -1e-5,-1.076555 -0.2099,-1.882283 -0.62968,-2.417188 -0.4198,-0.534886 -1.04949,-0.802333 -1.88907,-0.802343 -1.00886,10e-6 -1.80443,0.321624 -2.38672,0.964843 -0.58229,0.643238 -0.87344,1.52006 -0.87343,2.630469 l 0,6.428907 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.44687,-0.683844 0.97161,-1.195042 1.57422,-1.533594 0.60936,-0.33853 1.31015,-0.507801 2.10234,-0.507813 1.30676,1.2e-5 2.2953,0.406262 2.96562,1.21875 0.67031,0.805739 1.00546,1.994019 1.00547,3.564844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4915" + inkscape:connector-curvature="0" /><path + d="m -233.81919,-69.100984 12.82734,0 0,1.726562 -5.38281,0 0,13.43672 -2.06172,0 0,-13.43672 -5.38281,0 0,-1.726562" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4917" + inkscape:connector-curvature="0" /><path + d="m -212.86684,-60.09239 0,0.914063 -8.59219,0 c 0.0813,1.286462 0.46718,2.268232 1.15781,2.945312 0.69739,0.670314 1.66562,1.00547 2.90469,1.005469 0.7177,10e-7 1.41171,-0.08802 2.08203,-0.264063 0.67708,-0.176039 1.34739,-0.440102 2.01094,-0.792187 l 0,1.767188 c -0.67032,0.284375 -1.35756,0.501041 -2.06172,0.65 -0.70417,0.148958 -1.4185,0.223437 -2.14297,0.223437 -1.81459,0 -3.25339,-0.528125 -4.31641,-1.584375 -1.05625,-1.056248 -1.58437,-2.484892 -1.58437,-4.285938 0,-1.861972 0.50104,-3.338012 1.50312,-4.428125 1.00886,-1.096864 2.36641,-1.645301 4.07266,-1.645313 1.5302,1.2e-5 2.73879,0.494282 3.62578,1.482813 0.89374,0.98178 1.34062,2.319018 1.34063,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55522,-0.609365 -1.29324,-0.914052 -2.21407,-0.914062 -1.04271,10e-6 -1.87891,0.294541 -2.50859,0.883593 -0.62292,0.589071 -0.98177,1.418498 -1.07656,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4919" + inkscape:connector-curvature="0" /><path + d="m -200.9231,-63.129109 c 0.46718,-0.839573 1.02577,-1.459104 1.67579,-1.858594 0.64998,-0.399468 1.41509,-0.599207 2.29531,-0.599219 1.18488,1.2e-5 2.09894,0.416418 2.74219,1.249219 0.64321,0.826052 0.96482,2.004175 0.96484,3.534375 l 0,6.865626 -1.87891,0 0,-6.804688 c -10e-6,-1.090096 -0.19298,-1.89921 -0.5789,-2.427344 -0.38596,-0.528115 -0.97502,-0.792177 -1.76719,-0.792187 -0.96824,10e-6 -1.73335,0.321624 -2.29531,0.964843 -0.56199,0.643238 -0.84298,1.52006 -0.84297,2.630469 l 0,6.428907 -1.87891,0 0,-6.804688 c -1e-5,-1.096867 -0.19298,-1.905981 -0.5789,-2.427344 -0.38595,-0.528115 -0.98178,-0.792177 -1.7875,-0.792187 -0.9547,10e-6 -1.71303,0.325009 -2.275,0.975 -0.56199,0.643237 -0.84298,1.516674 -0.84297,2.620312 l 0,6.428907 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.42656,-0.697386 0.93775,-1.211969 1.53359,-1.54375 0.59583,-0.33176 1.30338,-0.497645 2.12266,-0.497657 0.82603,1.2e-5 1.52681,0.209908 2.10234,0.629688 0.58228,0.419802 1.01223,1.029177 1.28984,1.828125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4921" + inkscape:connector-curvature="0" /><path + d="m -187.69965,-55.643952 0,6.032813 -1.87891,0 0,-15.701564 1.87891,0 0,1.726563 c 0.3927,-0.677073 0.88697,-1.178114 1.48281,-1.503125 0.6026,-0.33176 1.32031,-0.497645 2.15313,-0.497657 1.38124,1.2e-5 2.50181,0.548449 3.36171,1.645313 0.86666,1.096884 1.29999,2.53907 1.3,4.326563 -1e-5,1.787504 -0.43334,3.22969 -1.3,4.326562 -0.8599,1.096876 -1.98047,1.645313 -3.36171,1.645313 -0.83282,0 -1.55053,-0.1625 -2.15313,-0.4875 -0.59584,-0.33177 -1.09011,-0.836197 -1.48281,-1.513281 m 6.35781,-3.971094 c -1e-5,-1.374472 -0.28438,-2.451034 -0.85312,-3.229688 -0.56199,-0.785407 -1.33725,-1.178115 -2.32579,-1.178125 -0.98854,1e-5 -1.76719,0.392718 -2.33593,1.178125 -0.56199,0.778654 -0.84298,1.855216 -0.84297,3.229688 -1e-5,1.374483 0.28098,2.45443 0.84297,3.239844 0.56874,0.778647 1.34739,1.16797 2.33593,1.167969 0.98854,1e-6 1.7638,-0.389322 2.32579,-1.167969 0.56874,-0.785414 0.85311,-1.865361 0.85312,-3.239844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4923" + inkscape:connector-curvature="0" /><path + d="m -176.30434,-69.740828 1.86875,0 0,15.803126 -1.86875,0 0,-15.803126" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4925" + inkscape:connector-curvature="0" /><path + d="m -165.36607,-59.655671 c -1.5099,5e-6 -2.55599,0.172662 -3.13828,0.517969 -0.5823,0.345317 -0.87344,0.934379 -0.87344,1.767187 0,0.663545 0.21666,1.191669 0.65,1.584375 0.4401,0.385939 1.03593,0.578908 1.7875,0.578907 1.03593,1e-6 1.86536,-0.365624 2.48828,-1.096876 0.62968,-0.738017 0.94452,-1.716402 0.94453,-2.935156 l 0,-0.416406 -1.85859,0 m 3.72734,-0.771875 0,6.489844 -1.86875,0 0,-1.726563 c -0.42657,0.690626 -0.95808,1.201824 -1.59453,1.533594 -0.63646,0.325 -1.41511,0.4875 -2.33594,0.4875 -1.16458,0 -2.09219,-0.325 -2.78281,-0.975 -0.68385,-0.656769 -1.02578,-1.533592 -1.02578,-2.630469 0,-1.279683 0.42656,-2.244526 1.27969,-2.894531 0.85989,-0.649993 2.13958,-0.974993 3.83906,-0.975 l 2.62031,0 0,-0.182813 c -1e-5,-0.859887 -0.28438,-1.523429 -0.85312,-1.990625 -0.56199,-0.473948 -1.35417,-0.710927 -2.37656,-0.710937 -0.65001,10e-6 -1.28308,0.07787 -1.89922,0.233593 -0.61615,0.155739 -1.2086,0.389333 -1.77735,0.700782 l 0,-1.726563 c 0.68385,-0.264051 1.3474,-0.460405 1.99063,-0.589063 0.64322,-0.135405 1.26952,-0.203113 1.8789,-0.203125 1.64531,1.2e-5 2.87421,0.426574 3.68672,1.279688 0.81249,0.853135 1.21874,2.146363 1.21875,3.879688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4927" + inkscape:connector-curvature="0" /><path + d="m -155.93091,-68.54239 0,3.229687 3.84922,0 0,1.452344 -3.84922,0 0,6.175 c 0,0.927607 0.12526,1.52344 0.37578,1.7875 0.25729,0.264065 0.77526,0.396096 1.55391,0.396094 l 1.91953,0 0,1.564063 -1.91953,0 c -1.44219,0 -2.4375,-0.267448 -2.98594,-0.802344 -0.54844,-0.541665 -0.82266,-1.523435 -0.82265,-2.945313 l 0,-6.175 -1.3711,0 0,-1.452344 1.3711,0 0,-3.229687 1.8789,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4929" + inkscape:connector-curvature="0" /><path + d="m -139.88404,-60.09239 0,0.914063 -8.59219,0 c 0.0812,1.286462 0.46719,2.268232 1.15782,2.945312 0.69739,0.670314 1.66562,1.00547 2.90468,1.005469 0.7177,10e-7 1.41171,-0.08802 2.08203,-0.264063 0.67708,-0.176039 1.34739,-0.440102 2.01094,-0.792187 l 0,1.767188 c -0.67032,0.284375 -1.35756,0.501041 -2.06172,0.65 -0.70417,0.148958 -1.41849,0.223437 -2.14297,0.223437 -1.81458,0 -3.25338,-0.528125 -4.3164,-1.584375 -1.05625,-1.056248 -1.58438,-2.484892 -1.58438,-4.285938 0,-1.861972 0.50104,-3.338012 1.50313,-4.428125 1.00885,-1.096864 2.3664,-1.645301 4.07265,-1.645313 1.5302,1.2e-5 2.7388,0.494282 3.62579,1.482813 0.89374,0.98178 1.34061,2.319018 1.34062,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55522,-0.609365 -1.29324,-0.914052 -2.21406,-0.914062 -1.04272,10e-6 -1.87891,0.294541 -2.5086,0.883593 -0.62292,0.589071 -0.98177,1.418498 -1.07656,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4931" + inkscape:connector-curvature="0" /><path + d="m -131.1395,-60.468171 5.47422,0 0,1.665625 -5.47422,0 0,-1.665625" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4933" + inkscape:connector-curvature="0" /><path + d="m -115.97623,-69.100984 2.05156,0 0,15.163282 -2.05156,0 0,-15.163282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4935" + inkscape:connector-curvature="0" /><path + d="m -100.46761,-60.803328 0,6.865626 -1.86875,0 0,-6.804688 c -1e-5,-1.076555 -0.20991,-1.882283 -0.62969,-2.417188 -0.4198,-0.534886 -1.04949,-0.802333 -1.88906,-0.802343 -1.00886,10e-6 -1.80444,0.321624 -2.38672,0.964843 -0.5823,0.643238 -0.87344,1.52006 -0.87344,2.630469 l 0,6.428907 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.44687,-0.683844 0.97161,-1.195042 1.57422,-1.533594 0.60937,-0.33853 1.31015,-0.507801 2.10234,-0.507813 1.30676,1.2e-5 2.2953,0.406262 2.96563,1.21875 0.6703,0.805739 1.00545,1.994019 1.00547,3.564844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4937" + inkscape:connector-curvature="0" /><path + d="m -96.791052,-69.740828 1.878906,0 0,9.333594 5.575782,-4.905469 2.386719,0 -6.032813,5.321875 6.286719,6.053126 -2.4375,0 -5.778907,-5.555469 0,5.555469 -1.878906,0 0,-15.803126" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4939" + inkscape:connector-curvature="0" /><path + d="m -77.402783,-64.977547 0,1.767188 c -0.528133,-0.270824 -1.07657,-0.473949 -1.645312,-0.609375 -0.568757,-0.135407 -1.157819,-0.203115 -1.767188,-0.203125 -0.927609,1e-5 -1.625004,0.142197 -2.092187,0.426563 -0.46042,0.284384 -0.690629,0.710946 -0.690626,1.279687 -3e-6,0.433341 0.165883,0.775268 0.497657,1.025781 0.331767,0.243758 0.998693,0.477351 2.000781,0.700782 l 0.639844,0.142187 c 1.327076,0.284381 2.268221,0.687246 2.823438,1.208594 0.561969,0.514588 0.842959,1.235681 0.842968,2.163281 -9e-6,1.056253 -0.419801,1.89245 -1.259375,2.508594 -0.83282,0.616146 -1.980475,0.924219 -3.442969,0.924219 -0.609379,0 -1.245837,-0.06094 -1.909375,-0.182812 -0.656773,-0.115105 -1.350783,-0.291146 -2.082031,-0.528125 l 0,-1.929688 c 0.690623,0.358856 1.371091,0.629689 2.041406,0.8125 0.670309,0.176043 1.33385,0.264064 1.990625,0.264063 0.880203,1e-6 1.557285,-0.148957 2.03125,-0.446876 0.473951,-0.304685 0.71093,-0.731247 0.710938,-1.279687 -8e-6,-0.507809 -0.172664,-0.897132 -0.517969,-1.167969 -0.338549,-0.270829 -1.086725,-0.531506 -2.244531,-0.782031 l -0.65,-0.152344 c -1.157816,-0.243745 -1.994013,-0.61614 -2.508594,-1.117188 -0.514585,-0.507805 -0.771876,-1.201815 -0.771875,-2.082031 -10e-7,-1.069782 0.379165,-1.895823 1.1375,-2.478125 0.75833,-0.58228 1.834892,-0.873426 3.229688,-0.873438 0.690618,1.2e-5 1.340618,0.05079 1.95,0.152344 0.609367,0.101574 1.171345,0.253918 1.685937,0.457031" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4941" + inkscape:connector-curvature="0" /><path + d="m -65.621514,-64.875984 0,1.746875 c -0.528135,-0.291136 -1.059645,-0.507803 -1.594532,-0.65 -0.528133,-0.148948 -1.063028,-0.223427 -1.604687,-0.223437 -1.211985,10e-6 -2.15313,0.385947 -2.823438,1.157812 -0.670316,0.765112 -1.005472,1.841674 -1.005469,3.229688 -3e-6,1.388025 0.335153,2.467972 1.005469,3.239844 0.670308,0.765106 1.611453,1.147657 2.823438,1.147656 0.541659,10e-7 1.076554,-0.07109 1.604687,-0.213281 0.534887,-0.148957 1.066397,-0.369009 1.594532,-0.660157 l 0,1.726563 c -0.521364,0.24375 -1.06303,0.426563 -1.625,0.548438 -0.555217,0.121874 -1.147664,0.182812 -1.777344,0.182812 -1.713026,0 -3.073962,-0.538281 -4.082813,-1.614844 -1.008856,-1.07656 -1.513282,-2.528902 -1.513281,-4.357031 -10e-7,-1.855201 0.507811,-3.314314 1.523437,-4.377344 1.022392,-1.06301 2.420568,-1.59452 4.194532,-1.594532 0.575513,1.2e-5 1.137492,0.06095 1.685937,0.182813 0.548429,0.115115 1.079939,0.291157 1.594532,0.528125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4943" + inkscape:connector-curvature="0" /><path + d="m -57.181683,-59.655671 c -1.509901,5e-6 -2.555994,0.172662 -3.138281,0.517969 -0.582295,0.345317 -0.873441,0.934379 -0.873438,1.767187 -3e-6,0.663545 0.216663,1.191669 0.65,1.584375 0.4401,0.385939 1.035933,0.578908 1.7875,0.578907 1.035931,1e-6 1.865357,-0.365624 2.488282,-1.096876 0.629678,-0.738017 0.944522,-1.716402 0.944531,-2.935156 l 0,-0.416406 -1.858594,0 m 3.727344,-0.771875 0,6.489844 -1.86875,0 0,-1.726563 c -0.426571,0.690626 -0.958081,1.201824 -1.594531,1.533594 -0.636466,0.325 -1.415111,0.4875 -2.335938,0.4875 -1.164587,0 -2.092191,-0.325 -2.782813,-0.975 -0.683856,-0.656769 -1.025782,-1.533592 -1.025781,-2.630469 -1e-6,-1.279683 0.426561,-2.244526 1.279688,-2.894531 0.859892,-0.649993 2.139578,-0.974993 3.839062,-0.975 l 2.620313,0 0,-0.182813 c -9e-6,-0.859887 -0.284384,-1.523429 -0.853125,-1.990625 -0.561987,-0.473948 -1.354174,-0.710927 -2.376563,-0.710937 -0.650005,10e-6 -1.283077,0.07787 -1.899219,0.233593 -0.616149,0.155739 -1.208596,0.389333 -1.777343,0.700782 l 0,-1.726563 c 0.683851,-0.264051 1.347392,-0.460405 1.990625,-0.589063 0.643224,-0.135405 1.269526,-0.203113 1.878906,-0.203125 1.645305,1.2e-5 2.87421,0.426574 3.686719,1.279688 0.81249,0.853135 1.218739,2.146363 1.21875,3.879688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4945" + inkscape:connector-curvature="0" /><path + d="m -47.787146,-55.643952 0,6.032813 -1.878906,0 0,-15.701564 1.878906,0 0,1.726563 c 0.392704,-0.677073 0.886975,-1.178114 1.482813,-1.503125 0.602598,-0.33176 1.320306,-0.497645 2.153125,-0.497657 1.381241,1.2e-5 2.501813,0.548449 3.361719,1.645313 0.866655,1.096884 1.299988,2.53907 1.3,4.326563 -1.2e-5,1.787504 -0.433345,3.22969 -1.3,4.326562 -0.859906,1.096876 -1.980478,1.645313 -3.361719,1.645313 -0.832819,0 -1.550527,-0.1625 -2.153125,-0.4875 -0.595838,-0.33177 -1.090109,-0.836197 -1.482813,-1.513281 m 6.357813,-3.971094 c -1e-5,-1.374472 -0.284385,-2.451034 -0.853125,-3.229688 -0.561988,-0.785407 -1.337248,-1.178115 -2.325781,-1.178125 -0.988548,1e-5 -1.767193,0.392718 -2.335938,1.178125 -0.561983,0.778654 -0.842973,1.855216 -0.842969,3.229688 -4e-6,1.374483 0.280986,2.45443 0.842969,3.239844 0.568745,0.778647 1.34739,1.16797 2.335938,1.167969 0.988533,1e-6 1.763793,-0.389322 2.325781,-1.167969 0.56874,-0.785414 0.853115,-1.865361 0.853125,-3.239844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4947" + inkscape:connector-curvature="0" /><path + d="m -26.662145,-60.09239 0,0.914063 -8.592188,0 c 0.08125,1.286462 0.467184,2.268232 1.157812,2.945312 0.697391,0.670314 1.665619,1.00547 2.904688,1.005469 0.7177,10e-7 1.41171,-0.08802 2.082031,-0.264063 0.677074,-0.176039 1.347386,-0.440102 2.010938,-0.792187 l 0,1.767188 c -0.670323,0.284375 -1.357562,0.501041 -2.061719,0.65 -0.704175,0.148958 -1.418497,0.223437 -2.142969,0.223437 -1.814589,0 -3.253389,-0.528125 -4.316406,-1.584375 -1.056252,-1.056248 -1.584377,-2.484892 -1.584375,-4.285938 -2e-6,-1.861972 0.50104,-3.338012 1.503125,-4.428125 1.00885,-1.096864 2.366401,-1.645301 4.072656,-1.645313 1.5302,1.2e-5 2.738793,0.494282 3.625782,1.482813 0.893738,0.98178 1.340613,2.319018 1.340625,4.011719 m -1.86875,-0.548438 c -0.01355,-1.022388 -0.301312,-1.838272 -0.863282,-2.447656 -0.555217,-0.609365 -1.293237,-0.914052 -2.214062,-0.914062 -1.042714,10e-6 -1.878912,0.294541 -2.508594,0.883593 -0.622921,0.589071 -0.981774,1.418498 -1.076563,2.488282 l 6.662501,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4949" + inkscape:connector-curvature="0" /></g><g + style="font-size:9.60000038px" + id="text5819"><path + d="m -393.83092,-40.21505 0,5.697657 2.57969,0 c 0.95468,8e-6 1.6927,-0.247128 2.21406,-0.741406 0.52134,-0.494262 0.78202,-1.198428 0.78203,-2.112501 -1e-5,-0.90728 -0.26069,-1.60806 -0.78203,-2.102343 -0.52136,-0.494258 -1.25938,-0.741393 -2.21406,-0.741407 l -2.57969,0 m -2.05156,-1.685937 4.63125,0 c 1.69947,1.5e-5 2.98254,0.385952 3.84922,1.157812 0.87342,0.765118 1.31014,1.889075 1.31015,3.371875 -10e-6,1.496364 -0.43673,2.627092 -1.31015,3.392188 -0.86668,0.765111 -2.14975,1.147663 -3.84922,1.147656 l -2.57969,0 0,6.093751 -2.05156,0 0,-15.163282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4952" + inkscape:connector-curvature="0" /><path + d="m -382.79108,-28.464268 3.35157,0 0,-11.567969 -3.6461,0.73125 0,-1.86875 3.62578,-0.73125 2.05157,0 0,13.436719 3.35156,0 0,1.726563 -8.73438,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4954" + inkscape:connector-curvature="0" /><path + d="m -363.46373,-41.900987 3.05703,0 3.86953,10.31875 3.88984,-10.31875 3.05704,0 0,15.163282 -2.00079,0 0,-13.314845 -3.91015,10.400001 -2.06172,0 -3.91016,-10.400001 0,13.314845 -1.99062,0 0,-15.163282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4956" + inkscape:connector-curvature="0" /><path + d="m -340.4192,-32.455674 c -1.5099,5e-6 -2.55599,0.172662 -3.13828,0.517968 -0.58229,0.345318 -0.87344,0.93438 -0.87344,1.767188 0,0.663545 0.21667,1.191669 0.65,1.584375 0.4401,0.385939 1.03594,0.578908 1.7875,0.578906 1.03593,2e-6 1.86536,-0.365623 2.48829,-1.096875 0.62967,-0.738017 0.94452,-1.716402 0.94453,-2.935156 l 0,-0.416406 -1.8586,0 m 3.72735,-0.771875 0,6.489844 -1.86875,0 0,-1.726563 c -0.42657,0.690626 -0.95808,1.201824 -1.59453,1.533594 -0.63647,0.325 -1.41512,0.4875 -2.33594,0.4875 -1.16459,0 -2.09219,-0.325 -2.78282,-0.975 -0.68385,-0.65677 -1.02578,-1.533592 -1.02578,-2.630469 0,-1.279683 0.42656,-2.244526 1.27969,-2.894531 0.85989,-0.649994 2.13958,-0.974993 3.83906,-0.975 l 2.62032,0 0,-0.182813 c -10e-6,-0.859888 -0.28439,-1.523429 -0.85313,-1.990625 -0.56199,-0.473949 -1.35417,-0.710927 -2.37656,-0.710938 -0.65001,1.1e-5 -1.28308,0.07787 -1.89922,0.233594 -0.61615,0.155739 -1.2086,0.389333 -1.77734,0.700782 l 0,-1.726563 c 0.68385,-0.264051 1.34739,-0.460405 1.99062,-0.589063 0.64323,-0.135405 1.26953,-0.203113 1.87891,-0.203125 1.6453,1.2e-5 2.87421,0.426574 3.68672,1.279688 0.81249,0.853135 1.21874,2.146362 1.21875,3.879688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4958" + inkscape:connector-curvature="0" /><path + d="m -330.98404,-41.342394 0,3.229688 3.84922,0 0,1.452344 -3.84922,0 0,6.175 c -1e-5,0.927607 0.12525,1.52344 0.37578,1.7875 0.25729,0.264065 0.77525,0.396096 1.5539,0.396094 l 1.91954,0 0,1.564063 -1.91954,0 c -1.44219,0 -2.4375,-0.267448 -2.98593,-0.802344 -0.54844,-0.541665 -0.82266,-1.523435 -0.82266,-2.945313 l 0,-6.175 -1.37109,0 0,-1.452344 1.37109,0 0,-3.229688 1.87891,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4960" + inkscape:connector-curvature="0" /><path + d="m -314.93717,-32.892393 0,0.914062 -8.59219,0 c 0.0813,1.286463 0.46719,2.268233 1.15781,2.945313 0.6974,0.670314 1.66562,1.00547 2.90469,1.005469 0.7177,1e-6 1.41171,-0.08802 2.08203,-0.264063 0.67708,-0.17604 1.34739,-0.440102 2.01094,-0.792187 l 0,1.767187 c -0.67032,0.284376 -1.35756,0.501042 -2.06172,0.650001 -0.70417,0.148958 -1.41849,0.223437 -2.14297,0.223437 -1.81458,0 -3.25339,-0.528125 -4.3164,-1.584375 -1.05625,-1.056248 -1.58438,-2.484892 -1.58438,-4.285938 0,-1.861972 0.50104,-3.338012 1.50313,-4.428125 1.00885,-1.096864 2.3664,-1.645301 4.07265,-1.645313 1.5302,1.2e-5 2.7388,0.494282 3.62579,1.482813 0.89373,0.98178 1.34061,2.319018 1.34062,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55522,-0.609365 -1.29324,-0.914052 -2.21406,-0.914063 -1.04272,1.1e-5 -1.87892,0.294542 -2.5086,0.883594 -0.62292,0.589071 -0.98177,1.418498 -1.07656,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4962" + inkscape:connector-curvature="0" /><path + d="m -305.27857,-36.365831 c -0.2099,-0.121865 -0.44011,-0.209886 -0.69062,-0.264062 -0.24376,-0.06093 -0.51459,-0.0914 -0.8125,-0.09141 -1.05626,10e-6 -1.86876,0.345323 -2.4375,1.035938 -0.56199,0.683862 -0.84298,1.669018 -0.84297,2.955469 l 0,5.992188 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.3927,-0.690615 0.9039,-1.201812 1.53359,-1.533594 0.62968,-0.33853 1.39479,-0.507801 2.29531,-0.507813 0.12864,1.2e-5 0.27083,0.01017 0.42657,0.03047 0.15572,0.01355 0.32837,0.03725 0.51797,0.07109 l 0.0102,1.919531" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4964" + inkscape:connector-curvature="0" /><path + d="m -303.29811,-38.112706 1.86875,0 0,11.375001 -1.86875,0 0,-11.375001 m 0,-4.428125 1.86875,0 0,2.366406 -1.86875,0 0,-2.366406" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4966" + inkscape:connector-curvature="0" /><path + d="m -292.35982,-32.455674 c -1.5099,5e-6 -2.556,0.172662 -3.13828,0.517968 -0.5823,0.345318 -0.87344,0.93438 -0.87344,1.767188 0,0.663545 0.21666,1.191669 0.65,1.584375 0.4401,0.385939 1.03593,0.578908 1.7875,0.578906 1.03593,2e-6 1.86536,-0.365623 2.48828,-1.096875 0.62968,-0.738017 0.94452,-1.716402 0.94453,-2.935156 l 0,-0.416406 -1.85859,0 m 3.72734,-0.771875 0,6.489844 -1.86875,0 0,-1.726563 c -0.42657,0.690626 -0.95808,1.201824 -1.59453,1.533594 -0.63646,0.325 -1.41511,0.4875 -2.33594,0.4875 -1.16458,0 -2.09219,-0.325 -2.78281,-0.975 -0.68386,-0.65677 -1.02578,-1.533592 -1.02578,-2.630469 0,-1.279683 0.42656,-2.244526 1.27969,-2.894531 0.85989,-0.649994 2.13958,-0.974993 3.83906,-0.975 l 2.62031,0 0,-0.182813 c -10e-6,-0.859888 -0.28438,-1.523429 -0.85312,-1.990625 -0.56199,-0.473949 -1.35418,-0.710927 -2.37657,-0.710938 -0.65,1.1e-5 -1.28307,0.07787 -1.89921,0.233594 -0.61615,0.155739 -1.2086,0.389333 -1.77735,0.700782 l 0,-1.726563 c 0.68385,-0.264051 1.34739,-0.460405 1.99063,-0.589063 0.64322,-0.135405 1.26952,-0.203113 1.8789,-0.203125 1.64531,1.2e-5 2.87421,0.426574 3.68672,1.279688 0.81249,0.853135 1.21874,2.146362 1.21875,3.879688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4968" + inkscape:connector-curvature="0" /><path + d="m -284.7731,-42.540831 1.86875,0 0,15.803126 -1.86875,0 0,-15.803126" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4970" + inkscape:connector-curvature="0" /><path + d="m -263.21139,-41.403331 0,2.000781 c -0.77865,-0.372382 -1.51329,-0.649986 -2.2039,-0.832812 -0.69064,-0.182799 -1.35756,-0.274205 -2.00078,-0.274219 -1.1172,1.4e-5 -1.98048,0.21668 -2.58985,0.65 -0.60261,0.433346 -0.90391,1.049491 -0.9039,1.848438 -10e-6,0.670323 0.19973,1.178135 0.59922,1.523437 0.40624,0.338551 1.17134,0.61277 2.29531,0.822657 l 1.23906,0.253906 c 1.5302,0.291154 2.65754,0.805737 3.38203,1.54375 0.73124,0.731256 1.09687,1.713026 1.09688,2.945313 -10e-6,1.469273 -0.49429,2.583074 -1.48282,3.341406 -0.98178,0.758333 -2.42396,1.1375 -4.32656,1.1375 -0.71771,0 -1.48282,-0.08125 -2.29531,-0.24375 -0.80573,-0.1625 -1.64193,-0.402864 -2.50859,-0.721094 l 0,-2.1125 c 0.83281,0.46719 1.64869,0.819273 2.44765,1.05625 0.79896,0.236981 1.58437,0.35547 2.35625,0.355469 1.17135,1e-6 2.07525,-0.230207 2.71172,-0.690625 0.63645,-0.460414 0.95468,-1.117184 0.95469,-1.970313 -10e-6,-0.744787 -0.23022,-1.327078 -0.69063,-1.746875 -0.45365,-0.419785 -1.20183,-0.734629 -2.24453,-0.944531 l -1.24922,-0.24375 c -1.53021,-0.30468 -2.63724,-0.782024 -3.32109,-1.432031 -0.68386,-0.649991 -1.02578,-1.553897 -1.02578,-2.711719 0,-1.340613 0.47057,-2.396862 1.41172,-3.168751 0.94791,-0.77186 2.25129,-1.157797 3.91015,-1.157812 0.71093,1.5e-5 1.43541,0.06434 2.17344,0.192969 0.73801,0.128661 1.49296,0.321629 2.26484,0.578906" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4972" + inkscape:connector-curvature="0" /><path + d="m -249.72389,-33.603331 0,6.865626 -1.86875,0 0,-6.804688 c -1e-5,-1.076555 -0.2099,-1.882283 -0.62968,-2.417188 -0.4198,-0.534886 -1.04949,-0.802334 -1.88907,-0.802344 -1.00886,10e-6 -1.80443,0.321625 -2.38671,0.964844 -0.5823,0.643238 -0.87345,1.52006 -0.87344,2.630469 l 0,6.428907 -1.87891,0 0,-15.803126 1.87891,0 0,6.195313 c 0.44687,-0.683844 0.97161,-1.195042 1.57422,-1.533594 0.60937,-0.33853 1.31015,-0.507801 2.10234,-0.507813 1.30676,1.2e-5 2.2953,0.406262 2.96563,1.21875 0.6703,0.805739 1.00545,1.994019 1.00546,3.564844" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4974" + inkscape:connector-curvature="0" /><path + d="m -236.24654,-32.892393 0,0.914062 -8.59219,0 c 0.0813,1.286463 0.46718,2.268233 1.15781,2.945313 0.69739,0.670314 1.66562,1.00547 2.90469,1.005469 0.7177,1e-6 1.41171,-0.08802 2.08203,-0.264063 0.67708,-0.17604 1.34739,-0.440102 2.01094,-0.792187 l 0,1.767187 c -0.67032,0.284376 -1.35756,0.501042 -2.06172,0.650001 -0.70417,0.148958 -1.4185,0.223437 -2.14297,0.223437 -1.81459,0 -3.25339,-0.528125 -4.3164,-1.584375 -1.05626,-1.056248 -1.58438,-2.484892 -1.58438,-4.285938 0,-1.861972 0.50104,-3.338012 1.50313,-4.428125 1.00885,-1.096864 2.3664,-1.645301 4.07265,-1.645313 1.5302,1.2e-5 2.73879,0.494282 3.62578,1.482813 0.89374,0.98178 1.34062,2.319018 1.34063,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55522,-0.609365 -1.29324,-0.914052 -2.21407,-0.914063 -1.04271,1.1e-5 -1.87891,0.294542 -2.50859,0.883594 -0.62292,0.589071 -0.98177,1.418498 -1.07656,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4976" + inkscape:connector-curvature="0" /><path + d="m -223.44967,-32.892393 0,0.914062 -8.59218,0 c 0.0812,1.286463 0.46718,2.268233 1.15781,2.945313 0.69739,0.670314 1.66562,1.00547 2.90469,1.005469 0.7177,1e-6 1.41171,-0.08802 2.08203,-0.264063 0.67707,-0.17604 1.34738,-0.440102 2.01093,-0.792187 l 0,1.767187 c -0.67032,0.284376 -1.35756,0.501042 -2.06171,0.650001 -0.70418,0.148958 -1.4185,0.223437 -2.14297,0.223437 -1.81459,0 -3.25339,-0.528125 -4.31641,-1.584375 -1.05625,-1.056248 -1.58438,-2.484892 -1.58437,-4.285938 -1e-5,-1.861972 0.50104,-3.338012 1.50312,-4.428125 1.00885,-1.096864 2.3664,-1.645301 4.07266,-1.645313 1.5302,1.2e-5 2.73879,0.494282 3.62578,1.482813 0.89374,0.98178 1.34061,2.319018 1.34062,4.011719 m -1.86875,-0.548438 c -0.0136,-1.022388 -0.30131,-1.838272 -0.86328,-2.447656 -0.55521,-0.609365 -1.29324,-0.914052 -2.21406,-0.914063 -1.04271,1.1e-5 -1.87891,0.294542 -2.50859,0.883594 -0.62292,0.589071 -0.98178,1.418498 -1.07657,2.488282 l 6.6625,-0.01016" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4978" + inkscape:connector-curvature="0" /><path + d="m -218.53404,-41.342394 0,3.229688 3.84922,0 0,1.452344 -3.84922,0 0,6.175 c -1e-5,0.927607 0.12525,1.52344 0.37578,1.7875 0.25729,0.264065 0.77525,0.396096 1.55391,0.396094 l 1.91953,0 0,1.564063 -1.91953,0 c -1.4422,0 -2.43751,-0.267448 -2.98594,-0.802344 -0.54844,-0.541665 -0.82266,-1.523435 -0.82266,-2.945313 l 0,-6.175 -1.37109,0 0,-1.452344 1.37109,0 0,-3.229688 1.87891,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4980" + inkscape:connector-curvature="0" /><path + d="m -206.5395,-33.268174 5.47421,0 0,1.665625 -5.47421,0 0,-1.665625" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4982" + inkscape:connector-curvature="0" /><path + d="m -190.83795,-28.464268 3.35157,0 0,-11.567969 -3.6461,0.73125 0,-1.86875 3.62578,-0.73125 2.05157,0 0,13.436719 3.35156,0 0,1.726563 -8.73438,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4984" + inkscape:connector-curvature="0" /><path + d="m -173.56215,-33.938487 c -0.97501,7e-6 -1.7435,0.260684 -2.30547,0.782031 -0.55522,0.521361 -0.83282,1.239068 -0.83282,2.153126 0,0.914065 0.2776,1.631773 0.83282,2.153125 0.56197,0.521355 1.33046,0.782032 2.30547,0.782031 0.97499,10e-7 1.74348,-0.260676 2.30546,-0.782031 0.56197,-0.528123 0.84296,-1.24583 0.84297,-2.153125 -10e-6,-0.914058 -0.281,-1.631765 -0.84297,-2.153126 -0.55521,-0.521347 -1.3237,-0.782024 -2.30546,-0.782031 m -2.05157,-0.873437 c -0.88021,-0.216659 -1.56745,-0.626294 -2.06172,-1.228907 -0.4875,-0.602594 -0.73125,-1.337229 -0.73125,-2.203906 0,-1.211967 0.42995,-2.170039 1.28985,-2.874219 0.86666,-0.704152 2.05156,-1.056235 3.55469,-1.05625 1.50988,1.5e-5 2.69478,0.352098 3.55468,1.05625 0.85989,0.70418 1.28984,1.662252 1.28985,2.874219 -1e-5,0.866677 -0.24715,1.601312 -0.74141,2.203906 -0.48751,0.602613 -1.16798,1.012248 -2.04141,1.228907 0.98854,0.230216 1.75702,0.680476 2.30547,1.350781 0.5552,0.670318 0.8328,1.489589 0.83282,2.457813 -2e-5,1.469273 -0.45028,2.596616 -1.35079,3.382031 -0.89376,0.785417 -2.17683,1.178125 -3.84921,1.178125 -1.67241,0 -2.95886,-0.392708 -3.85938,-1.178125 -0.89375,-0.785415 -1.34063,-1.912758 -1.34063,-3.382031 0,-0.968224 0.27761,-1.787495 0.83282,-2.457813 0.5552,-0.670305 1.32708,-1.120565 2.31562,-1.350781 m -0.75156,-3.239844 c 0,0.785427 0.24375,1.398187 0.73125,1.838281 0.49427,0.440113 1.18489,0.660165 2.07188,0.660156 0.8802,9e-6 1.56744,-0.220043 2.06171,-0.660156 0.50104,-0.440094 0.75156,-1.052854 0.75157,-1.838281 -1e-5,-0.785405 -0.25053,-1.398165 -0.75157,-1.838282 -0.49427,-0.44009 -1.18151,-0.660142 -2.06171,-0.660156 -0.88699,1.4e-5 -1.57761,0.220066 -2.07188,0.660156 -0.4875,0.440117 -0.73125,1.052877 -0.73125,1.838282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4986" + inkscape:connector-curvature="0" /><path + d="m -164.35044,-28.464268 3.35156,0 0,-11.567969 -3.64609,0.73125 0,-1.86875 3.62578,-0.73125 2.05156,0 0,13.436719 3.35156,0 0,1.726563 -8.73437,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4988" + inkscape:connector-curvature="0" /><path + d="m -142.86996,-35.929112 c 0.46717,-0.839573 1.02577,-1.459104 1.67578,-1.858594 0.64998,-0.399468 1.41509,-0.599207 2.29531,-0.599219 1.18488,1.2e-5 2.09894,0.416418 2.74219,1.249219 0.64321,0.826051 0.96482,2.004175 0.96484,3.534375 l 0,6.865626 -1.8789,0 0,-6.804688 c -2e-5,-1.090096 -0.19299,-1.89921 -0.57891,-2.427344 -0.38595,-0.528115 -0.97502,-0.792178 -1.76719,-0.792188 -0.96824,10e-6 -1.73334,0.321625 -2.29531,0.964844 -0.56199,0.643238 -0.84298,1.52006 -0.84297,2.630469 l 0,6.428907 -1.87891,0 0,-6.804688 c -1e-5,-1.096867 -0.19297,-1.905981 -0.5789,-2.427344 -0.38595,-0.528115 -0.98178,-0.792178 -1.7875,-0.792188 -0.9547,10e-6 -1.71303,0.32501 -2.275,0.975001 -0.56199,0.643237 -0.84298,1.516674 -0.84297,2.620312 l 0,6.428907 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.42656,-0.697386 0.93775,-1.211969 1.53359,-1.54375 0.59583,-0.33176 1.30338,-0.497645 2.12266,-0.497657 0.82603,1.2e-5 1.52681,0.209908 2.10234,0.629688 0.58228,0.419802 1.01223,1.029177 1.28985,1.828125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4990" + inkscape:connector-curvature="0" /><path + d="m -122.59808,-35.929112 c 0.46717,-0.839573 1.02577,-1.459104 1.67578,-1.858594 0.64999,-0.399468 1.41509,-0.599207 2.29531,-0.599219 1.18488,1.2e-5 2.09894,0.416418 2.74219,1.249219 0.64321,0.826051 0.96482,2.004175 0.96484,3.534375 l 0,6.865626 -1.8789,0 0,-6.804688 c -2e-5,-1.090096 -0.19299,-1.89921 -0.57891,-2.427344 -0.38595,-0.528115 -0.97502,-0.792178 -1.76719,-0.792188 -0.96824,10e-6 -1.73334,0.321625 -2.29531,0.964844 -0.56199,0.643238 -0.84298,1.52006 -0.84297,2.630469 l 0,6.428907 -1.87891,0 0,-6.804688 c 0,-1.096867 -0.19297,-1.905981 -0.5789,-2.427344 -0.38595,-0.528115 -0.98178,-0.792178 -1.7875,-0.792188 -0.9547,10e-6 -1.71303,0.32501 -2.275,0.975001 -0.56199,0.643237 -0.84297,1.516674 -0.84297,2.620312 l 0,6.428907 -1.87891,0 0,-11.375001 1.87891,0 0,1.767188 c 0.42656,-0.697386 0.93775,-1.211969 1.53359,-1.54375 0.59583,-0.33176 1.30338,-0.497645 2.12266,-0.497657 0.82603,1.2e-5 1.52681,0.209908 2.10234,0.629688 0.58228,0.419802 1.01223,1.029177 1.28985,1.828125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4992" + inkscape:connector-curvature="0" /><path + d="m -95.105126,-38.112706 -4.113282,5.535157 4.326563,5.839844 -2.203906,0 -3.310939,-4.46875 -3.31094,4.46875 -2.2039,0 4.41797,-5.951563 -4.04219,-5.423438 2.2039,0 3.01641,4.052344 3.016407,-4.052344 2.203907,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4994" + inkscape:connector-curvature="0" /><path + d="m -85.00982,-28.464268 3.351562,0 0,-11.567969 -3.646094,0.73125 0,-1.86875 3.625782,-0.73125 2.051562,0 0,13.436719 3.351563,0 0,1.726563 -8.734375,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4996" + inkscape:connector-curvature="0" /><path + d="m -67.734015,-33.938487 c -0.975005,7e-6 -1.743494,0.260684 -2.305468,0.782031 -0.555213,0.521361 -0.832816,1.239068 -0.832813,2.153126 -3e-6,0.914065 0.2776,1.631773 0.832813,2.153125 0.561974,0.521355 1.330463,0.782032 2.305468,0.782031 0.974993,10e-7 1.743482,-0.260676 2.305469,-0.782031 0.56197,-0.528123 0.842959,-1.24583 0.842969,-2.153125 -1e-5,-0.914058 -0.280999,-1.631765 -0.842969,-2.153126 -0.555216,-0.521347 -1.323705,-0.782024 -2.305469,-0.782031 m -2.051562,-0.873437 c -0.880212,-0.216659 -1.567451,-0.626294 -2.061719,-1.228907 -0.487502,-0.602594 -0.731252,-1.337229 -0.73125,-2.203906 -2e-6,-1.211967 0.429946,-2.170039 1.289844,-2.874219 0.866663,-0.704152 2.051557,-1.056235 3.554687,-1.05625 1.509888,1.5e-5 2.694783,0.352098 3.554688,1.05625 0.859885,0.70418 1.289833,1.662252 1.289844,2.874219 -1.1e-5,0.866677 -0.247147,1.601312 -0.741406,2.203906 -0.487511,0.602613 -1.167979,1.012248 -2.041407,1.228907 0.988532,0.230216 1.757021,0.680476 2.305469,1.350781 0.555197,0.670318 0.832801,1.489589 0.832813,2.457813 -1.2e-5,1.469273 -0.450272,2.596616 -1.350782,3.382031 -0.893759,0.785417 -2.176831,1.178125 -3.849219,1.178125 -1.6724,0 -2.958858,-0.392708 -3.859375,-1.178125 -0.893752,-0.785415 -1.340626,-1.912758 -1.340625,-3.382031 -10e-7,-0.968224 0.277603,-1.787495 0.832813,-2.457813 0.555205,-0.670305 1.32708,-1.120565 2.315625,-1.350781 m -0.751563,-3.239844 c -3e-6,0.785427 0.243746,1.398187 0.73125,1.838281 0.494266,0.440113 1.184891,0.660165 2.071875,0.660156 0.880201,9e-6 1.56744,-0.220043 2.061719,-0.660156 0.501033,-0.440094 0.751553,-1.052854 0.751563,-1.838281 -1e-5,-0.785405 -0.25053,-1.398165 -0.751563,-1.838282 -0.494279,-0.44009 -1.181518,-0.660142 -2.061719,-0.660156 -0.886984,1.4e-5 -1.577609,0.220066 -2.071875,0.660156 -0.487504,0.440117 -0.731253,1.052877 -0.73125,1.838282" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path4998" + inkscape:connector-curvature="0" /><path + d="m -58.522302,-28.464268 3.351563,0 0,-11.567969 -3.646094,0.73125 0,-1.86875 3.625781,-0.73125 2.051563,0 0,13.436719 3.351562,0 0,1.726563 -8.734375,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5000" + inkscape:connector-curvature="0" /><path + d="m -37.041839,-35.929112 c 0.467176,-0.839573 1.025769,-1.459104 1.675781,-1.858594 0.649987,-0.399468 1.415091,-0.599207 2.295313,-0.599219 1.18488,1.2e-5 2.098942,0.416418 2.742188,1.249219 0.643211,0.826051 0.964825,2.004175 0.964843,3.534375 l 0,6.865626 -1.878906,0 0,-6.804688 c -1.7e-5,-1.090096 -0.192985,-1.89921 -0.578906,-2.427344 -0.385953,-0.528115 -0.975015,-0.792178 -1.767188,-0.792188 -0.968242,10e-6 -1.733346,0.321625 -2.295312,0.964844 -0.561991,0.643238 -0.84298,1.52006 -0.842969,2.630469 l 0,6.428907 -1.878907,0 0,-6.804688 c -9e-6,-1.096867 -0.192977,-1.905981 -0.578906,-2.427344 -0.385946,-0.528115 -0.981778,-0.792178 -1.7875,-0.792188 -0.954693,10e-6 -1.713026,0.32501 -2.275,0.975001 -0.561983,0.643237 -0.842973,1.516674 -0.842969,2.620312 l 0,6.428907 -1.878906,0 0,-11.375001 1.878906,0 0,1.767188 c 0.426558,-0.697386 0.937756,-1.211969 1.533594,-1.54375 0.595827,-0.33176 1.303379,-0.497645 2.122656,-0.497657 0.826034,1.2e-5 1.526814,0.209908 2.102344,0.629688 0.582282,0.419802 1.012229,1.029177 1.289844,1.828125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5002" + inkscape:connector-curvature="0" /><path + d="m -16.769958,-35.929112 c 0.467176,-0.839573 1.02577,-1.459104 1.675781,-1.858594 0.649987,-0.399468 1.415091,-0.599207 2.295313,-0.599219 1.18488,1.2e-5 2.098942,0.416418 2.742188,1.249219 0.6432107,0.826051 0.964825,2.004175 0.9648435,3.534375 l 0,6.865626 -1.8789065,0 0,-6.804688 c -1.6e-5,-1.090096 -0.192985,-1.89921 -0.578906,-2.427344 -0.385953,-0.528115 -0.975015,-0.792178 -1.767188,-0.792188 -0.968242,10e-6 -1.733346,0.321625 -2.295312,0.964844 -0.561991,0.643238 -0.84298,1.52006 -0.842969,2.630469 l 0,6.428907 -1.878906,0 0,-6.804688 c -10e-6,-1.096867 -0.192978,-1.905981 -0.578907,-2.427344 -0.385946,-0.528115 -0.981778,-0.792178 -1.7875,-0.792188 -0.954693,10e-6 -1.713026,0.32501 -2.275,0.975001 -0.561983,0.643237 -0.842973,1.516674 -0.842969,2.620312 l 0,6.428907 -1.878906,0 0,-11.375001 1.878906,0 0,1.767188 c 0.426559,-0.697386 0.937756,-1.211969 1.533594,-1.54375 0.595828,-0.33176 1.303379,-0.497645 2.122656,-0.497657 0.826034,1.2e-5 1.526814,0.209908 2.102344,0.629688 0.582282,0.419802 1.012229,1.029177 1.289844,1.828125" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5004" + inkscape:connector-curvature="0" /><path + d="m 4.5886233,-41.900987 1.7265626,0 -5.2812503,17.092969 -1.72656255,0 5.28125025,-17.092969" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5006" + inkscape:connector-curvature="0" /><path + d="m 14.663617,-41.900987 9.750001,0 0,0.873437 -5.504688,14.289845 -2.142969,0 5.179688,-13.43672 -7.282032,0 0,-1.726562" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5008" + inkscape:connector-curvature="0" /><path + d="m 28.42536,-29.317393 2.142969,0 0,2.579688 -2.142969,0 0,-2.579688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5010" + inkscape:connector-curvature="0" /><path + d="m 35.402686,-28.464268 3.351562,0 0,-11.567969 -3.646094,0.73125 0,-1.86875 3.625782,-0.73125 2.051562,0 0,13.436719 3.351563,0 0,1.726563 -8.734375,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5012" + inkscape:connector-curvature="0" /><path + d="m 48.666742,-41.900987 2.142969,0 0,1.746875 -1.665625,3.25 -1.310156,0 0.832812,-3.25 0,-1.746875 m 4.164063,0 2.142969,0 0,1.746875 -1.665625,3.25 -1.310157,0 0.832813,-3.25 0,-1.746875" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5014" + inkscape:connector-curvature="0" /><path + d="m 74.86988,-38.112706 -4.113282,5.535157 4.326563,5.839844 -2.203906,0 -3.310938,-4.46875 -3.310938,4.46875 -2.203906,0 4.417969,-5.951563 -4.042188,-5.423438 2.203907,0 3.016406,4.052344 3.016406,-4.052344 2.203907,0" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5016" + inkscape:connector-curvature="0" /><path + d="m 84.091748,-41.900987 9.750001,0 0,0.873437 -5.504688,14.289845 -2.142969,0 5.179688,-13.43672 -7.282032,0 0,-1.726562" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5018" + inkscape:connector-curvature="0" /><path + d="m 97.853491,-29.317393 2.142969,0 0,2.579688 -2.142969,0 0,-2.579688" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5020" + inkscape:connector-curvature="0" /><path + d="m 104.83082,-28.464268 3.35156,0 0,-11.567969 -3.64609,0.73125 0,-1.86875 3.62578,-0.73125 2.05156,0 0,13.436719 3.35156,0 0,1.726563 -8.73437,0 0,-1.726563" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5022" + inkscape:connector-curvature="0" /><path + d="m 118.09487,-41.900987 2.14297,0 0,1.746875 -1.66562,3.25 -1.31016,0 0.83281,-3.25 0,-1.746875 m 4.16407,0 2.14296,0 0,1.746875 -1.66562,3.25 -1.31016,0 0.83282,-3.25 0,-1.746875" + style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" + id="path5024" + inkscape:connector-curvature="0" /></g><g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:164.99999762%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#f6921e;fill-opacity:1" + id="text4741-7"><path + d="m -345.92125,420.07328 -2.24375,1.2125 2.24375,1.21875 -0.3625,0.6125 -2.1,-1.26875 0,2.35625 -0.7125,0 0,-2.35625 -2.1,1.26875 -0.3625,-0.6125 2.24375,-1.21875 -2.24375,-1.2125 0.3625,-0.61875 2.1,1.26875 0,-2.35625 0.7125,0 0,2.35625 2.1,-1.26875 0.3625,0.61875" + id="path5027" + inkscape:connector-curvature="0" /><path + d="m -343.02125,419.57328 0,7.25625 1.525,0 c 1.28749,1e-5 2.22916,-0.29166 2.825,-0.875 0.59999,-0.58333 0.89999,-1.50416 0.9,-2.7625 -10e-6,-1.24999 -0.30001,-2.16457 -0.9,-2.74375 -0.59584,-0.58332 -1.53751,-0.87499 -2.825,-0.875 l -1.525,0 m -1.2625,-1.0375 2.59375,0 c 1.80833,1e-5 3.13541,0.3771 3.98125,1.13125 0.84582,0.75001 1.26874,1.92501 1.26875,3.525 -10e-6,1.60834 -0.42501,2.78959 -1.275,3.54375 -0.85001,0.75417 -2.17501,1.13125 -3.975,1.13125 l -2.59375,0 0,-9.33125" + id="path5029" + inkscape:connector-curvature="0" /><path + d="m -328.49625,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83543,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45624,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15626,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5031" + inkscape:connector-curvature="0" /><path + d="m -326.60875,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" + id="path5033" + inkscape:connector-curvature="0" /><path + d="m -317.07125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.025,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83542,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45625,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15625,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5035" + inkscape:connector-curvature="0" /><path + d="m -314.04625,418.87953 0,1.9875 2.36875,0 0,0.89375 -2.36875,0 0,3.8 c -1e-5,0.57084 0.0771,0.93751 0.23125,1.1 0.15833,0.16251 0.47708,0.24376 0.95625,0.24375 l 1.18125,0 0,0.9625 -1.18125,0 c -0.88751,0 -1.50001,-0.16458 -1.8375,-0.49375 -0.3375,-0.33333 -0.50625,-0.93749 -0.50625,-1.8125 l 0,-3.8 -0.84375,0 0,-0.89375 0.84375,0 0,-1.9875 1.15625,0" + id="path5037" + inkscape:connector-curvature="0" /><path + d="m -304.17125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83542,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45625,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15625,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5039" + inkscape:connector-curvature="0" /><path + d="m -297.07125,418.87953 0,1.9875 2.36875,0 0,0.89375 -2.36875,0 0,3.8 c 0,0.57084 0.0771,0.93751 0.23125,1.1 0.15833,0.16251 0.47708,0.24376 0.95625,0.24375 l 1.18125,0 0,0.9625 -1.18125,0 c -0.8875,0 -1.5,-0.16458 -1.8375,-0.49375 -0.3375,-0.33333 -0.50625,-0.93749 -0.50625,-1.8125 l 0,-3.8 -0.84375,0 0,-0.89375 0.84375,0 0,-1.9875 1.15625,0" + id="path5041" + inkscape:connector-curvature="0" /><path + d="m -287.365,423.64203 0,4.225 -1.15,0 0,-4.1875 c -1e-5,-0.66249 -0.12918,-1.15832 -0.3875,-1.4875 -0.25834,-0.32916 -0.64584,-0.49374 -1.1625,-0.49375 -0.62084,10e-6 -1.11042,0.19793 -1.46875,0.59375 -0.35834,0.39584 -0.53751,0.93543 -0.5375,1.61875 l 0,3.95625 -1.15625,0 0,-9.725 1.15625,0 0,3.8125 c 0.27499,-0.42082 0.59791,-0.73541 0.96875,-0.94375 0.37499,-0.20832 0.80624,-0.31249 1.29375,-0.3125 0.80416,10e-6 1.41249,0.25001 1.825,0.75 0.41249,0.49584 0.61874,1.22709 0.61875,2.19375" + id="path5043" + inkscape:connector-curvature="0" /><path + d="m -279.07125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.025,0.61876 1.7875,0.61875 0.44166,10e-6 0.86875,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83542,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45625,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15625,0.18126 -1.54375,0.54375 -0.38333,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5045" + inkscape:connector-curvature="0" /><path + d="m -267.12125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83543,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45624,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15626,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5047" + inkscape:connector-curvature="0" /><path + d="m -259.6275,420.86703 -2.53125,3.40625 2.6625,3.59375 -1.35625,0 -2.0375,-2.75 -2.0375,2.75 -1.35625,0 2.71875,-3.6625 -2.4875,-3.3375 1.35625,0 1.85625,2.49375 1.85625,-2.49375 1.35625,0" + id="path5049" + inkscape:connector-curvature="0" /><path + d="m -254.6775,424.34828 c -0.92917,1e-5 -1.57292,0.10626 -1.93125,0.31875 -0.35834,0.21251 -0.5375,0.57501 -0.5375,1.0875 0,0.40834 0.13333,0.73334 0.4,0.975 0.27083,0.23751 0.63749,0.35626 1.1,0.35625 0.63749,10e-6 1.14791,-0.22499 1.53125,-0.675 0.38749,-0.45416 0.58124,-1.05624 0.58125,-1.80625 l 0,-0.25625 -1.14375,0 m 2.29375,-0.475 0,3.99375 -1.15,0 0,-1.0625 c -0.26251,0.42501 -0.58959,0.73959 -0.98125,0.94375 -0.39167,0.2 -0.87084,0.3 -1.4375,0.3 -0.71667,0 -1.2875,-0.2 -1.7125,-0.6 -0.42084,-0.40416 -0.63125,-0.94374 -0.63125,-1.61875 0,-0.78749 0.2625,-1.38124 0.7875,-1.78125 0.52916,-0.39999 1.31666,-0.59999 2.3625,-0.6 l 1.6125,0 0,-0.1125 c -1e-5,-0.52916 -0.17501,-0.93749 -0.525,-1.225 -0.34584,-0.29166 -0.83334,-0.43749 -1.4625,-0.4375 -0.40001,1e-5 -0.78959,0.0479 -1.16875,0.14375 -0.37917,0.0958 -0.74375,0.23959 -1.09375,0.43125 l 0,-1.0625 c 0.42083,-0.16249 0.82916,-0.28332 1.225,-0.3625 0.39583,-0.0833 0.78124,-0.12499 1.15625,-0.125 1.01249,10e-6 1.76874,0.26251 2.26875,0.7875 0.49999,0.52501 0.74999,1.32084 0.75,2.3875" + id="path5051" + inkscape:connector-curvature="0" /><path + d="m -244.55875,422.21078 c 0.28749,-0.51666 0.63124,-0.89791 1.03125,-1.14375 0.39999,-0.24582 0.87082,-0.36874 1.4125,-0.36875 0.72915,10e-6 1.29165,0.25626 1.6875,0.76875 0.39582,0.50834 0.59373,1.23334 0.59375,2.175 l 0,4.225 -1.15625,0 0,-4.1875 c -1e-5,-0.67082 -0.11876,-1.16874 -0.35625,-1.49375 -0.23751,-0.32499 -0.60001,-0.48749 -1.0875,-0.4875 -0.59585,10e-6 -1.06668,0.19793 -1.4125,0.59375 -0.34584,0.39584 -0.51876,0.93543 -0.51875,1.61875 l 0,3.95625 -1.15625,0 0,-4.1875 c -1e-5,-0.67499 -0.11876,-1.17291 -0.35625,-1.49375 -0.23751,-0.32499 -0.60418,-0.48749 -1.1,-0.4875 -0.58751,10e-6 -1.05417,0.20001 -1.4,0.6 -0.34584,0.39584 -0.51876,0.93334 -0.51875,1.6125 l 0,3.95625 -1.15625,0 0,-7 1.15625,0 0,1.0875 c 0.26249,-0.42916 0.57708,-0.74582 0.94375,-0.95 0.36666,-0.20415 0.80208,-0.30624 1.30625,-0.30625 0.50832,10e-6 0.93957,0.12918 1.29375,0.3875 0.35832,0.25834 0.62291,0.63334 0.79375,1.125" + id="path5053" + inkscape:connector-curvature="0" /><path + d="m -236.42125,426.81703 0,3.7125 -1.15625,0 0,-9.6625 1.15625,0 0,1.0625 c 0.24167,-0.41666 0.54583,-0.72499 0.9125,-0.925 0.37083,-0.20415 0.8125,-0.30624 1.325,-0.30625 0.85,10e-6 1.53958,0.33751 2.06875,1.0125 0.53333,0.67501 0.79999,1.56251 0.8,2.6625 -1e-5,1.10001 -0.26667,1.98751 -0.8,2.6625 -0.52917,0.67501 -1.21875,1.0125 -2.06875,1.0125 -0.5125,0 -0.95417,-0.1 -1.325,-0.3 -0.36667,-0.20416 -0.67083,-0.51458 -0.9125,-0.93125 m 3.9125,-2.44375 c 0,-0.84582 -0.175,-1.50832 -0.525,-1.9875 -0.34584,-0.48332 -0.82292,-0.72499 -1.43125,-0.725 -0.60833,1e-5 -1.0875,0.24168 -1.4375,0.725 -0.34583,0.47918 -0.51875,1.14168 -0.51875,1.9875 0,0.84584 0.17292,1.51042 0.51875,1.99375 0.35,0.47917 0.82917,0.71876 1.4375,0.71875 0.60833,10e-6 1.08541,-0.23958 1.43125,-0.71875 0.35,-0.48333 0.525,-1.14791 0.525,-1.99375" + id="path5055" + inkscape:connector-curvature="0" /><path + d="m -229.40875,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" + id="path5057" + inkscape:connector-curvature="0" /><path + d="m -219.87125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83543,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45624,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15626,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5059" + inkscape:connector-curvature="0" /><path + d="m -208.88376,424.37328 c 0,-0.84582 -0.175,-1.50832 -0.525,-1.9875 -0.34583,-0.48332 -0.82292,-0.72499 -1.43125,-0.725 -0.60833,1e-5 -1.0875,0.24168 -1.4375,0.725 -0.34583,0.47918 -0.51875,1.14168 -0.51875,1.9875 0,0.84584 0.17292,1.51042 0.51875,1.99375 0.35,0.47917 0.82917,0.71876 1.4375,0.71875 0.60833,10e-6 1.08542,-0.23958 1.43125,-0.71875 0.35,-0.48333 0.525,-1.14791 0.525,-1.99375 m -3.9125,-2.44375 c 0.24167,-0.41666 0.54584,-0.72499 0.9125,-0.925 0.37083,-0.20415 0.8125,-0.30624 1.325,-0.30625 0.85,10e-6 1.53958,0.33751 2.06875,1.0125 0.53333,0.67501 0.8,1.56251 0.8,2.6625 0,1.10001 -0.26667,1.98751 -0.8,2.6625 -0.52917,0.67501 -1.21875,1.0125 -2.06875,1.0125 -0.5125,0 -0.95417,-0.1 -1.325,-0.3 -0.36666,-0.20416 -0.67083,-0.51458 -0.9125,-0.93125 l 0,1.05 -1.15625,0 0,-9.725 1.15625,0 0,3.7875" + id="path5061" + inkscape:connector-curvature="0" /><path + d="m -205.78376,420.86703 1.15,0 0,7 -1.15,0 0,-7 m 0,-2.725 1.15,0 0,1.45625 -1.15,0 0,-1.45625" + id="path5063" + inkscape:connector-curvature="0" /><path + d="m -198.1775,421.94203 c -0.12917,-0.075 -0.27084,-0.12916 -0.425,-0.1625 -0.15001,-0.0375 -0.31667,-0.0562 -0.5,-0.0563 -0.65001,10e-6 -1.15001,0.21251 -1.5,0.6375 -0.34584,0.42084 -0.51875,1.02709 -0.51875,1.81875 l 0,3.6875 -1.15625,0 0,-7 1.15625,0 0,1.0875 c 0.24166,-0.42499 0.55624,-0.73957 0.94375,-0.94375 0.38749,-0.20832 0.85833,-0.31249 1.4125,-0.3125 0.0792,10e-6 0.16666,0.006 0.2625,0.0188 0.0958,0.008 0.20208,0.0229 0.31875,0.0437 l 0.006,1.18125" + id="path5065" + inkscape:connector-curvature="0" /><path + d="m -192.565,421.92953 0,-3.7875 1.15,0 0,9.725 -1.15,0 0,-1.05 c -0.24167,0.41667 -0.54792,0.72709 -0.91875,0.93125 -0.36667,0.2 -0.80834,0.3 -1.325,0.3 -0.84584,0 -1.53542,-0.33749 -2.06875,-1.0125 -0.52917,-0.67499 -0.79375,-1.56249 -0.79375,-2.6625 0,-1.09999 0.26458,-1.98749 0.79375,-2.6625 0.53333,-0.67499 1.22291,-1.01249 2.06875,-1.0125 0.51666,10e-6 0.95833,0.1021 1.325,0.30625 0.37083,0.20001 0.67708,0.50834 0.91875,0.925 m -3.91875,2.44375 c 0,0.84584 0.17291,1.51042 0.51875,1.99375 0.34999,0.47917 0.82916,0.71876 1.4375,0.71875 0.60833,10e-6 1.08749,-0.23958 1.4375,-0.71875 0.34999,-0.48333 0.52499,-1.14791 0.525,-1.99375 -1e-5,-0.84582 -0.17501,-1.50832 -0.525,-1.9875 -0.35001,-0.48332 -0.82917,-0.72499 -1.4375,-0.725 -0.60834,1e-5 -1.08751,0.24168 -1.4375,0.725 -0.34584,0.47918 -0.51875,1.14168 -0.51875,1.9875" + id="path5067" + inkscape:connector-curvature="0" /><path + d="m -180.35249,421.92953 0,-3.7875 1.15,0 0,9.725 -1.15,0 0,-1.05 c -0.24168,0.41667 -0.54793,0.72709 -0.91875,0.93125 -0.36667,0.2 -0.80834,0.3 -1.325,0.3 -0.84584,0 -1.53542,-0.33749 -2.06875,-1.0125 -0.52917,-0.67499 -0.79375,-1.56249 -0.79375,-2.6625 0,-1.09999 0.26458,-1.98749 0.79375,-2.6625 0.53333,-0.67499 1.22291,-1.01249 2.06875,-1.0125 0.51666,10e-6 0.95833,0.1021 1.325,0.30625 0.37082,0.20001 0.67707,0.50834 0.91875,0.925 m -3.91875,2.44375 c -1e-5,0.84584 0.17291,1.51042 0.51875,1.99375 0.34999,0.47917 0.82916,0.71876 1.4375,0.71875 0.60833,10e-6 1.08749,-0.23958 1.4375,-0.71875 0.34999,-0.48333 0.52499,-1.14791 0.525,-1.99375 -1e-5,-0.84582 -0.17501,-1.50832 -0.525,-1.9875 -0.35001,-0.48332 -0.82917,-0.72499 -1.4375,-0.725 -0.60834,1e-5 -1.08751,0.24168 -1.4375,0.725 -0.34584,0.47918 -0.51876,1.14168 -0.51875,1.9875" + id="path5069" + inkscape:connector-curvature="0" /><path + d="m -170.84624,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.28749,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83543,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45624,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18543,-1.13124 -0.53125,-1.50625 -0.34168,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15626,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5071" + inkscape:connector-curvature="0" /><path + d="m -164.49624,421.07328 0,1.0875 c -0.32501,-0.16666 -0.66251,-0.29166 -1.0125,-0.375 -0.35001,-0.0833 -0.71251,-0.12499 -1.0875,-0.125 -0.57084,1e-5 -1.00001,0.0875 -1.2875,0.2625 -0.28334,0.17501 -0.42501,0.43751 -0.425,0.7875 -1e-5,0.26668 0.10208,0.47709 0.30625,0.63125 0.20416,0.15001 0.61458,0.29376 1.23125,0.43125 l 0.39375,0.0875 c 0.81666,0.17501 1.39582,0.42293 1.7375,0.74375 0.34582,0.31667 0.51874,0.76042 0.51875,1.33125 -1e-5,0.65001 -0.25834,1.16459 -0.775,1.54375 -0.51251,0.37917 -1.21876,0.56875 -2.11875,0.56875 -0.37501,0 -0.76667,-0.0375 -1.175,-0.1125 -0.40417,-0.0708 -0.83125,-0.17916 -1.28125,-0.325 l 0,-1.1875 c 0.425,0.22084 0.84375,0.38751 1.25625,0.5 0.41249,0.10834 0.82083,0.16251 1.225,0.1625 0.54166,10e-6 0.95833,-0.0917 1.25,-0.275 0.29166,-0.18749 0.43749,-0.44999 0.4375,-0.7875 -1e-5,-0.31249 -0.10626,-0.55208 -0.31875,-0.71875 -0.20834,-0.16666 -0.66876,-0.32708 -1.38125,-0.48125 l -0.4,-0.0937 c -0.71251,-0.14999 -1.22709,-0.37916 -1.54375,-0.6875 -0.31667,-0.31249 -0.475,-0.73957 -0.475,-1.28125 0,-0.65832 0.23333,-1.16666 0.7,-1.525 0.46666,-0.35832 1.12916,-0.53749 1.9875,-0.5375 0.42499,10e-6 0.82499,0.0313 1.2,0.0937 0.37499,0.0625 0.72082,0.15626 1.0375,0.28125" + id="path5073" + inkscape:connector-curvature="0" /><path + d="m -162.28376,420.86703 1.15,0 0,7 -1.15,0 0,-7 m 0,-2.725 1.15,0 0,1.45625 -1.15,0 0,-1.45625" + id="path5075" + inkscape:connector-curvature="0" /><path + d="m -154.1275,424.28578 c -1e-5,-0.83332 -0.17292,-1.47916 -0.51875,-1.9375 -0.34167,-0.45832 -0.82292,-0.68749 -1.44375,-0.6875 -0.61667,1e-5 -1.09792,0.22918 -1.44375,0.6875 -0.34167,0.45834 -0.5125,1.10418 -0.5125,1.9375 0,0.82917 0.17083,1.47292 0.5125,1.93125 0.34583,0.45834 0.82708,0.68751 1.44375,0.6875 0.62083,10e-6 1.10208,-0.22916 1.44375,-0.6875 0.34583,-0.45833 0.51874,-1.10208 0.51875,-1.93125 m 1.15,2.7125 c -1e-5,1.19167 -0.26459,2.07709 -0.79375,2.65625 -0.52917,0.58334 -1.33959,0.875 -2.43125,0.875 -0.40417,0 -0.78542,-0.0312 -1.14375,-0.0937 -0.35834,-0.0583 -0.70625,-0.15 -1.04375,-0.275 l 0,-1.11875 c 0.3375,0.18334 0.67083,0.31875 1,0.40625 0.32916,0.0875 0.66458,0.13125 1.00625,0.13125 0.75416,0 1.31874,-0.19791 1.69375,-0.59375 0.37499,-0.39166 0.56249,-0.98541 0.5625,-1.78125 l 0,-0.56875 c -0.23751,0.41251 -0.54167,0.72084 -0.9125,0.925 -0.37084,0.20417 -0.81459,0.30625 -1.33125,0.30625 -0.85834,0 -1.55,-0.32708 -2.075,-0.98125 -0.525,-0.65416 -0.7875,-1.52083 -0.7875,-2.6 0,-1.08332 0.2625,-1.95207 0.7875,-2.60625 0.525,-0.65416 1.21666,-0.98124 2.075,-0.98125 0.51666,10e-6 0.96041,0.1021 1.33125,0.30625 0.37083,0.20418 0.67499,0.51251 0.9125,0.925 l 0,-1.0625 1.15,0 0,6.13125" + id="path5077" + inkscape:connector-curvature="0" /><path + d="m -144.79,423.64203 0,4.225 -1.15,0 0,-4.1875 c -1e-5,-0.66249 -0.12917,-1.15832 -0.3875,-1.4875 -0.25834,-0.32916 -0.64584,-0.49374 -1.1625,-0.49375 -0.62084,10e-6 -1.11042,0.19793 -1.46875,0.59375 -0.35834,0.39584 -0.5375,0.93543 -0.5375,1.61875 l 0,3.95625 -1.15625,0 0,-7 1.15625,0 0,1.0875 c 0.275,-0.42082 0.59791,-0.73541 0.96875,-0.94375 0.37499,-0.20832 0.80624,-0.31249 1.29375,-0.3125 0.80416,10e-6 1.41249,0.25001 1.825,0.75 0.41249,0.49584 0.61874,1.22709 0.61875,2.19375" + id="path5079" + inkscape:connector-curvature="0" /><path + d="m -138.02125,421.07328 0,1.0875 c -0.32501,-0.16666 -0.66251,-0.29166 -1.0125,-0.375 -0.35001,-0.0833 -0.71251,-0.12499 -1.0875,-0.125 -0.57084,1e-5 -1,0.0875 -1.2875,0.2625 -0.28334,0.17501 -0.425,0.43751 -0.425,0.7875 0,0.26668 0.10208,0.47709 0.30625,0.63125 0.20416,0.15001 0.61458,0.29376 1.23125,0.43125 l 0.39375,0.0875 c 0.81666,0.17501 1.39583,0.42293 1.7375,0.74375 0.34583,0.31667 0.51874,0.76042 0.51875,1.33125 -1e-5,0.65001 -0.25834,1.16459 -0.775,1.54375 -0.51251,0.37917 -1.21876,0.56875 -2.11875,0.56875 -0.37501,0 -0.76667,-0.0375 -1.175,-0.1125 -0.40417,-0.0708 -0.83125,-0.17916 -1.28125,-0.325 l 0,-1.1875 c 0.425,0.22084 0.84375,0.38751 1.25625,0.5 0.4125,0.10834 0.82083,0.16251 1.225,0.1625 0.54166,10e-6 0.95833,-0.0917 1.25,-0.275 0.29166,-0.18749 0.43749,-0.44999 0.4375,-0.7875 -1e-5,-0.31249 -0.10626,-0.55208 -0.31875,-0.71875 -0.20834,-0.16666 -0.66876,-0.32708 -1.38125,-0.48125 l -0.4,-0.0937 c -0.7125,-0.14999 -1.22709,-0.37916 -1.54375,-0.6875 -0.31667,-0.31249 -0.475,-0.73957 -0.475,-1.28125 0,-0.65832 0.23333,-1.16666 0.7,-1.525 0.46666,-0.35832 1.12916,-0.53749 1.9875,-0.5375 0.42499,10e-6 0.82499,0.0313 1.2,0.0937 0.37499,0.0625 0.72083,0.15626 1.0375,0.28125" + id="path5081" + inkscape:connector-curvature="0" /><path + d="m -126.70875,424.37328 c -1e-5,-0.84582 -0.17501,-1.50832 -0.525,-1.9875 -0.34584,-0.48332 -0.82292,-0.72499 -1.43125,-0.725 -0.60834,1e-5 -1.08751,0.24168 -1.4375,0.725 -0.34584,0.47918 -0.51875,1.14168 -0.51875,1.9875 0,0.84584 0.17291,1.51042 0.51875,1.99375 0.34999,0.47917 0.82916,0.71876 1.4375,0.71875 0.60833,10e-6 1.08541,-0.23958 1.43125,-0.71875 0.34999,-0.48333 0.52499,-1.14791 0.525,-1.99375 m -3.9125,-2.44375 c 0.24166,-0.41666 0.54583,-0.72499 0.9125,-0.925 0.37083,-0.20415 0.81249,-0.30624 1.325,-0.30625 0.84999,10e-6 1.53957,0.33751 2.06875,1.0125 0.53332,0.67501 0.79999,1.56251 0.8,2.6625 -1e-5,1.10001 -0.26668,1.98751 -0.8,2.6625 -0.52918,0.67501 -1.21876,1.0125 -2.06875,1.0125 -0.51251,0 -0.95417,-0.1 -1.325,-0.3 -0.36667,-0.20416 -0.67084,-0.51458 -0.9125,-0.93125 l 0,1.05 -1.15625,0 0,-9.725 1.15625,0 0,3.7875" + id="path5083" + inkscape:connector-curvature="0" /><path + d="m -117.62125,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.2875,1.39584 0.7125,1.8125 0.42916,0.41251 1.02499,0.61876 1.7875,0.61875 0.44166,10e-6 0.86874,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.41251,0.17501 -0.83543,0.30834 -1.26875,0.4 -0.43334,0.0917 -0.87292,0.1375 -1.31875,0.1375 -1.11667,0 -2.00209,-0.32499 -2.65625,-0.975 -0.65,-0.64999 -0.975,-1.52916 -0.975,-2.6375 0,-1.14582 0.30833,-2.05416 0.925,-2.725 0.62083,-0.67499 1.45624,-1.01249 2.50625,-1.0125 0.94166,10e-6 1.68541,0.30418 2.23125,0.9125 0.54999,0.60418 0.82499,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.008,-0.62916 -0.18542,-1.13124 -0.53125,-1.50625 -0.34167,-0.37499 -0.79584,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.15626,0.18126 -1.54375,0.54375 -0.38334,0.36251 -0.60417,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5085" + inkscape:connector-curvature="0" /><path + d="m -112.19,418.14203 0,0.95625 -1.1,0 c -0.41251,1e-5 -0.70001,0.0833 -0.8625,0.25 -0.15834,0.16668 -0.2375,0.46668 -0.2375,0.9 l 0,0.61875 1.89375,0 0,0.89375 -1.89375,0 0,6.10625 -1.15625,0 0,-6.10625 -1.1,0 0,-0.89375 1.1,0 0,-0.4875 c 0,-0.77915 0.18125,-1.34582 0.54375,-1.7 0.3625,-0.35832 0.93749,-0.53749 1.725,-0.5375 l 1.0875,0" + id="path5087" + inkscape:connector-curvature="0" /><path + d="m -108.52125,421.67328 c -0.61667,1e-5 -1.10417,0.24168 -1.4625,0.725 -0.35834,0.47918 -0.5375,1.13751 -0.5375,1.975 0,0.83751 0.17708,1.49792 0.53125,1.98125 0.35833,0.47917 0.84791,0.71876 1.46875,0.71875 0.61249,10e-6 1.09791,-0.24166 1.45625,-0.725 0.35833,-0.48333 0.53749,-1.14166 0.5375,-1.975 -1e-5,-0.82916 -0.17917,-1.48541 -0.5375,-1.96875 -0.35834,-0.48749 -0.84376,-0.73124 -1.45625,-0.73125 m 0,-0.975 c 0.99999,10e-6 1.78541,0.32501 2.35625,0.975 0.57082,0.65001 0.85624,1.55001 0.85625,2.7 -1e-5,1.14584 -0.28543,2.04584 -0.85625,2.7 -0.57084,0.65001 -1.35626,0.975 -2.35625,0.975 -1.00417,0 -1.79167,-0.32499 -2.3625,-0.975 -0.56667,-0.65416 -0.85,-1.55416 -0.85,-2.7 0,-1.14999 0.28333,-2.04999 0.85,-2.7 0.57083,-0.64999 1.35833,-0.97499 2.3625,-0.975" + id="path5089" + inkscape:connector-curvature="0" /><path + d="m -99.352505,421.94203 c -0.129172,-0.075 -0.270839,-0.12916 -0.425,-0.1625 -0.150005,-0.0375 -0.316675,-0.0562 -0.500005,-0.0563 -0.65,10e-6 -1.15,0.21251 -1.5,0.6375 -0.34583,0.42084 -0.51875,1.02709 -0.51875,1.81875 l 0,3.6875 -1.15625,0 0,-7 1.15625,0 0,1.0875 c 0.24167,-0.42499 0.55625,-0.73957 0.94375,-0.94375 0.3875,-0.20832 0.85833,-0.31249 1.412505,-0.3125 0.07916,10e-6 0.166661,0.006 0.2625,0.0188 0.09583,0.008 0.202078,0.0229 0.31875,0.0437 l 0.0063,1.18125" + id="path5091" + inkscape:connector-curvature="0" /><path + d="m -92.408743,424.07953 0,0.5625 -5.2875,0 c 0.05,0.79167 0.287498,1.39584 0.7125,1.8125 0.429163,0.41251 1.024996,0.61876 1.7875,0.61875 0.441662,10e-6 0.868745,-0.0542 1.28125,-0.1625 0.41666,-0.10833 0.82916,-0.27083 1.2375,-0.4875 l 0,1.0875 c -0.412507,0.17501 -0.835423,0.30834 -1.26875,0.4 -0.433339,0.0917 -0.872922,0.1375 -1.31875,0.1375 -1.11667,0 -2.002086,-0.32499 -2.65625,-0.975 -0.650001,-0.64999 -0.975001,-1.52916 -0.975,-2.6375 -10e-7,-1.14582 0.308332,-2.05416 0.925,-2.725 0.620831,-0.67499 1.456247,-1.01249 2.50625,-1.0125 0.941661,10e-6 1.685411,0.30418 2.23125,0.9125 0.549993,0.60418 0.824993,1.42709 0.825,2.46875 m -1.15,-0.3375 c -0.0083,-0.62916 -0.185423,-1.13124 -0.53125,-1.50625 -0.341672,-0.37499 -0.795838,-0.56249 -1.3625,-0.5625 -0.64167,1e-5 -1.156253,0.18126 -1.54375,0.54375 -0.383336,0.36251 -0.604169,0.87293 -0.6625,1.53125 l 4.1,-0.006" + id="path5093" + inkscape:connector-curvature="0" /><path + d="m -86.552484,425.10453 0,-4.2375 1.15,0 0,4.19375 c -2e-6,0.66251 0.129164,1.16042 0.3875,1.49375 0.25833,0.32917 0.64583,0.49376 1.1625,0.49375 0.620829,1e-5 1.110412,-0.19791 1.46875,-0.59375 0.362494,-0.39583 0.543744,-0.93541 0.54375,-1.61875 l 0,-3.96875 1.15,0 0,7 -1.15,0 0,-1.075 c -0.279172,0.42501 -0.604172,0.74167 -0.975,0.95 -0.366671,0.20417 -0.793754,0.30625 -1.28125,0.30625 -0.804169,0 -1.414586,-0.25 -1.83125,-0.75 -0.416668,-0.49999 -0.625001,-1.23124 -0.625,-2.19375" + id="path5095" + inkscape:connector-curvature="0" /><path + d="m -77.196234,426.81703 0,3.7125 -1.15625,0 0,-9.6625 1.15625,0 0,1.0625 c 0.241664,-0.41666 0.54583,-0.72499 0.9125,-0.925 0.37083,-0.20415 0.812496,-0.30624 1.325,-0.30625 0.849995,10e-6 1.539577,0.33751 2.06875,1.0125 0.533326,0.67501 0.799993,1.56251 0.8,2.6625 -7e-6,1.10001 -0.266674,1.98751 -0.8,2.6625 -0.529173,0.67501 -1.218755,1.0125 -2.06875,1.0125 -0.512504,0 -0.95417,-0.1 -1.325,-0.3 -0.36667,-0.20416 -0.670836,-0.51458 -0.9125,-0.93125 m 3.9125,-2.44375 c -6e-6,-0.84582 -0.175006,-1.50832 -0.525,-1.9875 -0.345839,-0.48332 -0.822922,-0.72499 -1.43125,-0.725 -0.608337,1e-5 -1.087503,0.24168 -1.4375,0.725 -0.345836,0.47918 -0.518752,1.14168 -0.51875,1.9875 -2e-6,0.84584 0.172914,1.51042 0.51875,1.99375 0.349997,0.47917 0.829163,0.71876 1.4375,0.71875 0.608328,10e-6 1.085411,-0.23958 1.43125,-0.71875 0.349994,-0.48333 0.524994,-1.14791 0.525,-1.99375" + id="path5097" + inkscape:connector-curvature="0" /><path + d="m -70.183734,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" + id="path5099" + inkscape:connector-curvature="0" /><path + d="m -63.921246,421.67328 c -0.61667,1e-5 -1.10417,0.24168 -1.4625,0.725 -0.358336,0.47918 -0.537502,1.13751 -0.5375,1.975 -2e-6,0.83751 0.177081,1.49792 0.53125,1.98125 0.35833,0.47917 0.847913,0.71876 1.46875,0.71875 0.612495,10e-6 1.097911,-0.24166 1.45625,-0.725 0.358327,-0.48333 0.537494,-1.14166 0.5375,-1.975 -6e-6,-0.82916 -0.179173,-1.48541 -0.5375,-1.96875 -0.358339,-0.48749 -0.843755,-0.73124 -1.45625,-0.73125 m 0,-0.975 c 0.999995,10e-6 1.785411,0.32501 2.35625,0.975 0.570826,0.65001 0.856243,1.55001 0.85625,2.7 -7e-6,1.14584 -0.285424,2.04584 -0.85625,2.7 -0.570839,0.65001 -1.356255,0.975 -2.35625,0.975 -1.00417,0 -1.791669,-0.32499 -2.3625,-0.975 -0.566668,-0.65416 -0.850001,-1.55416 -0.85,-2.7 -10e-7,-1.14999 0.283332,-2.04999 0.85,-2.7 0.570831,-0.64999 1.35833,-0.97499 2.3625,-0.975" + id="path5101" + inkscape:connector-curvature="0" /><path + d="m -55.627484,424.34828 c -0.92917,1e-5 -1.57292,0.10626 -1.93125,0.31875 -0.358336,0.21251 -0.537502,0.57501 -0.5375,1.0875 -2e-6,0.40834 0.133331,0.73334 0.4,0.975 0.270831,0.23751 0.637497,0.35626 1.1,0.35625 0.637496,10e-6 1.147912,-0.22499 1.53125,-0.675 0.387495,-0.45416 0.581244,-1.05624 0.58125,-1.80625 l 0,-0.25625 -1.14375,0 m 2.29375,-0.475 0,3.99375 -1.15,0 0,-1.0625 c -0.262505,0.42501 -0.589588,0.73959 -0.98125,0.94375 -0.391671,0.2 -0.870837,0.3 -1.4375,0.3 -0.716669,0 -1.287502,-0.2 -1.7125,-0.6 -0.420834,-0.40416 -0.631251,-0.94374 -0.63125,-1.61875 -10e-7,-0.78749 0.262499,-1.38124 0.7875,-1.78125 0.529164,-0.39999 1.316664,-0.59999 2.3625,-0.6 l 1.6125,0 0,-0.1125 c -6e-6,-0.52916 -0.175005,-0.93749 -0.525,-1.225 -0.345838,-0.29166 -0.833338,-0.43749 -1.4625,-0.4375 -0.400003,1e-5 -0.789586,0.0479 -1.16875,0.14375 -0.379169,0.0958 -0.743752,0.23959 -1.09375,0.43125 l 0,-1.0625 c 0.420832,-0.16249 0.829164,-0.28332 1.225,-0.3625 0.39583,-0.0833 0.781247,-0.12499 1.15625,-0.125 1.012495,10e-6 1.768745,0.26251 2.26875,0.7875 0.499994,0.52501 0.749993,1.32084 0.75,2.3875" + id="path5103" + inkscape:connector-curvature="0" /><path + d="m -46.352508,421.92953 0,-3.7875 1.15,0 0,9.725 -1.15,0 0,-1.05 c -0.241673,0.41667 -0.547922,0.72709 -0.91875,0.93125 -0.366672,0.2 -0.808338,0.3 -1.325,0.3 -0.845837,0 -1.535419,-0.33749 -2.068751,-1.0125 -0.529167,-0.67499 -0.79375,-1.56249 -0.79375,-2.6625 0,-1.09999 0.264583,-1.98749 0.79375,-2.6625 0.533332,-0.67499 1.222914,-1.01249 2.068751,-1.0125 0.516662,10e-6 0.958328,0.1021 1.325,0.30625 0.370828,0.20001 0.677077,0.50834 0.91875,0.925 m -3.918751,2.44375 c -10e-7,0.84584 0.172915,1.51042 0.51875,1.99375 0.349998,0.47917 0.829164,0.71876 1.437501,0.71875 0.608328,10e-6 1.087495,-0.23958 1.4375,-0.71875 0.349994,-0.48333 0.524994,-1.14791 0.525,-1.99375 -6e-6,-0.84582 -0.175006,-1.50832 -0.525,-1.9875 -0.350005,-0.48332 -0.829172,-0.72499 -1.4375,-0.725 -0.608337,1e-5 -1.087503,0.24168 -1.437501,0.725 -0.345835,0.47918 -0.518751,1.14168 -0.51875,1.9875" + id="path5105" + inkscape:connector-curvature="0" /><path + d="m -42.833759,420.86703 1.15,0 0,7 -1.15,0 0,-7 m 0,-2.725 1.15,0 0,1.45625 -1.15,0 0,-1.45625" + id="path5107" + inkscape:connector-curvature="0" /><path + d="m -33.46499,423.64203 0,4.225 -1.15,0 0,-4.1875 c -6e-6,-0.66249 -0.129173,-1.15832 -0.3875,-1.4875 -0.258339,-0.32916 -0.645838,-0.49374 -1.1625,-0.49375 -0.620837,10e-6 -1.11042,0.19793 -1.46875,0.59375 -0.358336,0.39584 -0.537503,0.93543 -0.5375,1.61875 l 0,3.95625 -1.15625,0 0,-7 1.15625,0 0,1.0875 c 0.274997,-0.42082 0.597914,-0.73541 0.96875,-0.94375 0.374996,-0.20832 0.806246,-0.31249 1.29375,-0.3125 0.804161,10e-6 1.412494,0.25001 1.825,0.75 0.412493,0.49584 0.618743,1.22709 0.61875,2.19375" + id="path5109" + inkscape:connector-curvature="0" /><path + d="m -26.55249,424.28578 c -6e-6,-0.83332 -0.172922,-1.47916 -0.51875,-1.9375 -0.341672,-0.45832 -0.822921,-0.68749 -1.44375,-0.6875 -0.61667,1e-5 -1.09792,0.22918 -1.44375,0.6875 -0.341669,0.45834 -0.512502,1.10418 -0.5125,1.9375 -2e-6,0.82917 0.170831,1.47292 0.5125,1.93125 0.34583,0.45834 0.82708,0.68751 1.44375,0.6875 0.620829,10e-6 1.102078,-0.22916 1.44375,-0.6875 0.345828,-0.45833 0.518744,-1.10208 0.51875,-1.93125 m 1.15,2.7125 c -7e-6,1.19167 -0.26459,2.07709 -0.79375,2.65625 -0.529172,0.58334 -1.339588,0.875 -2.43125,0.875 -0.40417,0 -0.78542,-0.0312 -1.14375,-0.0937 -0.358336,-0.0583 -0.706252,-0.15 -1.04375,-0.275 l 0,-1.11875 c 0.337498,0.18334 0.670831,0.31875 1,0.40625 0.329164,0.0875 0.66458,0.13125 1.00625,0.13125 0.754162,0 1.318745,-0.19791 1.69375,-0.59375 0.374994,-0.39166 0.562494,-0.98541 0.5625,-1.78125 l 0,-0.56875 c -0.237506,0.41251 -0.541672,0.72084 -0.9125,0.925 -0.370838,0.20417 -0.814588,0.30625 -1.33125,0.30625 -0.858336,0 -1.550002,-0.32708 -2.075,-0.98125 -0.525001,-0.65416 -0.787501,-1.52083 -0.7875,-2.6 -10e-7,-1.08332 0.262499,-1.95207 0.7875,-2.60625 0.524998,-0.65416 1.216664,-0.98124 2.075,-0.98125 0.516662,10e-6 0.960412,0.1021 1.33125,0.30625 0.370828,0.20418 0.674994,0.51251 0.9125,0.925 l 0,-1.0625 1.15,0 0,6.13125" + id="path5111" + inkscape:connector-curvature="0" /><path + d="m -18.22124,420.07328 -2.24375,1.2125 2.24375,1.21875 -0.3625,0.6125 -2.1,-1.26875 0,2.35625 -0.7125,0 0,-2.35625 -2.1,1.26875 -0.3625,-0.6125 2.24375,-1.21875 -2.24375,-1.2125 0.3625,-0.61875 2.1,1.26875 0,-2.35625 0.7125,0 0,2.35625 2.1,-1.26875 0.3625,0.61875" + id="path5113" + inkscape:connector-curvature="0" /></g><g + id="g14777"><path + d="m 590.02932,44.404687 0,7.07968 1.48788,0 c 1.2562,1e-6 2.17493,-0.284568 2.75629,-0.853708 0.58536,-0.569136 0.87806,-1.467562 0.8781,-2.695279 -4e-5,-1.219577 -0.29274,-2.111905 -0.8781,-2.676985 -0.58136,-0.569131 -1.50009,-0.8537 -2.75629,-0.853708 l -1.48788,0 m -1.23177,-1.012254 2.53062,0 c 1.76433,9e-6 3.05914,0.367916 3.8844,1.103722 0.8252,0.731758 1.23783,1.878165 1.23788,3.439225 -5e-5,1.5692 -0.4147,2.721705 -1.24399,3.457518 -0.82934,0.735816 -2.12209,1.103724 -3.87829,1.103724 l -2.53062,0 0,-9.104189" + id="path3477" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 604.20087,48.801284 0,0.548813 -5.15882,0 c 0.0488,0.772405 0.28048,1.361869 0.69518,1.768395 0.41868,0.402464 1.00004,0.603695 1.74398,0.603694 0.4309,10e-7 0.84762,-0.05285 1.25005,-0.158546 0.40657,-0.105696 0.809,-0.264242 1.20739,-0.475637 l 0,1.061037 c -0.40243,0.170742 -0.81506,0.300831 -1.23788,0.390267 -0.42277,0.08944 -0.85165,0.134154 -1.28664,0.134154 -1.08948,0 -1.95335,-0.317092 -2.5916,-0.951275 -0.6342,-0.634182 -0.95128,-1.491954 -0.95128,-2.573321 0,-1.117946 0.30082,-2.004176 0.90248,-2.658691 0.60574,-0.658568 1.4208,-0.987855 2.44527,-0.987862 0.91873,7e-6 1.6444,0.296771 2.17695,0.890295 0.5366,0.589471 0.80492,1.392363 0.80492,2.408677 m -1.122,-0.329287 c -0.008,-0.613853 -0.1809,-1.103718 -0.51832,-1.469598 -0.33338,-0.365869 -0.77649,-0.548806 -1.32934,-0.548812 -0.62608,6e-6 -1.12814,0.176845 -1.5062,0.530518 -0.37401,0.353685 -0.58948,0.851681 -0.64637,1.49399 l 4.00023,-0.0061" + id="path3479" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 610.39637,45.868187 0,1.061037 c -0.31712,-0.162605 -0.64637,-0.284564 -0.98788,-0.365875 -0.34146,-0.0813 -0.69518,-0.121952 -1.06102,-0.121958 -0.55693,6e-6 -0.97566,0.08538 -1.2562,0.256112 -0.2764,0.170748 -0.41464,0.42686 -0.41464,0.768338 0,0.260182 0.0996,0.465478 0.2988,0.615889 0.19918,0.146355 0.59964,0.286606 1.20129,0.420757 l 0.38416,0.08537 c 0.79679,0.170745 1.36189,0.412629 1.69523,0.725652 0.33742,0.308964 0.5061,0.741916 0.50615,1.298856 -5e-5,0.634185 -0.25207,1.136246 -0.75615,1.506186 -0.50005,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36584,0 -0.74798,-0.03659 -1.14638,-0.109762 -0.39435,-0.06911 -0.81102,-0.174807 -1.25009,-0.317092 l 0,-1.158604 c 0.41465,0.215461 0.82323,0.378072 1.22567,0.487833 0.40248,0.105698 0.80087,0.158547 1.19522,0.158546 0.52847,1e-6 0.93499,-0.08943 1.21956,-0.268309 0.28458,-0.182935 0.42686,-0.439048 0.42686,-0.768337 0,-0.304893 -0.10367,-0.538647 -0.31097,-0.70126 -0.20331,-0.162609 -0.65248,-0.319122 -1.34766,-0.46954 l -0.39027,-0.09147 c -0.69518,-0.146347 -1.19724,-0.369937 -1.5062,-0.670771 -0.30895,-0.304892 -0.4634,-0.721582 -0.4634,-1.250073 0,-0.642308 0.22764,-1.138271 0.68296,-1.487892 0.45528,-0.349606 1.10166,-0.524413 1.93912,-0.52442 0.41465,7e-6 0.80492,0.0305 1.1708,0.09147 0.36589,0.06099 0.70331,0.152455 1.01226,0.274407" + id="path3481" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 612.55501,45.666955 1.12204,0 0,6.829667 -1.12204,0 0,-6.829667 m 0,-2.658691 1.12204,0 0,1.420815 -1.12204,0 0,-1.420815" + id="path3483" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 620.51282,49.002515 c 0,-0.813051 -0.16874,-1.443168 -0.50616,-1.890353 -0.33333,-0.447175 -0.80289,-0.670765 -1.40858,-0.670771 -0.6017,6e-6 -1.07122,0.223596 -1.40864,0.670771 -0.33337,0.447185 -0.50004,1.077302 -0.50004,1.890353 0,0.808993 0.16667,1.437078 0.50004,1.884257 0.33742,0.447181 0.80694,0.670771 1.40864,0.67077 0.60569,1e-6 1.07525,-0.223589 1.40858,-0.67077 0.33742,-0.447179 0.50616,-1.075264 0.50616,-1.884257 m 1.12199,2.646496 c 0,1.162669 -0.25813,2.02654 -0.77443,2.591614 -0.5163,0.569137 -1.30698,0.853706 -2.37208,0.853709 -0.39435,-3e-6 -0.7663,-0.03049 -1.11593,-0.09147 -0.34959,-0.05692 -0.68908,-0.146352 -1.01833,-0.268308 l 0,-1.091527 c 0.32925,0.17887 0.6545,0.310992 0.97567,0.396364 0.32112,0.08537 0.64839,0.128055 0.98173,0.128056 0.73581,-10e-7 1.28668,-0.193102 1.65257,-0.579301 0.36584,-0.382138 0.54881,-0.961439 0.54881,-1.737907 l 0,-0.55491 c -0.23173,0.402463 -0.52852,0.703293 -0.89032,0.902492 -0.3618,0.199198 -0.79476,0.298798 -1.29885,0.298798 -0.83746,0 -1.51226,-0.319125 -2.02452,-0.957374 -0.51221,-0.638246 -0.76832,-1.483823 -0.76832,-2.536733 0,-1.056967 0.25611,-1.904576 0.76832,-2.54283 0.51226,-0.638242 1.18706,-0.957366 2.02452,-0.957373 0.50409,7e-6 0.93705,0.09961 1.29885,0.298798 0.3618,0.199205 0.65859,0.500035 0.89032,0.902491 l 0,-1.036646 1.12199,0 0,5.982056" + id="path3485" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 629.62311,48.37443 0,4.122192 -1.12204,0 0,-4.085604 c 0,-0.646375 -0.12603,-1.130142 -0.37805,-1.451305 -0.25207,-0.32115 -0.63012,-0.481729 -1.13421,-0.481735 -0.60574,6e-6 -1.08343,0.193107 -1.43301,0.579302 -0.34964,0.386207 -0.52443,0.91266 -0.52443,1.57936 l 0,3.859982 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.26832,-0.410587 0.58333,-0.717515 0.94518,-0.920786 0.36584,-0.203256 0.78659,-0.304888 1.26226,-0.304895 0.78457,7e-6 1.3781,0.243923 1.78058,0.73175 0.40248,0.483773 0.60367,1.197229 0.60372,2.140368" + id="path3487" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 637.12964,44.404687 0,3.420931 1.54885,0 c 0.57323,4e-6 1.01635,-0.148378 1.32934,-0.445148 0.31304,-0.29676 0.46956,-0.719548 0.46956,-1.268367 0,-0.54474 -0.15652,-0.965496 -0.46956,-1.262268 -0.31299,-0.296758 -0.75611,-0.44514 -1.32934,-0.445148 l -1.54885,0 m -1.23178,-1.012254 2.78063,0 c 1.02039,9e-6 1.79077,0.231729 2.31111,0.695162 0.52443,0.459385 0.78664,1.13422 0.78664,2.024508 0,0.898432 -0.26221,1.577333 -0.78664,2.036704 -0.52034,0.459381 -1.29072,0.689069 -2.31111,0.689065 l -1.54885,0 0,3.65875 -1.23178,0 0,-9.104189" + id="path3489" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 645.59355,46.453587 c -0.60169,6e-6 -1.07732,0.235791 -1.42695,0.707358 -0.34959,0.467512 -0.52438,1.109825 -0.52438,1.926941 0,0.817124 0.17277,1.46147 0.51832,1.93304 0.34959,0.467508 0.82727,0.701261 1.43301,0.70126 0.59757,10e-7 1.07117,-0.235785 1.4208,-0.707358 0.34959,-0.47157 0.52443,-1.113884 0.52443,-1.926942 0,-0.808986 -0.17484,-1.449266 -0.52443,-1.920843 -0.34963,-0.475632 -0.82323,-0.71345 -1.4208,-0.713456 m 0,-0.951275 c 0.97563,7e-6 1.74197,0.317098 2.2989,0.951275 0.55694,0.634188 0.8354,1.512287 0.8354,2.634299 0,1.117954 -0.27846,1.996053 -0.8354,2.6343 -0.55693,0.634183 -1.32327,0.951275 -2.2989,0.951275 -0.97975,0 -1.74807,-0.317092 -2.30505,-0.951275 -0.55285,-0.638247 -0.82929,-1.516346 -0.82929,-2.6343 0,-1.122012 0.27644,-2.000111 0.82929,-2.634299 0.55698,-0.634177 1.3253,-0.951268 2.30505,-0.951275" + id="path3491" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 654.93553,45.868187 0,1.061037 c -0.31708,-0.162605 -0.64638,-0.284564 -0.98784,-0.365875 -0.3415,-0.0813 -0.69518,-0.121952 -1.06106,-0.121958 -0.55694,6e-6 -0.97567,0.08538 -1.25616,0.256112 -0.27644,0.170748 -0.41464,0.42686 -0.41464,0.768338 0,0.260182 0.0996,0.465478 0.29876,0.615889 0.19922,0.146355 0.59963,0.286606 1.20133,0.420757 l 0.38416,0.08537 c 0.79679,0.170745 1.36185,0.412629 1.69523,0.725652 0.33737,0.308964 0.5061,0.741916 0.5061,1.298856 0,0.634185 -0.25206,1.136246 -0.75615,1.506186 -0.5,0.36994 -1.18907,0.55491 -2.06717,0.55491 -0.36589,0 -0.74803,-0.03659 -1.14642,-0.109762 -0.39431,-0.06911 -0.81102,-0.174807 -1.25005,-0.317092 l 0,-1.158604 c 0.41465,0.215461 0.82319,0.378072 1.22567,0.487833 0.40243,0.105698 0.80087,0.158547 1.19518,0.158546 0.52846,1e-6 0.93503,-0.08943 1.2196,-0.268309 0.28453,-0.182935 0.42682,-0.439048 0.42682,-0.768337 0,-0.304893 -0.10363,-0.538647 -0.31098,-0.70126 -0.20326,-0.162609 -0.65248,-0.319122 -1.34766,-0.46954 l -0.39026,-0.09147 c -0.69514,-0.146347 -1.1972,-0.369937 -1.50616,-0.670771 -0.30895,-0.304892 -0.46345,-0.721582 -0.46345,-1.250073 0,-0.642308 0.22764,-1.138271 0.68297,-1.487892 0.45532,-0.349606 1.1017,-0.524413 1.93912,-0.52442 0.41469,7e-6 0.80496,0.0305 1.1708,0.09147 0.36588,0.06099 0.7033,0.152455 1.01226,0.274407" + id="path3493" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 657.09421,45.666955 1.12199,0 0,6.829667 -1.12199,0 0,-6.829667 m 0,-2.658691 1.12199,0 0,1.420815 -1.12199,0 0,-1.420815" + id="path3495" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 661.66763,43.727818 0,1.939137 2.31111,0 0,0.872002 -2.31111,0 0,3.707533 c 0,0.556945 0.0752,0.914689 0.22562,1.073233 0.1545,0.158547 0.46547,0.23782 0.93301,0.237819 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.160579 -1.79279,-0.481736 -0.3293,-0.325221 -0.49394,-0.914686 -0.49394,-1.768396 l 0,-3.707533 -0.82324,0 0,-0.872002 0.82324,0 0,-1.939137 1.1281,0" + id="path3497" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 665.46056,45.666955 1.12199,0 0,6.829667 -1.12199,0 0,-6.829667 m 0,-2.658691 1.12199,0 0,1.420815 -1.12199,0 0,-1.420815" + id="path3499" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 671.57066,46.453587 c -0.60165,6e-6 -1.07731,0.235791 -1.4269,0.707358 -0.34963,0.467512 -0.52443,1.109825 -0.52443,1.926941 0,0.817124 0.17278,1.46147 0.51832,1.93304 0.34959,0.467508 0.82728,0.701261 1.43301,0.70126 0.59757,10e-7 1.07117,-0.235785 1.4208,-0.707358 0.34964,-0.47157 0.52443,-1.113884 0.52443,-1.926942 0,-0.808986 -0.17479,-1.449266 -0.52443,-1.920843 -0.34963,-0.475632 -0.82323,-0.71345 -1.4208,-0.713456 m 0,-0.951275 c 0.97567,7e-6 1.74197,0.317098 2.2989,0.951275 0.55694,0.634188 0.83541,1.512287 0.83541,2.634299 0,1.117954 -0.27847,1.996053 -0.83541,2.6343 -0.55693,0.634183 -1.32323,0.951275 -2.2989,0.951275 -0.97975,0 -1.74807,-0.317092 -2.305,-0.951275 -0.55289,-0.638247 -0.82934,-1.516346 -0.82934,-2.6343 0,-1.122012 0.27645,-2.000111 0.82934,-2.634299 0.55693,-0.634177 1.32525,-0.951268 2.305,-0.951275" + id="path3501" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 682.23592,48.37443 0,4.122192 -1.12204,0 0,-4.085604 c 0,-0.646375 -0.12604,-1.130142 -0.37806,-1.451305 -0.25206,-0.32115 -0.63012,-0.481729 -1.1342,-0.481735 -0.60574,6e-6 -1.08343,0.193107 -1.43302,0.579302 -0.34963,0.386207 -0.52442,0.91266 -0.52442,1.57936 l 0,3.859982 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36588,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78462,7e-6 1.37814,0.243923 1.78058,0.73175 0.40248,0.483773 0.60372,1.197229 0.60372,2.140368" + id="path3503" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 684.48606,45.666955 1.12199,0 0,6.829667 -1.12199,0 0,-6.829667 m 0,-2.658691 1.12199,0 0,1.420815 -1.12199,0 0,-1.420815" + id="path3505" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 693.62684,48.37443 0,4.122192 -1.12204,0 0,-4.085604 c 0,-0.646375 -0.12604,-1.130142 -0.37806,-1.451305 -0.25206,-0.32115 -0.63012,-0.481729 -1.1342,-0.481735 -0.60574,6e-6 -1.08343,0.193107 -1.43302,0.579302 -0.34963,0.386207 -0.52442,0.91266 -0.52442,1.57936 l 0,3.859982 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36588,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78457,7e-6 1.37814,0.243923 1.78058,0.73175 0.40248,0.483773 0.60372,1.197229 0.60372,2.140368" + id="path3507" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 700.3711,49.002515 c 0,-0.813051 -0.16869,-1.443168 -0.50611,-1.890353 -0.33337,-0.447175 -0.80289,-0.670765 -1.40863,-0.670771 -0.60165,6e-6 -1.07121,0.223596 -1.40859,0.670771 -0.33337,0.447185 -0.50004,1.077302 -0.50004,1.890353 0,0.808993 0.16667,1.437078 0.50004,1.884257 0.33738,0.447181 0.80694,0.670771 1.40859,0.67077 0.60574,1e-6 1.07526,-0.223589 1.40863,-0.67077 0.33742,-0.447179 0.50611,-1.075264 0.50611,-1.884257 m 1.12204,2.646496 c 0,1.162669 -0.25817,2.02654 -0.77443,2.591614 -0.5163,0.569137 -1.30702,0.853706 -2.37208,0.853709 -0.39435,-3e-6 -0.76635,-0.03049 -1.11593,-0.09147 -0.34964,-0.05692 -0.68908,-0.146352 -1.01837,-0.268308 l 0,-1.091527 c 0.32929,0.17887 0.6545,0.310992 0.97567,0.396364 0.32116,0.08537 0.64843,0.128055 0.98177,0.128056 0.73581,-10e-7 1.28664,-0.193102 1.65253,-0.579301 0.36588,-0.382138 0.5488,-0.961439 0.5488,-1.737907 l 0,-0.55491 c -0.23172,0.402463 -0.52847,0.703293 -0.89027,0.902492 -0.36184,0.199198 -0.79476,0.298798 -1.29885,0.298798 -0.83746,0 -1.5123,-0.319125 -2.02452,-0.957374 -0.51221,-0.638246 -0.76832,-1.483823 -0.76832,-2.536733 0,-1.056967 0.25611,-1.904576 0.76832,-2.54283 0.51222,-0.638242 1.18706,-0.957366 2.02452,-0.957373 0.50409,7e-6 0.93701,0.09961 1.29885,0.298798 0.3618,0.199205 0.65855,0.500035 0.89027,0.902491 l 0,-1.036646 1.12204,0 0,5.982056" + id="path3509" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 704.09085,50.947751 1.28664,0 0,1.548871 -1.28664,0 0,-1.548871 m 0,-4.908823 1.28664,0 0,1.548871 -1.28664,0 0,-1.548871" + id="path3511" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 715.74398,44.227847 c -0.8944,8e-6 -1.60579,0.333361 -2.1343,1.000058 -0.52443,0.666713 -0.78664,1.575301 -0.78659,2.725769 -5e-5,1.146412 0.26216,2.052968 0.78659,2.719671 0.52851,0.666706 1.2399,1.000059 2.1343,1.000058 0.89435,10e-7 1.6017,-0.333352 2.12204,-1.000058 0.52443,-0.666703 0.78664,-1.573259 0.78664,-2.719671 0,-1.150468 -0.26221,-2.059056 -0.78664,-2.725769 -0.52034,-0.666697 -1.22769,-1.00005 -2.12204,-1.000058 m 0,-1.000058 c 1.27649,9e-6 2.29688,0.428896 3.06116,1.28666 0.76423,0.853716 1.14637,2.000123 1.14637,3.439225 0,1.435046 -0.38214,2.581453 -1.14637,3.439224 -0.76428,0.853709 -1.78467,1.280563 -3.06116,1.280563 -1.28058,0 -2.30501,-0.426854 -3.07337,-1.280563 -0.76428,-0.853706 -1.14642,-2.000113 -1.14642,-3.439224 0,-1.439102 0.38214,-2.585509 1.14642,-3.439225 0.76836,-0.857764 1.79279,-1.286651 3.07337,-1.28666" + id="path3513" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 727.50684,48.37443 0,4.122192 -1.12203,0 0,-4.085604 c 0,-0.646375 -0.12599,-1.130142 -0.37806,-1.451305 -0.25206,-0.32115 -0.63012,-0.481729 -1.1342,-0.481735 -0.60574,6e-6 -1.08343,0.193107 -1.43302,0.579302 -0.34963,0.386207 -0.52442,0.91266 -0.52442,1.57936 l 0,3.859982 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36588,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78462,7e-6 1.37814,0.243923 1.78058,0.73175 0.40248,0.483773 0.60371,1.197229 0.60371,2.140368" + id="path3515" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 734.84262,43.727818 0,1.939137 2.31111,0 0,0.872002 -2.31111,0 0,3.707533 c 0,0.556945 0.0752,0.914689 0.22562,1.073233 0.1545,0.158547 0.46547,0.23782 0.93301,0.237819 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.160579 -1.79279,-0.481736 -0.3293,-0.325221 -0.49394,-0.914686 -0.49394,-1.768396 l 0,-3.707533 -0.82324,0 0,-0.872002 0.82324,0 0,-1.939137 1.1281,0" + id="path3517" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 744.31269,48.37443 0,4.122192 -1.12199,0 0,-4.085604 c -5e-5,-0.646375 -0.12604,-1.130142 -0.3781,-1.451305 -0.25202,-0.32115 -0.63012,-0.481729 -1.13421,-0.481735 -0.60574,6e-6 -1.08338,0.193107 -1.43301,0.579302 -0.34959,0.386207 -0.52443,0.91266 -0.52443,1.57936 l 0,3.859982 -1.1281,0 0,-9.488358 1.1281,0 0,3.719729 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36589,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78462,7e-6 1.37815,0.243923 1.78063,0.73175 0.40243,0.483773 0.60367,1.197229 0.60367,2.140368" + id="path3519" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 752.40462,48.801284 0,0.548813 -5.15882,0 c 0.0488,0.772405 0.28048,1.361869 0.69518,1.768395 0.41868,0.402464 1.00004,0.603695 1.74398,0.603694 0.4309,10e-7 0.84762,-0.05285 1.25005,-0.158546 0.40657,-0.105696 0.809,-0.264242 1.20739,-0.475637 l 0,1.061037 c -0.40243,0.170742 -0.81506,0.300831 -1.23788,0.390267 -0.42277,0.08944 -0.85165,0.134154 -1.28664,0.134154 -1.08948,0 -1.95335,-0.317092 -2.5916,-0.951275 -0.6342,-0.634182 -0.95128,-1.491954 -0.95128,-2.573321 0,-1.117946 0.30082,-2.004176 0.90248,-2.658691 0.60574,-0.658568 1.4208,-0.987855 2.44527,-0.987862 0.91873,7e-6 1.6444,0.296771 2.17695,0.890295 0.5366,0.589471 0.80492,1.392363 0.80492,2.408677 m -1.122,-0.329287 c -0.008,-0.613853 -0.1809,-1.103718 -0.51832,-1.469598 -0.33338,-0.365869 -0.77649,-0.548806 -1.32934,-0.548812 -0.62608,6e-6 -1.12814,0.176845 -1.5062,0.530518 -0.37401,0.353685 -0.58948,0.851681 -0.64637,1.49399 l 4.00023,-0.0061" + id="path3521" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 757.56959,45.666955 1.12199,0 1.40253,5.329579 1.39642,-5.329579 1.32323,0 1.40253,5.329579 1.39642,-5.329579 1.12204,0 -1.78669,6.829667 -1.32328,0 -1.46956,-5.597887 -1.47571,5.597887 -1.32324,0 -1.78668,-6.829667" + id="path3523" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 774.11933,48.37443 0,4.122192 -1.12204,0 0,-4.085604 c 0,-0.646375 -0.12604,-1.130142 -0.37806,-1.451305 -0.25206,-0.32115 -0.63012,-0.481729 -1.1342,-0.481735 -0.60574,6e-6 -1.08343,0.193107 -1.43302,0.579302 -0.34963,0.386207 -0.52442,0.91266 -0.52442,1.57936 l 0,3.859982 -1.1281,0 0,-9.488358 1.1281,0 0,3.719729 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36588,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78457,7e-6 1.37814,0.243923 1.78058,0.73175 0.40248,0.483773 0.60372,1.197229 0.60372,2.140368" + id="path3525" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 776.36947,45.666955 1.12199,0 0,6.829667 -1.12199,0 0,-6.829667 m 0,-2.658691 1.12199,0 0,1.420815 -1.12199,0 0,-1.420815" + id="path3527" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 780.94289,43.727818 0,1.939137 2.31111,0 0,0.872002 -2.31111,0 0,3.707533 c 0,0.556945 0.0752,0.914689 0.22562,1.073233 0.15449,0.158547 0.46547,0.23782 0.93296,0.237819 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86588,0 -1.4635,-0.160579 -1.79275,-0.481736 -0.32929,-0.325221 -0.49393,-0.914686 -0.49393,-1.768396 l 0,-3.707533 -0.82324,0 0,-0.872002 0.82324,0 0,-1.939137 1.1281,0" + id="path3529" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 790.5776,48.801284 0,0.548813 -5.15886,0 c 0.0488,0.772405 0.28049,1.361869 0.69518,1.768395 0.41873,0.402464 1.00004,0.603695 1.74398,0.603694 0.4309,10e-7 0.84762,-0.05285 1.2501,-0.158546 0.40652,-0.105696 0.80895,-0.264242 1.20739,-0.475637 l 0,1.061037 c -0.40248,0.170742 -0.81511,0.300831 -1.23788,0.390267 -0.42282,0.08944 -0.8517,0.134154 -1.28669,0.134154 -1.08948,0 -1.95335,-0.317092 -2.5916,-0.951275 -0.6342,-0.634182 -0.95128,-1.491954 -0.95128,-2.573321 0,-1.117946 0.30083,-2.004176 0.90248,-2.658691 0.60574,-0.658568 1.42084,-0.987855 2.44527,-0.987862 0.91878,7e-6 1.6444,0.296771 2.17695,0.890295 0.53664,0.589471 0.80492,1.392363 0.80496,2.408677 m -1.12204,-0.329287 c -0.008,-0.613853 -0.1809,-1.103718 -0.51832,-1.469598 -0.33338,-0.365869 -0.77649,-0.548806 -1.32934,-0.548812 -0.62608,6e-6 -1.12814,0.176845 -1.5062,0.530518 -0.37401,0.353685 -0.58944,0.851681 -0.64637,1.49399 l 4.00023,-0.0061" + id="path3531" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 799.49882,49.063495 c -0.90652,3e-6 -1.53462,0.103667 -1.88425,0.310994 -0.34959,0.207331 -0.52443,0.56101 -0.52443,1.061037 0,0.398399 0.13012,0.71549 0.39027,0.951275 0.26428,0.231722 0.62199,0.347582 1.07323,0.347581 0.622,1e-6 1.12002,-0.219524 1.49404,-0.658575 0.37805,-0.443114 0.56708,-1.030546 0.56708,-1.762298 l 0,-0.250014 -1.11594,0 m 2.23798,-0.463442 0,3.896569 -1.12204,0 0,-1.036646 c -0.25611,0.414659 -0.57526,0.721587 -0.95735,0.920785 -0.38214,0.195133 -0.84968,0.2927 -1.40253,0.2927 -0.69926,0 -1.2562,-0.195133 -1.67084,-0.5854 -0.41061,-0.394331 -0.61589,-0.920784 -0.61589,-1.57936 0,-0.768335 0.25611,-1.347636 0.76832,-1.737906 0.5163,-0.390263 1.28462,-0.585396 2.30501,-0.5854 l 1.57328,0 0,-0.109763 c 0,-0.516285 -0.17076,-0.914682 -0.51222,-1.195191 -0.33742,-0.284564 -0.81308,-0.426848 -1.4269,-0.426854 -0.39027,6e-6 -0.77039,0.04676 -1.14032,0.140251 -0.36997,0.09351 -0.72566,0.23376 -1.06712,0.420757 l 0,-1.036646 c 0.41056,-0.158539 0.80895,-0.276432 1.19518,-0.353679 0.38618,-0.0813 0.76221,-0.121951 1.1281,-0.121958 0.98788,7e-6 1.72571,0.256119 2.21354,0.768337 0.48784,0.512231 0.73173,1.288698 0.73178,2.329404" + id="path3533" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 808.01155,46.715797 c -0.12603,-0.07317 -0.26428,-0.126018 -0.41469,-0.158546 -0.14633,-0.03658 -0.30896,-0.05488 -0.48784,-0.05488 -0.63416,6e-6 -1.12199,0.207335 -1.4635,0.621987 -0.33742,0.410598 -0.5061,1.002096 -0.5061,1.774494 l 0,3.597771 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.23576,-0.414652 0.5427,-0.721581 0.9208,-0.920786 0.37805,-0.203256 0.83742,-0.304888 1.3781,-0.304895 0.0772,7e-6 0.16262,0.0061 0.2561,0.01829 0.0935,0.0081 0.1972,0.02236 0.31102,0.04269 l 0.006,1.152506" + id="path3535" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 814.7863,48.801284 0,0.548813 -5.15882,0 c 0.0488,0.772405 0.28049,1.361869 0.69514,1.768395 0.41873,0.402464 1.00009,0.603695 1.74403,0.603694 0.4309,10e-7 0.84761,-0.05285 1.25005,-0.158546 0.40652,-0.105696 0.80899,-0.264242 1.20739,-0.475637 l 0,1.061037 c -0.40248,0.170742 -0.81506,0.300831 -1.23788,0.390267 -0.42278,0.08944 -0.85166,0.134154 -1.28664,0.134154 -1.08949,0 -1.95336,-0.317092 -2.5916,-0.951275 -0.63421,-0.634182 -0.95129,-1.491954 -0.95129,-2.573321 0,-1.117946 0.30083,-2.004176 0.90248,-2.658691 0.60574,-0.658568 1.4208,-0.987855 2.44527,-0.987862 0.91874,7e-6 1.6444,0.296771 2.17696,0.890295 0.53659,0.589471 0.80491,1.392363 0.80491,2.408677 m -1.12199,-0.329287 c -0.008,-0.613853 -0.18095,-1.103718 -0.51832,-1.469598 -0.33338,-0.365869 -0.77649,-0.548806 -1.32939,-0.548812 -0.62603,6e-6 -1.1281,0.176845 -1.50615,0.530518 -0.37401,0.353685 -0.58949,0.851681 -0.64638,1.49399 l 4.00024,-0.0061" + id="path3537" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 819.74393,49.063495 c -0.90657,3e-6 -1.53467,0.103667 -1.88426,0.310994 -0.34963,0.207331 -0.52442,0.56101 -0.52442,1.061037 0,0.398399 0.13007,0.71549 0.39026,0.951275 0.26424,0.231722 0.622,0.347582 1.07324,0.347581 0.62199,1e-6 1.11997,-0.219524 1.49398,-0.658575 0.37806,-0.443114 0.56708,-1.030546 0.56713,-1.762298 l 0,-0.250014 -1.11593,0 m 2.23792,-0.463442 0,3.896569 -1.12199,0 0,-1.036646 c -0.25615,0.414659 -0.57525,0.721587 -0.95739,0.920785 -0.38214,0.195133 -0.84964,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.195133 -1.6708,-0.5854 -0.41061,-0.394331 -0.61593,-0.920784 -0.61593,-1.57936 0,-0.768335 0.25615,-1.347636 0.76836,-1.737906 0.5163,-0.390263 1.28462,-0.585396 2.30501,-0.5854 l 1.57328,0 0,-0.109763 c -5e-5,-0.516285 -0.17075,-0.914682 -0.51226,-1.195191 -0.33742,-0.284564 -0.81304,-0.426848 -1.42691,-0.426854 -0.39026,6e-6 -0.77034,0.04676 -1.14031,0.140251 -0.36993,0.09351 -0.72562,0.23376 -1.06713,0.420757 l 0,-1.036646 c 0.41061,-0.158539 0.809,-0.276432 1.19518,-0.353679 0.38623,-0.0813 0.76226,-0.121951 1.12815,-0.121958 0.98783,7e-6 1.72567,0.256119 2.21355,0.768337 0.48778,0.512231 0.73172,1.288698 0.73172,2.329404" + id="path3539" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 830.92139,46.453587 c -0.60165,6e-6 -1.07732,0.235791 -1.4269,0.707358 -0.34964,0.467512 -0.52443,1.109825 -0.52443,1.926941 0,0.817124 0.17277,1.46147 0.51832,1.93304 0.34963,0.467508 0.82727,0.701261 1.43301,0.70126 0.59762,10e-7 1.07122,-0.235785 1.4208,-0.707358 0.34964,-0.47157 0.52443,-1.113884 0.52443,-1.926942 0,-0.808986 -0.17479,-1.449266 -0.52443,-1.920843 -0.34958,-0.475632 -0.82318,-0.71345 -1.4208,-0.713456 m 0,-0.951275 c 0.97567,7e-6 1.74197,0.317098 2.2989,0.951275 0.55694,0.634188 0.83545,1.512287 0.83545,2.634299 0,1.117954 -0.27851,1.996053 -0.83545,2.6343 -0.55693,0.634183 -1.32323,0.951275 -2.2989,0.951275 -0.97975,0 -1.74807,-0.317092 -2.305,-0.951275 -0.5529,-0.638247 -0.82934,-1.516346 -0.82934,-2.6343 0,-1.122012 0.27644,-2.000111 0.82934,-2.634299 0.55693,-0.634177 1.32525,-0.951268 2.305,-0.951275" + id="path3541" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 841.58664,48.37443 0,4.122192 -1.12203,0 0,-4.085604 c 0,-0.646375 -0.12599,-1.130142 -0.37806,-1.451305 -0.25206,-0.32115 -0.63012,-0.481729 -1.1342,-0.481735 -0.60574,6e-6 -1.08339,0.193107 -1.43302,0.579302 -0.34963,0.386207 -0.52442,0.91266 -0.52442,1.57936 l 0,3.859982 -1.1281,0 0,-6.829667 1.1281,0 0,1.061038 c 0.26832,-0.410587 0.58338,-0.717515 0.94518,-0.920786 0.36588,-0.203256 0.78664,-0.304888 1.26226,-0.304895 0.78461,7e-6 1.37814,0.243923 1.78062,0.73175 0.40243,0.483773 0.60367,1.197229 0.60367,2.140368" + id="path3543" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 843.83678,43.008264 1.122,0 0,9.488358 -1.122,0 0,-9.488358" + id="path3545" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 850.14202,53.130805 c -0.31708,0.813054 -0.62603,1.343572 -0.92686,1.591556 -0.30087,0.247979 -0.7033,0.37197 -1.20739,0.371973 l -0.89642,0 0,-0.939079 0.65859,0 c 0.30895,-2e-6 0.5488,-0.07318 0.71956,-0.219525 0.17075,-0.146352 0.35978,-0.4919 0.56708,-1.036646 l 0.20124,-0.512225 -2.76236,-6.719904 1.18912,0 2.13426,5.341775 2.13425,-5.341775 1.18912,0 -3.00019,7.46385" + id="path3547" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 853.08124,50.947751 1.28664,0 0,1.548871 -1.28664,0 0,-1.548871" + id="path3549" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 588.79755,62.12523 1.23177,0 0,8.067546 4.4332,0 0,1.036644 -5.66497,0 0,-9.10419" + id="path3551" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 598.80421,67.796291 c -0.90656,4e-6 -1.53462,0.103668 -1.88425,0.310996 -0.34959,0.207333 -0.52443,0.561011 -0.52443,1.061039 0,0.398398 0.13012,0.715487 0.39027,0.951272 0.26423,0.231722 0.62199,0.347581 1.07323,0.347581 0.622,0 1.11998,-0.219523 1.49399,-0.658573 0.3781,-0.443113 0.56713,-1.030547 0.56713,-1.762297 l 0,-0.250018 -1.11594,0 m 2.23793,-0.46344 0,3.896569 -1.12199,0 0,-1.036644 c -0.25611,0.414656 -0.57526,0.721584 -0.9574,0.920786 -0.38214,0.195133 -0.84963,0.292695 -1.40252,0.2927 -0.69922,-5e-6 -1.25616,-0.195134 -1.6708,-0.5854 -0.41061,-0.394335 -0.61589,-0.920786 -0.61589,-1.579364 0,-0.768333 0.25611,-1.347636 0.76832,-1.737907 0.5163,-0.390262 1.28462,-0.585396 2.30501,-0.5854 l 1.57328,0 0,-0.109762 c 0,-0.516286 -0.17076,-0.914679 -0.51222,-1.195189 -0.33742,-0.284564 -0.81308,-0.42685 -1.4269,-0.426855 -0.39032,5e-6 -0.77039,0.04676 -1.14032,0.140253 -0.36997,0.09351 -0.72566,0.23376 -1.06717,0.420753 l 0,-1.036645 c 0.41061,-0.15854 0.809,-0.276432 1.19523,-0.353678 0.38618,-0.0813 0.76221,-0.121951 1.1281,-0.12196 0.98788,9e-6 1.72571,0.25612 2.21354,0.768338 0.48784,0.512232 0.73173,1.288697 0.73173,2.329405" + id="path3553" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 607.71327,64.600985 0,1.061039 c -0.31708,-0.162608 -0.64638,-0.284564 -0.98784,-0.365878 -0.3415,-0.0813 -0.69518,-0.121951 -1.06106,-0.121956 -0.55694,5e-6 -0.97567,0.08538 -1.25616,0.256112 -0.27644,0.170748 -0.41464,0.426859 -0.41464,0.768338 0,0.260179 0.0996,0.465478 0.29876,0.615887 0.19922,0.146354 0.59963,0.286607 1.20133,0.420758 l 0.38416,0.08537 c 0.79679,0.170744 1.36185,0.412626 1.69523,0.725652 0.33737,0.308963 0.5061,0.741915 0.5061,1.298853 0,0.634188 -0.25206,1.136246 -0.75615,1.506186 -0.5,0.369941 -1.18907,0.554909 -2.06717,0.554914 -0.36589,-5e-6 -0.74803,-0.03659 -1.14642,-0.109766 -0.39431,-0.06911 -0.81102,-0.174808 -1.25005,-0.31709 l 0,-1.158605 c 0.41465,0.215459 0.82319,0.378072 1.22567,0.487833 0.40243,0.105698 0.80087,0.158545 1.19518,0.158545 0.52846,0 0.93503,-0.08943 1.2196,-0.268306 0.28453,-0.182939 0.42682,-0.43905 0.42682,-0.768339 0,-0.304894 -0.10363,-0.538646 -0.31098,-0.701258 -0.20326,-0.162608 -0.65248,-0.319123 -1.34766,-0.469541 l -0.39026,-0.09147 c -0.69514,-0.146345 -1.1972,-0.369936 -1.50616,-0.670772 -0.30895,-0.30489 -0.46345,-0.72158 -0.46345,-1.25007 0,-0.642309 0.22764,-1.138274 0.68297,-1.487893 0.45532,-0.349606 1.1017,-0.524413 1.93912,-0.524422 0.41469,9e-6 0.80496,0.03049 1.1708,0.09147 0.36588,0.06099 0.7033,0.152457 1.01226,0.274408" + id="path3555" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 615.71373,67.534082 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28049,1.36187 0.69518,1.768399 0.41869,0.402462 1.00005,0.603692 1.74399,0.603692 0.4309,0 0.84761,-0.05285 1.25005,-0.158544 0.40656,-0.105698 0.809,-0.264243 1.20739,-0.475639 l 0,1.061039 c -0.40244,0.170739 -0.81506,0.300831 -1.23788,0.390266 -0.42277,0.08944 -0.85165,0.134151 -1.28664,0.134156 -1.08949,-5e-6 -1.95335,-0.317094 -2.5916,-0.951278 -0.63421,-0.634183 -0.95129,-1.491952 -0.95129,-2.573321 0,-1.117944 0.30083,-2.004176 0.90248,-2.658689 0.60574,-0.658568 1.4208,-0.987857 2.44528,-0.987866 0.91873,9e-6 1.6444,0.296772 2.17695,0.890299 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12199,-0.329289 c -0.008,-0.613852 -0.1809,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.77649,-0.548806 -1.32934,-0.548811 -0.62608,5e-6 -1.12815,0.176846 -1.5062,0.530519 -0.37401,0.353683 -0.58949,0.851681 -0.64637,1.493987 l 4.00023,-0.0061" + id="path3557" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 621.51286,65.448594 c -0.12603,-0.07317 -0.26423,-0.126015 -0.41464,-0.158545 -0.14638,-0.03659 -0.309,-0.05488 -0.48784,-0.05488 -0.6342,5e-6 -1.12204,0.207333 -1.4635,0.621989 -0.33742,0.410597 -0.50615,1.002094 -0.50615,1.774492 l 0,3.597771 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.23581,-0.414656 0.54275,-0.72158 0.9208,-0.920786 0.37805,-0.20326 0.83742,-0.30489 1.37815,-0.304899 0.0772,9e-6 0.16258,0.0061 0.2561,0.01832 0.0935,0.0081 0.19716,0.02236 0.31098,0.0427 l 0.006,1.152503" + id="path3559" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 627.95837,66.881607 0,3.335558 1.97571,0 c 0.66263,0 1.15248,-0.136185 1.46961,-0.408559 0.32117,-0.276437 0.48173,-0.697195 0.48173,-1.262269 0,-0.569137 -0.16056,-0.987861 -0.48173,-1.256172 -0.31713,-0.272369 -0.80698,-0.408554 -1.46961,-0.408558 l -1.97571,0 m 0,-3.744122 0,2.744061 1.82328,0 c 0.60165,5e-6 1.04881,-0.11179 1.34151,-0.335386 0.29678,-0.227649 0.44518,-0.573196 0.44518,-1.036644 0,-0.459367 -0.1484,-0.802884 -0.44518,-1.030547 -0.2927,-0.22765 -0.73986,-0.341475 -1.34151,-0.341484 l -1.82328,0 m -1.23177,-1.012255 3.14651,0 c 0.93907,9e-6 1.66267,0.195143 2.17085,0.5854 0.50817,0.390276 0.76226,0.945184 0.76226,1.66473 0,0.556952 -0.13012,1.000066 -0.39027,1.32935 -0.26019,0.329288 -0.64233,0.534587 -1.14642,0.615886 0.60574,0.130097 1.07525,0.402466 1.40863,0.817122 0.33738,0.410597 0.50611,0.924854 0.50611,1.542775 0,0.813053 -0.27645,1.441139 -0.82929,1.884253 -0.5529,0.443118 -1.33954,0.664674 -2.35992,0.664674 l -3.26846,0 0,-9.10419" + id="path3561" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 641.08106,67.534082 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28049,1.36187 0.69518,1.768399 0.41869,0.402462 1.00005,0.603692 1.74399,0.603692 0.4309,0 0.84761,-0.05285 1.25005,-0.158544 0.40656,-0.105698 0.809,-0.264243 1.20739,-0.475639 l 0,1.061039 c -0.40243,0.170739 -0.81506,0.300831 -1.23788,0.390266 -0.42277,0.08944 -0.85165,0.134151 -1.28664,0.134156 -1.08949,-5e-6 -1.95335,-0.317094 -2.5916,-0.951278 -0.63421,-0.634183 -0.95129,-1.491952 -0.95129,-2.573321 0,-1.117944 0.30083,-2.004176 0.90248,-2.658689 0.60574,-0.658568 1.4208,-0.987857 2.44528,-0.987866 0.91873,9e-6 1.6444,0.296772 2.17695,0.890299 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12199,-0.329289 c -0.008,-0.613852 -0.1809,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.77649,-0.548806 -1.32934,-0.548811 -0.62608,5e-6 -1.12815,0.176846 -1.5062,0.530519 -0.37401,0.353683 -0.58949,0.851681 -0.64637,1.493987 l 4.00023,-0.0061" + id="path3563" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 646.02647,67.796291 c -0.90656,4e-6 -1.53462,0.103668 -1.88425,0.310996 -0.34959,0.207333 -0.52442,0.561011 -0.52442,1.061039 0,0.398398 0.13011,0.715487 0.39026,0.951272 0.26424,0.231722 0.622,0.347581 1.07324,0.347581 0.62199,0 1.11997,-0.219523 1.49398,-0.658573 0.3781,-0.443113 0.56713,-1.030547 0.56713,-1.762297 l 0,-0.250018 -1.11594,0 m 2.23793,-0.46344 0,3.896569 -1.12199,0 0,-1.036644 c -0.25611,0.414656 -0.57526,0.721584 -0.95739,0.920786 -0.38214,0.195133 -0.84964,0.292695 -1.40253,0.2927 -0.69922,-5e-6 -1.25615,-0.195134 -1.6708,-0.5854 -0.41061,-0.394335 -0.61589,-0.920786 -0.61589,-1.579364 0,-0.768333 0.25611,-1.347636 0.76832,-1.737907 0.5163,-0.390262 1.28462,-0.585396 2.30501,-0.5854 l 1.57328,0 0,-0.109762 c 0,-0.516286 -0.17076,-0.914679 -0.51222,-1.195189 -0.33742,-0.284564 -0.81308,-0.42685 -1.4269,-0.426855 -0.39031,5e-6 -0.77039,0.04676 -1.14032,0.140253 -0.36997,0.09351 -0.72566,0.23376 -1.06717,0.420753 l 0,-1.036645 c 0.41061,-0.15854 0.809,-0.276432 1.19523,-0.353678 0.38618,-0.0813 0.76221,-0.121951 1.1281,-0.12196 0.98783,9e-6 1.72571,0.25612 2.21354,0.768338 0.48784,0.512232 0.73173,1.288697 0.73173,2.329405" + id="path3565" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 655.89903,65.710807 c 0.28048,-0.504091 0.61588,-0.876061 1.00615,-1.115919 0.39027,-0.239844 0.84963,-0.359771 1.3781,-0.35978 0.71143,9e-6 1.26024,0.250023 1.64647,0.750046 0.38618,0.49597 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -5e-5,-0.654504 -0.11589,-1.140304 -0.34761,-1.457402 -0.23173,-0.317085 -0.5854,-0.475629 -1.06102,-0.475639 -0.58136,1e-5 -1.04073,0.193109 -1.37815,0.579303 -0.33742,0.386208 -0.50611,0.912659 -0.50611,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c -4e-5,-0.658568 -0.11588,-1.144372 -0.34761,-1.457402 -0.23173,-0.317085 -0.58944,-0.475629 -1.07323,-0.475639 -0.57319,1e-5 -1.02852,0.195143 -1.36594,0.5854 -0.33742,0.386208 -0.5061,0.91063 -0.5061,1.573266 l 0,3.85998 -1.12815,0 0,-6.829666 1.12815,0 0,1.061039 c 0.2561,-0.418719 0.56304,-0.727682 0.92075,-0.926883 0.35776,-0.199192 0.7826,-0.298793 1.27447,-0.298802 0.49596,9e-6 0.91672,0.126033 1.26226,0.378072 0.34964,0.252052 0.60776,0.61793 0.77448,1.097627" + id="path3567" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 673.59518,62.826493 0,1.298853 c -0.41469,-0.386194 -0.8578,-0.674826 -1.32938,-0.865905 -0.46749,-0.191056 -0.96548,-0.286593 -1.49399,-0.286598 -1.04068,5e-6 -1.83751,0.319133 -2.39036,0.95737 -0.55289,0.634193 -0.82934,1.552944 -0.82934,2.75626 0,1.199258 0.27645,2.11801 0.82934,2.756256 0.55285,0.634188 1.34968,0.951277 2.39036,0.951277 0.52851,0 1.0265,-0.09553 1.49399,-0.286602 0.47158,-0.191066 0.91469,-0.479702 1.32938,-0.865906 l 0,1.286664 c -0.43094,0.2927 -0.88829,0.512222 -1.37204,0.658572 -0.4797,0.14635 -0.98787,0.219523 -1.52447,0.219528 -1.37814,-5e-6 -2.46359,-0.420758 -3.25629,-1.26227 -0.79275,-0.845579 -1.18912,-1.998082 -1.18912,-3.457519 0,-1.463495 0.39637,-2.615998 1.18912,-3.457518 0.7927,-0.84557 1.87815,-1.268358 3.25629,-1.268367 0.54472,9e-6 1.05694,0.07318 1.53664,0.219523 0.48379,0.142295 0.93706,0.357755 1.35987,0.646382" + id="path3569" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 675.34528,68.534143 0,-4.134389 1.12199,0 0,4.091703 c 0,0.646378 0.12603,1.132181 0.3781,1.457402 0.25202,0.321157 0.63007,0.481736 1.13421,0.481736 0.60569,0 1.08338,-0.193104 1.43301,-0.579303 0.35367,-0.386203 0.53049,-0.912654 0.53049,-1.579363 l 0,-3.872175 1.12204,0 0,6.829666 -1.12204,0 0,-1.048844 c -0.27236,0.414661 -0.58944,0.723624 -0.95124,0.926884 -0.35776,0.199201 -0.77448,0.298797 -1.2501,0.298802 -0.78462,-5e-6 -1.38016,-0.243917 -1.78668,-0.73175 -0.40652,-0.487834 -0.60978,-1.201292 -0.60978,-2.140369" + id="path3571" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 684.49822,62.460616 0,1.939138 2.31112,0 0,0.872003 -2.31112,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22562,1.073233 0.1545,0.158545 0.46548,0.237819 0.93302,0.237819 l 1.15248,0 0,0.939078 -1.15248,0 c -0.86594,0 -1.4635,-0.160578 -1.7928,-0.481736 -0.32929,-0.32522 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82323,0 0,-0.872003 0.82323,0 0,-1.939138 1.1281,0" + id="path3573" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 692.64506,64.600985 0,1.061039 c -0.31712,-0.162608 -0.64637,-0.284564 -0.98788,-0.365878 -0.34146,-0.0813 -0.69513,-0.121951 -1.06102,-0.121956 -0.55693,5e-6 -0.97566,0.08538 -1.2562,0.256112 -0.2764,0.170748 -0.41464,0.426859 -0.41464,0.768338 0,0.260179 0.0996,0.465478 0.2988,0.615887 0.19922,0.146354 0.59964,0.286607 1.20129,0.420758 l 0.38416,0.08537 c 0.79679,0.170744 1.36189,0.412626 1.69523,0.725652 0.33742,0.308963 0.5061,0.741915 0.50615,1.298853 -5e-5,0.634188 -0.25207,1.136246 -0.75615,1.506186 -0.50005,0.369941 -1.18912,0.554909 -2.06722,0.554914 -0.36584,-5e-6 -0.74798,-0.03659 -1.14638,-0.109766 -0.39435,-0.06911 -0.81102,-0.174808 -1.25009,-0.31709 l 0,-1.158605 c 0.41465,0.215459 0.82323,0.378072 1.22567,0.487833 0.40248,0.105698 0.80087,0.158545 1.19522,0.158545 0.52847,0 0.93499,-0.08943 1.21956,-0.268306 0.28458,-0.182939 0.42686,-0.43905 0.42686,-0.768339 0,-0.304894 -0.10367,-0.538646 -0.31097,-0.701258 -0.20331,-0.162608 -0.65248,-0.319123 -1.34766,-0.469541 l -0.39027,-0.09147 c -0.69518,-0.146345 -1.19724,-0.369936 -1.5062,-0.670772 -0.30895,-0.30489 -0.4634,-0.72158 -0.4634,-1.25007 0,-0.642309 0.22764,-1.138274 0.68296,-1.487893 0.45528,-0.349606 1.10166,-0.524413 1.93912,-0.524422 0.41465,9e-6 0.80492,0.03049 1.1708,0.09147 0.36589,0.06099 0.70331,0.152457 1.01226,0.274408" + id="path3575" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 701.87119,63.338716 -1.6708,4.530752 3.34776,0 -1.67696,-4.530752 m -0.69513,-1.213486 1.39642,0 3.4697,9.10419 -1.28058,0 -0.82929,-2.335502 -4.10391,0 -0.82934,2.335502 -1.29885,0 3.47585,-9.10419" + id="path3577" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 706.16413,64.399754 1.12204,0 1.40252,5.329578 1.39642,-5.329578 1.32324,0 1.40252,5.329578 1.39642,-5.329578 1.122,0 -1.78669,6.829666 -1.32323,0 -1.46961,-5.597888 -1.47567,5.597888 -1.32328,0 -1.78668,-6.829666" + id="path3579" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 720.15275,67.796291 c -0.90656,4e-6 -1.53466,0.103668 -1.88425,0.310996 -0.34963,0.207333 -0.52443,0.561011 -0.52443,1.061039 0,0.398398 0.13008,0.715487 0.39027,0.951272 0.26423,0.231722 0.62199,0.347581 1.07323,0.347581 0.622,0 1.11998,-0.219523 1.49399,-0.658573 0.37805,-0.443113 0.56713,-1.030547 0.56713,-1.762297 l 0,-0.250018 -1.11594,0 m 2.23793,-0.46344 0,3.896569 -1.12199,0 0,-1.036644 c -0.25616,0.414656 -0.57526,0.721584 -0.9574,0.920786 -0.38214,0.195133 -0.84963,0.292695 -1.40252,0.2927 -0.69922,-5e-6 -1.25616,-0.195134 -1.6708,-0.5854 -0.41061,-0.394335 -0.61589,-0.920786 -0.61589,-1.579364 0,-0.768333 0.25611,-1.347636 0.76832,-1.737907 0.5163,-0.390262 1.28462,-0.585396 2.30501,-0.5854 l 1.57328,0 0,-0.109762 c 0,-0.516286 -0.17076,-0.914679 -0.51226,-1.195189 -0.33742,-0.284564 -0.81304,-0.42685 -1.42691,-0.426855 -0.39027,5e-6 -0.77034,0.04676 -1.14031,0.140253 -0.36993,0.09351 -0.72562,0.23376 -1.06713,0.420753 l 0,-1.036645 c 0.41061,-0.15854 0.809,-0.276432 1.19518,-0.353678 0.38623,-0.0813 0.76226,-0.121951 1.12815,-0.12196 0.98783,9e-6 1.72571,0.25612 2.21354,0.768338 0.48784,0.512232 0.73173,1.288697 0.73173,2.329405" + id="path3581" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 727.5495,71.863603 c -0.31708,0.813054 -0.62603,1.343574 -0.92686,1.591558 -0.30083,0.247976 -0.70331,0.37197 -1.20739,0.37197 l -0.89638,0 0,-0.939078 0.65854,0 c 0.309,0 0.54881,-0.07318 0.71956,-0.219527 0.17076,-0.14635 0.35978,-0.491897 0.56713,-1.036644 l 0.20124,-0.512223 -2.76235,-6.719905 1.18907,0 2.13425,5.341772 2.1343,-5.341772 1.18907,0 -3.00018,7.463849" + id="path3583" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 731.49486,69.680548 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872 m 0,-4.908824 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872" + id="path3585" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 742.20892,62.936255 c -0.6342,9e-6 -1.11184,0.313035 -1.43301,0.939077 -0.31708,0.621994 -0.47562,1.559042 -0.47562,2.811141 0,1.248041 0.15854,2.185089 0.47562,2.811137 0.32117,0.621988 0.79881,0.932985 1.43301,0.932985 0.63825,0 1.11589,-0.310997 1.43302,-0.932985 0.32116,-0.626048 0.48172,-1.563096 0.48172,-2.811137 0,-1.252099 -0.16056,-2.189147 -0.48172,-2.811141 -0.31713,-0.626042 -0.79477,-0.939068 -1.43302,-0.939077 m 0,-0.975667 c 1.02039,9e-6 1.79886,0.404504 2.3355,1.213486 0.54068,0.804932 0.81102,1.975732 0.81102,3.512399 0,1.53261 -0.27034,2.703409 -0.81102,3.5124 -0.53664,0.804923 -1.31511,1.207384 -2.3355,1.207389 -1.02038,-5e-6 -1.80092,-0.402466 -2.3416,-1.207389 -0.53664,-0.808991 -0.80491,-1.97979 -0.80491,-3.5124 0,-1.536667 0.26827,-2.707467 0.80491,-3.512399 0.54068,-0.808982 1.32122,-1.213477 2.3416,-1.213486" + id="path3587" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 747.52628,69.680548 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872" + id="path3589" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 751.71559,70.192776 2.0123,0 0,-6.945529 -2.18916,0.43905 0,-1.122017 2.17695,-0.43905 1.23178,0 0,8.067546 2.0123,0 0,1.036644 -5.24417,0 0,-1.036644" + id="path3591" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 762.70403,67.308457 3.28678,0 0,1.000061 -3.28678,0 0,-1.000061" + id="path3593" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 774.55225,62.936255 c -0.63416,9e-6 -1.11185,0.313035 -1.43297,0.939077 -0.31713,0.621994 -0.47567,1.559042 -0.47567,2.811141 0,1.248041 0.15854,2.185089 0.47567,2.811137 0.32112,0.621988 0.79881,0.932985 1.43297,0.932985 0.63824,0 1.11593,-0.310997 1.43301,-0.932985 0.32117,-0.626048 0.48173,-1.563096 0.48177,-2.811137 -4e-5,-1.252099 -0.1606,-2.189147 -0.48177,-2.811141 -0.31708,-0.626042 -0.79477,-0.939068 -1.43301,-0.939077 m 0,-0.975667 c 1.02038,9e-6 1.7989,0.404504 2.33554,1.213486 0.54068,0.804932 0.81102,1.975732 0.81102,3.512399 0,1.53261 -0.27034,2.703409 -0.81102,3.5124 -0.53664,0.804923 -1.31516,1.207384 -2.33554,1.207389 -1.02039,-5e-6 -1.80092,-0.402466 -2.3416,-1.207389 -0.5366,-0.808991 -0.80492,-1.97979 -0.80492,-3.5124 0,-1.536667 0.26832,-2.707467 0.80492,-3.512399 0.54068,-0.808982 1.32121,-1.213477 2.3416,-1.213486" + id="path3595" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 779.86965,69.680548 1.28664,0 0,1.548872 -1.28664,0 0,-1.548872" + id="path3597" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 784.90652,70.192776 4.29904,0 0,1.036644 -5.78081,0 0,-1.036644 c 0.46749,-0.48377 1.10372,-1.132178 1.90863,-1.945236 0.809,-0.817117 1.31713,-1.343573 1.52448,-1.579363 0.3943,-0.443109 0.66873,-0.817113 0.82323,-1.122017 0.15854,-0.308953 0.23779,-0.611814 0.23779,-0.908586 0,-0.483761 -0.17071,-0.878096 -0.51222,-1.182999 -0.33742,-0.304886 -0.77851,-0.457333 -1.32323,-0.457342 -0.38623,9e-6 -0.79477,0.06708 -1.22567,0.20123 -0.42686,0.134165 -0.8842,0.337425 -1.37204,0.609794 l 0,-1.243977 c 0.49596,-0.199188 0.95942,-0.349605 1.39032,-0.451245 0.4309,-0.10162 0.82525,-0.152438 1.18301,-0.152447 0.94311,9e-6 1.69518,0.235795 2.2562,0.707356 0.56102,0.47158 0.84151,1.1017 0.84151,1.890355 0,0.374013 -0.0711,0.729725 -0.21341,1.067136 -0.13825,0.333356 -0.39229,0.727691 -0.76226,1.182994 -0.10161,0.117898 -0.42479,0.459381 -0.96956,1.02445 -0.54477,0.561011 -1.31309,1.347641 -2.30501,2.359897" + id="path3599" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 796.95603,65.710807 c 0.28049,-0.504091 0.61589,-0.876061 1.00615,-1.115919 0.39022,-0.239844 0.84964,-0.359771 1.3781,-0.35978 0.71144,9e-6 1.26024,0.250023 1.64647,0.750046 0.38618,0.49597 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -4e-5,-0.654504 -0.11588,-1.140304 -0.34761,-1.457402 -0.23173,-0.317085 -0.5854,-0.475629 -1.06102,-0.475639 -0.58136,1e-5 -1.04073,0.193109 -1.37815,0.579303 -0.33742,0.386208 -0.5061,0.912659 -0.5061,1.579363 l 0,3.85998 -1.12815,0 0,-4.085605 c 0,-0.658568 -0.11584,-1.144372 -0.34757,-1.457402 -0.23172,-0.317085 -0.58944,-0.475629 -1.07323,-0.475639 -0.57319,1e-5 -1.02851,0.195143 -1.36593,0.5854 -0.33742,0.386208 -0.50611,0.91063 -0.50611,1.573266 l 0,3.85998 -1.12815,0 0,-6.829666 1.12815,0 0,1.061039 c 0.25611,-0.418719 0.56304,-0.727682 0.92075,-0.926883 0.35776,-0.199192 0.7826,-0.298793 1.27448,-0.298802 0.49596,9e-6 0.91671,0.126033 1.26226,0.378072 0.34963,0.252052 0.60776,0.61793 0.77447,1.097627" + id="path3601" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 809.12744,65.710807 c 0.28053,-0.504091 0.61588,-0.876061 1.00615,-1.115919 0.39027,-0.239844 0.84963,-0.359771 1.37814,-0.35978 0.71144,9e-6 1.26024,0.250023 1.64642,0.750046 0.38623,0.49597 0.5793,1.203325 0.57934,2.122073 l 0,4.122193 -1.12814,0 0,-4.085605 c 0,-0.654504 -0.11584,-1.140304 -0.34757,-1.457402 -0.23173,-0.317085 -0.5854,-0.475629 -1.06102,-0.475639 -0.58136,1e-5 -1.04073,0.193109 -1.37814,0.579303 -0.33742,0.386208 -0.50616,0.912659 -0.50616,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c 0,-0.658568 -0.11584,-1.144372 -0.34756,-1.457402 -0.23173,-0.317085 -0.58949,-0.475629 -1.07324,-0.475639 -0.57323,1e-5 -1.02851,0.195143 -1.36593,0.5854 -0.33742,0.386208 -0.50615,0.91063 -0.50615,1.573266 l 0,3.85998 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.2561,-0.418719 0.56304,-0.727682 0.9208,-0.926883 0.35776,-0.199192 0.78255,-0.298793 1.27447,-0.298802 0.49596,9e-6 0.91671,0.126033 1.26226,0.378072 0.34963,0.252052 0.60776,0.61793 0.77443,1.097627" + id="path3603" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 824.86009,67.820685 c 0,-0.825249 -0.17075,-1.471627 -0.51226,-1.939139 -0.33742,-0.471566 -0.80289,-0.707351 -1.39642,-0.707356 -0.59352,5e-6 -1.06102,0.23579 -1.40252,0.707356 -0.33742,0.467512 -0.50611,1.11389 -0.50611,1.939139 0,0.825253 0.16869,1.473665 0.50611,1.945235 0.3415,0.467508 0.809,0.701259 1.40252,0.701259 0.59353,0 1.059,-0.233751 1.39642,-0.701259 0.34151,-0.47157 0.51226,-1.119982 0.51226,-1.945235 m -3.81731,-2.384286 c 0.23577,-0.40652 0.53255,-0.707351 0.89031,-0.902489 0.3618,-0.199192 0.7927,-0.298793 1.29275,-0.298802 0.82929,9e-6 1.50211,0.329298 2.01841,0.987866 0.52034,0.658577 0.78054,1.524482 0.78054,2.597711 0,1.073237 -0.2602,1.939138 -0.78054,2.597711 -0.5163,0.658577 -1.18912,0.987861 -2.01841,0.987866 -0.50005,-5e-6 -0.93095,-0.09757 -1.29275,-0.2927 -0.35776,-0.199202 -0.65454,-0.502062 -0.89031,-0.908592 l 0,1.02445 -1.1281,0 0,-9.488359 1.1281,0 0,3.695338" + id="path3605" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 830.53113,65.186385 c -0.60166,5e-6 -1.07728,0.23579 -1.42691,0.707356 -0.34959,0.467512 -0.52443,1.109826 -0.52443,1.926944 0,0.817122 0.17278,1.46147 0.51832,1.933041 0.34964,0.467507 0.82732,0.701258 1.43302,0.701258 0.59761,0 1.07121,-0.235785 1.42084,-0.707356 0.34959,-0.47157 0.52438,-1.113885 0.52438,-1.926943 0,-0.808986 -0.17479,-1.449267 -0.52438,-1.920842 -0.34963,-0.475634 -0.82323,-0.713453 -1.42084,-0.713458 m 0,-0.951277 c 0.97566,9e-6 1.74196,0.317098 2.29894,0.951277 0.55694,0.634188 0.8354,1.512288 0.8354,2.6343 0,1.117953 -0.27846,1.996053 -0.8354,2.634299 -0.55698,0.634184 -1.32328,0.951273 -2.29894,0.951278 -0.97971,-5e-6 -1.74808,-0.317094 -2.30501,-0.951278 -0.55289,-0.638246 -0.82929,-1.516346 -0.82929,-2.634299 0,-1.122012 0.2764,-2.000112 0.82929,-2.6343 0.55693,-0.634179 1.3253,-0.951268 2.30501,-0.951277" + id="path3607" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 836.62906,62.460616 0,1.939138 2.31112,0 0,0.872003 -2.31112,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22563,1.073233 0.15445,0.158545 0.46547,0.237819 0.93296,0.237819 l 1.15253,0 0,0.939078 -1.15253,0 c -0.86589,0 -1.4635,-0.160578 -1.79279,-0.481736 -0.32929,-0.32522 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82319,0 0,-0.872003 0.82319,0 0,-1.939138 1.12814,0" + id="path3609" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 846.09909,67.107227 0,4.122193 -1.12199,0 0,-4.085605 c 0,-0.646373 -0.12604,-1.130143 -0.3781,-1.451305 -0.25202,-0.321148 -0.63012,-0.481726 -1.13421,-0.481736 -0.60574,1e-5 -1.08338,0.193109 -1.43301,0.579303 -0.34959,0.386208 -0.52443,0.912659 -0.52443,1.579363 l 0,3.85998 -1.1281,0 0,-9.488359 1.1281,0 0,3.719732 c 0.26832,-0.410588 0.58338,-0.717517 0.94518,-0.920786 0.36589,-0.20326 0.78664,-0.30489 1.26231,-0.304899 0.78457,9e-6 1.3781,0.243926 1.78058,0.73175 0.40243,0.483774 0.60367,1.197232 0.60367,2.140369" + id="path3611" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 856.67899,64.600985 0,1.061039 c -0.31708,-0.162608 -0.64637,-0.284564 -0.98783,-0.365878 -0.34151,-0.0813 -0.69518,-0.121951 -1.06107,-0.121956 -0.55693,5e-6 -0.97567,0.08538 -1.25615,0.256112 -0.27645,0.170748 -0.41465,0.426859 -0.41465,0.768338 0,0.260179 0.0996,0.465478 0.29881,0.615887 0.19917,0.146354 0.59958,0.286607 1.20128,0.420758 l 0.38416,0.08537 c 0.79679,0.170744 1.36185,0.412626 1.69523,0.725652 0.33742,0.308963 0.50611,0.741915 0.50611,1.298853 0,0.634188 -0.25207,1.136246 -0.75616,1.506186 -0.5,0.369941 -1.18907,0.554909 -2.06717,0.554914 -0.36589,-5e-6 -0.74803,-0.03659 -1.14642,-0.109766 -0.39431,-0.06911 -0.81102,-0.174808 -1.25005,-0.31709 l 0,-1.158605 c 0.41465,0.215459 0.82319,0.378072 1.22567,0.487833 0.40248,0.105698 0.80087,0.158545 1.19518,0.158545 0.52851,0 0.93503,-0.08943 1.21961,-0.268306 0.28457,-0.182939 0.42681,-0.43905 0.42686,-0.768339 -5e-5,-0.304894 -0.10368,-0.538646 -0.31102,-0.701258 -0.20326,-0.162608 -0.65248,-0.319123 -1.34762,-0.469541 l -0.39026,-0.09147 c -0.69518,-0.146345 -1.19725,-0.369936 -1.5062,-0.670772 -0.30896,-0.30489 -0.46346,-0.72158 -0.46346,-1.25007 0,-0.642309 0.22764,-1.138274 0.68297,-1.487893 0.45533,-0.349606 1.1017,-0.524413 1.93917,-0.524422 0.41464,9e-6 0.80491,0.03049 1.1708,0.09147 0.36584,0.06099 0.70326,0.152457 1.01221,0.274408" + id="path3613" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 858.83767,64.399754 1.12199,0 0,6.829666 -1.12199,0 0,-6.829666 m 0,-2.658693 1.12199,0 0,1.420814 -1.12199,0 0,-1.420814" + id="path3615" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 866.79544,65.436399 0,-3.695338 1.12199,0 0,9.488359 -1.12199,0 0,-1.02445 c -0.23582,0.40653 -0.53458,0.70939 -0.89638,0.908592 -0.35776,0.195133 -0.7887,0.292695 -1.29279,0.2927 -0.82525,-5e-6 -1.49803,-0.329289 -2.01841,-0.987866 -0.51626,-0.658573 -0.77443,-1.524474 -0.77443,-2.597711 0,-1.073229 0.25817,-1.939134 0.77443,-2.597711 0.52038,-0.658568 1.19316,-0.987857 2.01841,-0.987866 0.50409,9e-6 0.93503,0.09961 1.29279,0.298802 0.3618,0.195138 0.66056,0.495969 0.89638,0.902489 m -3.82338,2.384286 c 0,0.825253 0.16869,1.473665 0.50611,1.945235 0.34146,0.467508 0.809,0.701259 1.40253,0.701259 0.59352,0 1.06102,-0.233751 1.40252,-0.701259 0.34146,-0.47157 0.51222,-1.119982 0.51222,-1.945235 0,-0.825249 -0.17076,-1.471627 -0.51222,-1.939139 -0.3415,-0.471566 -0.809,-0.707351 -1.40252,-0.707356 -0.59353,5e-6 -1.06107,0.23579 -1.40253,0.707356 -0.33742,0.467512 -0.50611,1.11389 -0.50611,1.939139" + id="path3617" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 876.07037,67.534082 0,0.548811 -5.15886,0 c 0.0488,0.772407 0.28053,1.36187 0.69518,1.768399 0.41873,0.402462 1.00004,0.603692 1.74398,0.603692 0.43095,0 0.84762,-0.05285 1.2501,-0.158544 0.40652,-0.105698 0.809,-0.264243 1.20739,-0.475639 l 0,1.061039 c -0.40248,0.170739 -0.81511,0.300831 -1.23788,0.390266 -0.42282,0.08944 -0.8517,0.134151 -1.28669,0.134156 -1.08948,-5e-6 -1.95335,-0.317094 -2.5916,-0.951278 -0.63416,-0.634183 -0.95128,-1.491952 -0.95128,-2.573321 0,-1.117944 0.30083,-2.004176 0.90252,-2.658689 0.6057,-0.658568 1.4208,-0.987857 2.44523,-0.987866 0.91878,9e-6 1.6444,0.296772 2.177,0.890299 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12204,-0.329289 c -0.008,-0.613852 -0.1809,-1.103715 -0.51832,-1.469597 -0.33333,-0.365868 -0.77644,-0.548806 -1.32934,-0.548811 -0.62603,5e-6 -1.1281,0.176846 -1.5062,0.530519 -0.37396,0.353683 -0.58944,0.851681 -0.64637,1.493987 l 4.00023,-0.0061" + id="path3619" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 882.26583,64.600985 0,1.061039 c -0.31708,-0.162608 -0.64637,-0.284564 -0.98783,-0.365878 -0.34151,-0.0813 -0.69518,-0.121951 -1.06107,-0.121956 -0.55693,5e-6 -0.97566,0.08538 -1.25615,0.256112 -0.27645,0.170748 -0.41465,0.426859 -0.41465,0.768338 0,0.260179 0.0996,0.465478 0.29876,0.615887 0.19922,0.146354 0.59964,0.286607 1.20134,0.420758 l 0.38416,0.08537 c 0.79678,0.170744 1.36184,0.412626 1.69522,0.725652 0.33738,0.308963 0.50611,0.741915 0.50611,1.298853 0,0.634188 -0.25207,1.136246 -0.75615,1.506186 -0.5,0.369941 -1.18908,0.554909 -2.06718,0.554914 -0.36588,-5e-6 -0.74802,-0.03659 -1.14642,-0.109766 -0.3943,-0.06911 -0.81102,-0.174808 -1.25004,-0.31709 l 0,-1.158605 c 0.41464,0.215459 0.82318,0.378072 1.22566,0.487833 0.40244,0.105698 0.80088,0.158545 1.19518,0.158545 0.52847,0 0.93504,-0.08943 1.21961,-0.268306 0.28453,-0.182939 0.42681,-0.43905 0.42681,-0.768339 0,-0.304894 -0.10362,-0.538646 -0.31097,-0.701258 -0.20326,-0.162608 -0.65248,-0.319123 -1.34766,-0.469541 l -0.39027,-0.09147 c -0.69513,-0.146345 -1.1972,-0.369936 -1.50615,-0.670772 -0.30895,-0.30489 -0.46345,-0.72158 -0.46345,-1.25007 0,-0.642309 0.22764,-1.138274 0.68296,-1.487893 0.45533,-0.349606 1.1017,-0.524413 1.93912,-0.524422 0.4147,9e-6 0.80496,0.03049 1.1708,0.09147 0.36589,0.06099 0.70331,0.152457 1.01226,0.274408" + id="path3621" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 891.04683,65.186385 c -0.60165,5e-6 -1.07727,0.23579 -1.4269,0.707356 -0.34959,0.467512 -0.52443,1.109826 -0.52443,1.926944 0,0.817122 0.17277,1.46147 0.51832,1.933041 0.34963,0.467507 0.82732,0.701258 1.43301,0.701258 0.59762,0 1.07122,-0.235785 1.42085,-0.707356 0.34959,-0.47157 0.52438,-1.113885 0.52438,-1.926943 0,-0.808986 -0.17479,-1.449267 -0.52438,-1.920842 -0.34963,-0.475634 -0.82323,-0.713453 -1.42085,-0.713458 m 0,-0.951277 c 0.97567,9e-6 1.74197,0.317098 2.29895,0.951277 0.55693,0.634188 0.8354,1.512288 0.8354,2.6343 0,1.117953 -0.27847,1.996053 -0.8354,2.634299 -0.55698,0.634184 -1.32328,0.951273 -2.29895,0.951278 -0.9797,-5e-6 -1.74807,-0.317094 -2.305,-0.951278 -0.5529,-0.638246 -0.8293,-1.516346 -0.8293,-2.634299 0,-1.122012 0.2764,-2.000112 0.8293,-2.6343 0.55693,-0.634179 1.3253,-0.951268 2.305,-0.951277" + id="path3623" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 899.49243,61.741061 0,0.93298 -1.07323,0 c -0.40244,9e-6 -0.68297,0.08132 -0.84151,0.243917 -0.15445,0.162622 -0.23172,0.455322 -0.23172,0.8781 l 0,0.603696 1.8477,0 0,0.872003 -1.8477,0 0,5.957663 -1.1281,0 0,-5.957663 -1.07324,0 0,-0.872003 1.07324,0 0,-0.475638 c 0,-0.760198 0.17685,-1.313077 0.53053,-1.658633 0.35367,-0.349606 0.91469,-0.524413 1.68301,-0.524422 l 1.06102,0" + id="path3625" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 909.31622,64.661963 0,1.048844 c -0.31708,-0.174803 -0.63622,-0.30489 -0.95739,-0.390267 -0.31708,-0.08943 -0.63825,-0.13415 -0.96345,-0.134155 -0.72769,5e-6 -1.29275,0.231727 -1.69523,0.695161 -0.40248,0.459381 -0.60367,1.105763 -0.60367,1.939139 0,0.833384 0.20119,1.481796 0.60367,1.945235 0.40248,0.459376 0.96754,0.689064 1.69523,0.689064 0.3252,0 0.64637,-0.0427 0.96345,-0.128058 0.32117,-0.08943 0.64031,-0.221556 0.95739,-0.396364 l 0,1.03665 c -0.31304,0.14635 -0.63824,0.256111 -0.97566,0.329284 -0.33338,0.07318 -0.68908,0.109761 -1.06713,0.109766 -1.02851,-5e-6 -1.84564,-0.323192 -2.45138,-0.96957 -0.60574,-0.646378 -0.90859,-1.51838 -0.90859,-2.616007 0,-1.113881 0.30492,-1.989947 0.9147,-2.628203 0.61386,-0.638242 1.4533,-0.957365 2.51841,-0.957374 0.34555,9e-6 0.68297,0.03659 1.01226,0.109766 0.32929,0.06911 0.64844,0.174812 0.95739,0.317089" + id="path3627" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 911.16388,68.534143 0,-4.134389 1.122,0 0,4.091703 c 0,0.646378 0.12603,1.132181 0.37805,1.457402 0.25207,0.321157 0.63012,0.481736 1.13425,0.481736 0.6057,0 1.08338,-0.193104 1.43302,-0.579303 0.35367,-0.386203 0.53048,-0.912654 0.53048,-1.579363 l 0,-3.872175 1.12204,0 0,6.829666 -1.12204,0 0,-1.048844 c -0.27236,0.414661 -0.58944,0.723624 -0.95128,0.926884 -0.35772,0.199201 -0.77443,0.298797 -1.25005,0.298802 -0.78462,-5e-6 -1.38017,-0.243917 -1.78669,-0.73175 -0.40652,-0.487834 -0.60978,-1.201292 -0.60978,-2.140369" + id="path3629" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 920.31683,62.460616 0,1.939138 2.31111,0 0,0.872003 -2.31111,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22562,1.073233 0.1545,0.158545 0.46547,0.237819 0.93301,0.237819 l 1.15248,0 0,0.939078 -1.15248,0 c -0.86593,0 -1.4635,-0.160578 -1.79279,-0.481736 -0.32929,-0.32522 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82323,0 0,-0.872003 0.82323,0 0,-1.939138 1.1281,0" + id="path3631" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 925.21959,62.460616 0,1.939138 2.31111,0 0,0.872003 -2.31111,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22562,1.073233 0.15445,0.158545 0.46547,0.237819 0.93296,0.237819 l 1.15253,0 0,0.939078 -1.15253,0 c -0.86588,0 -1.4635,-0.160578 -1.79279,-0.481736 -0.32929,-0.32522 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82319,0 0,-0.872003 0.82319,0 0,-1.939138 1.12815,0" + id="path3633" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 929.01247,64.399754 1.122,0 0,6.829666 -1.122,0 0,-6.829666 m 0,-2.658693 1.122,0 0,1.420814 -1.122,0 0,-1.420814" + id="path3635" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 938.15325,67.107227 0,4.122193 -1.12204,0 0,-4.085605 c 0,-0.646373 -0.12598,-1.130143 -0.37805,-1.451305 -0.25207,-0.321148 -0.63012,-0.481726 -1.13421,-0.481736 -0.60574,1e-5 -1.08338,0.193109 -1.43301,0.579303 -0.34963,0.386208 -0.52443,0.912659 -0.52443,1.579363 l 0,3.85998 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.26832,-0.410588 0.58338,-0.717517 0.94518,-0.920786 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.304899 0.78462,9e-6 1.37815,0.243926 1.78063,0.73175 0.40243,0.483774 0.60367,1.197232 0.60367,2.140369" + id="path3637" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 944.89757,67.735313 c -5e-5,-0.81305 -0.16874,-1.44317 -0.50616,-1.890355 -0.33333,-0.447172 -0.80289,-0.670763 -1.40863,-0.670768 -0.60165,5e-6 -1.07117,0.223596 -1.40859,0.670768 -0.33338,0.447185 -0.50004,1.077305 -0.50004,1.890355 0,0.808995 0.16666,1.437076 0.50004,1.884257 0.33742,0.447182 0.80694,0.670772 1.40859,0.670772 0.60574,0 1.0753,-0.22359 1.40863,-0.670772 0.33742,-0.447181 0.50611,-1.075262 0.50616,-1.884257 m 1.12199,2.646499 c 0,1.162668 -0.25813,2.026535 -0.77443,2.591613 -0.5163,0.569133 -1.30698,0.853706 -2.37208,0.853706 -0.39436,0 -0.7663,-0.03049 -1.11594,-0.09147 -0.34958,-0.05692 -0.68907,-0.14635 -1.01836,-0.268306 l 0,-1.09153 c 0.32929,0.178871 0.65454,0.310992 0.97566,0.396369 0.32117,0.08537 0.64844,0.128053 0.98178,0.128053 0.73581,0 1.28668,-0.193099 1.65252,-0.579303 0.36589,-0.382135 0.54881,-0.961437 0.54886,-1.737903 l 0,-0.554913 c -0.23173,0.402466 -0.52852,0.703293 -0.89032,0.902494 -0.3618,0.199197 -0.79476,0.298797 -1.29885,0.298797 -0.83747,0 -1.51231,-0.319123 -2.02452,-0.957374 -0.51221,-0.638247 -0.76832,-1.483822 -0.76832,-2.536733 0,-1.056966 0.25611,-1.904575 0.76832,-2.542831 0.51221,-0.638242 1.18705,-0.957365 2.02452,-0.957374 0.50409,9e-6 0.93705,0.09961 1.29885,0.298802 0.3618,0.199201 0.65859,0.500032 0.89032,0.902489 l 0,-1.036645 1.12199,0 0,5.982058" + id="path3639" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 952.30652,61.741061 1.122,0 0,9.488359 -1.122,0 0,-9.488359" + id="path3641" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 955.77012,64.399754 1.12204,0 0,6.829666 -1.12204,0 0,-6.829666 m 0,-2.658693 1.12204,0 0,1.420814 -1.12204,0 0,-1.420814" + id="path3643" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 964.9109,67.107227 0,4.122193 -1.122,0 0,-4.085605 c 0,-0.646373 -0.12603,-1.130143 -0.3781,-1.451305 -0.25202,-0.321148 -0.63012,-0.481726 -1.1342,-0.481736 -0.6057,1e-5 -1.08338,0.193109 -1.43302,0.579303 -0.34958,0.386208 -0.52442,0.912659 -0.52438,1.579363 l 0,3.85998 -1.12814,0 0,-6.829666 1.12814,0 0,1.061039 c 0.26828,-0.410588 0.58334,-0.717517 0.94514,-0.920786 0.36588,-0.20326 0.78664,-0.30489 1.2623,-0.304899 0.78458,9e-6 1.3781,0.243926 1.78058,0.73175 0.40244,0.483774 0.60368,1.197232 0.60368,2.140369" + id="path3645" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 973.00287,67.534082 0,0.548811 -5.15887,0 c 0.0488,0.772407 0.28049,1.36187 0.69518,1.768399 0.41874,0.402462 1.00005,0.603692 1.74399,0.603692 0.4309,0 0.84761,-0.05285 1.25009,-0.158544 0.40652,-0.105698 0.80896,-0.264243 1.2074,-0.475639 l 0,1.061039 c -0.40248,0.170739 -0.81511,0.300831 -1.23788,0.390266 -0.42282,0.08944 -0.8517,0.134151 -1.28669,0.134156 -1.08949,-5e-6 -1.95335,-0.317094 -2.5916,-0.951278 -0.63421,-0.634183 -0.95129,-1.491952 -0.95129,-2.573321 0,-1.117944 0.30083,-2.004176 0.90248,-2.658689 0.60574,-0.658568 1.42085,-0.987857 2.44528,-0.987866 0.91878,9e-6 1.6444,0.296772 2.17695,0.890299 0.53664,0.589468 0.80491,1.392361 0.80496,2.408675 m -1.12204,-0.329289 c -0.008,-0.613852 -0.1809,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.77649,-0.548806 -1.32934,-0.548811 -0.62608,5e-6 -1.12815,0.176846 -1.5062,0.530519 -0.37401,0.353683 -0.58944,0.851681 -0.64637,1.493987 l 4.00023,-0.0061" + id="path3647" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 979.19833,64.600985 0,1.061039 c -0.31708,-0.162608 -0.64638,-0.284564 -0.98788,-0.365878 -0.34146,-0.0813 -0.69514,-0.121951 -1.06102,-0.121956 -0.55694,5e-6 -0.97567,0.08538 -1.25616,0.256112 -0.27644,0.170748 -0.41469,0.426859 -0.41469,0.768338 0,0.260179 0.0996,0.465478 0.29881,0.615887 0.19922,0.146354 0.59963,0.286607 1.20129,0.420758 l 0.38416,0.08537 c 0.79683,0.170744 1.36189,0.412626 1.69522,0.725652 0.33742,0.308963 0.50615,0.741915 0.50615,1.298853 0,0.634188 -0.25206,1.136246 -0.75615,1.506186 -0.50004,0.369941 -1.18907,0.554909 -2.06717,0.554914 -0.36589,-5e-6 -0.74803,-0.03659 -1.14642,-0.109766 -0.39435,-0.06911 -0.81102,-0.174808 -1.25009,-0.31709 l 0,-1.158605 c 0.41469,0.215459 0.82323,0.378072 1.22571,0.487833 0.40243,0.105698 0.80083,0.158545 1.19518,0.158545 0.52847,0 0.93499,-0.08943 1.21956,-0.268306 0.28457,-0.182939 0.42686,-0.43905 0.42686,-0.768339 0,-0.304894 -0.10367,-0.538646 -0.31098,-0.701258 -0.20326,-0.162608 -0.65248,-0.319123 -1.34765,-0.469541 l -0.39027,-0.09147 c -0.69514,-0.146345 -1.1972,-0.369936 -1.50616,-0.670772 -0.30899,-0.30489 -0.46345,-0.72158 -0.46345,-1.25007 0,-0.642309 0.22764,-1.138274 0.68297,-1.487893 0.45528,-0.349606 1.1017,-0.524413 1.93912,-0.524422 0.41465,9e-6 0.80491,0.03049 1.1708,0.09147 0.36588,0.06099 0.7033,0.152457 1.01226,0.274408" + id="path3649" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 981.51555,69.680548 1.28664,0 0,1.548872 -1.28664,0 0,-1.548872" + id="path3651" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 588.79755,80.858028 1.83545,0 2.32332,6.195482 2.33549,-6.195482 1.8355,0 0,9.10419 -1.20129,0 0,-7.994368 -2.34771,6.244266 -1.23788,0 -2.3477,-6.244266 0,7.994368 -1.19518,0 0,-9.10419" + id="path3653" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 599.52988,83.132552 1.12199,0 0,6.829666 -1.12199,0 0,-6.829666 m 0,-2.658693 1.12199,0 0,1.420818 -1.12199,0 0,-1.420818" + id="path3655" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 608.67066,85.840025 0,4.122193 -1.12204,0 0,-4.085605 c 0,-0.646373 -0.12603,-1.130138 -0.37805,-1.451305 -0.25207,-0.321148 -0.63012,-0.481727 -1.13421,-0.481731 -0.60574,4e-6 -1.08343,0.193104 -1.43301,0.579298 -0.34964,0.386208 -0.52443,0.912663 -0.52443,1.579363 l 0,3.85998 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.26832,-0.410588 0.58338,-0.717517 0.94518,-0.920786 0.36589,-0.203256 0.78664,-0.30489 1.26226,-0.304895 0.78462,5e-6 1.37815,0.243921 1.78058,0.73175 0.40248,0.48377 0.60372,1.197228 0.60372,2.140365" + id="path3657" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 610.9208,83.132552 1.12199,0 0,6.829666 -1.12199,0 0,-6.829666 m 0,-2.658693 1.12199,0 0,1.420818 -1.12199,0 0,-1.420818" + id="path3659" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 619.7018,84.443605 c 0.28048,-0.504092 0.61588,-0.876062 1.00615,-1.11592 0.39027,-0.239844 0.84963,-0.35977 1.3781,-0.359775 0.71143,5e-6 1.26024,0.250019 1.64647,0.750042 0.38618,0.495969 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -5e-5,-0.654504 -0.11589,-1.140304 -0.34761,-1.457402 -0.23173,-0.317085 -0.5854,-0.47563 -1.06102,-0.475634 -0.58136,4e-6 -1.04073,0.193104 -1.37815,0.579298 -0.33742,0.386208 -0.50611,0.912663 -0.50611,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c -4e-5,-0.658568 -0.11588,-1.144367 -0.34761,-1.457402 -0.23172,-0.317085 -0.58944,-0.47563 -1.07323,-0.475634 -0.57319,4e-6 -1.02851,0.195138 -1.36593,0.5854 -0.33742,0.386203 -0.50611,0.910625 -0.50611,1.573261 l 0,3.85998 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.25611,-0.41872 0.56304,-0.727678 0.9208,-0.926884 0.35771,-0.199192 0.78255,-0.298792 1.27443,-0.298797 0.49596,5e-6 0.91671,0.126029 1.2623,0.378067 0.34959,0.252058 0.60771,0.61793 0.77443,1.097628" + id="path3661" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 626.43996,87.26694 0,-4.134388 1.12204,0 0,4.091702 c 0,0.646383 0.12603,1.132182 0.37805,1.457403 0.25207,0.321157 0.63012,0.481736 1.13421,0.481736 0.60574,0 1.08342,-0.1931 1.43301,-0.579303 0.35367,-0.386199 0.53053,-0.912654 0.53053,-1.579363 l 0,-3.872175 1.12204,0 0,6.829666 -1.12204,0 0,-1.048839 c -0.27236,0.414656 -0.58948,0.723618 -0.95128,0.926883 -0.35772,0.199197 -0.77443,0.298797 -1.25005,0.298797 -0.78462,0 -1.38017,-0.243916 -1.78669,-0.73175 -0.40652,-0.487833 -0.60982,-1.201291 -0.60982,-2.140369" + id="path3663" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 639.80053,84.443605 c 0.28049,-0.504092 0.61589,-0.876062 1.00615,-1.11592 0.39027,-0.239844 0.84964,-0.35977 1.3781,-0.359775 0.71144,5e-6 1.26024,0.250019 1.64647,0.750042 0.38618,0.495969 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -4e-5,-0.654504 -0.11588,-1.140304 -0.34761,-1.457402 -0.23173,-0.317085 -0.5854,-0.47563 -1.06102,-0.475634 -0.58136,4e-6 -1.04073,0.193104 -1.37815,0.579298 -0.33742,0.386208 -0.5061,0.912663 -0.5061,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c -5e-5,-0.658568 -0.11589,-1.144367 -0.34762,-1.457402 -0.23172,-0.317085 -0.58944,-0.47563 -1.07323,-0.475634 -0.57319,4e-6 -1.02851,0.195138 -1.36593,0.5854 -0.33742,0.386203 -0.50611,0.910625 -0.50611,1.573261 l 0,3.85998 -1.12815,0 0,-6.829666 1.12815,0 0,1.061039 c 0.25611,-0.41872 0.56304,-0.727678 0.92075,-0.926884 0.35776,-0.199192 0.7826,-0.298792 1.27448,-0.298797 0.49596,5e-6 0.91671,0.126029 1.26226,0.378067 0.34963,0.252058 0.60776,0.61793 0.77447,1.097628" + id="path3665" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 651.91096,81.870283 0,3.42093 1.5489,0 c 0.57319,5e-6 1.0163,-0.148375 1.32934,-0.445147 0.31304,-0.296759 0.46951,-0.719546 0.46951,-1.268367 0,-0.544738 -0.15647,-0.965496 -0.46951,-1.262269 -0.31304,-0.296754 -0.75615,-0.445138 -1.32934,-0.445147 l -1.5489,0 m -1.23177,-1.012255 2.78067,0 c 1.02039,9e-6 1.79073,0.231731 2.31111,0.695166 0.52438,0.45938 0.7866,1.134215 0.78664,2.024505 -4e-5,0.898431 -0.26226,1.577334 -0.78664,2.036706 -0.52038,0.45938 -1.29072,0.689068 -2.31111,0.689063 l -1.5489,0 0,3.65875 -1.23177,0 0,-9.10419" + id="path3667" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 660.72245,86.529093 c -0.90652,0 -1.53462,0.103664 -1.88426,0.310992 -0.34958,0.207333 -0.52442,0.561011 -0.52442,1.061039 0,0.398398 0.13012,0.715487 0.39026,0.951272 0.26428,0.231722 0.622,0.347585 1.07324,0.347581 0.62199,4e-6 1.12002,-0.219523 1.49403,-0.658573 0.37805,-0.443113 0.56708,-1.030547 0.56708,-1.762297 l 0,-0.250014 -1.11593,0 m 2.23797,-0.463444 0,3.896569 -1.12204,0 0,-1.036645 c -0.25611,0.414656 -0.57525,0.721585 -0.95735,0.920786 -0.38214,0.195134 -0.84968,0.2927 -1.40252,0.2927 -0.69927,0 -1.2562,-0.195133 -1.67085,-0.5854 -0.41061,-0.394334 -0.61589,-0.920786 -0.61589,-1.579363 0,-0.768334 0.25611,-1.347636 0.76832,-1.737903 0.5163,-0.390262 1.28462,-0.585395 2.30501,-0.5854 l 1.57328,0 0,-0.109766 c 0,-0.516281 -0.17075,-0.914679 -0.51221,-1.195189 -0.33742,-0.284564 -0.81309,-0.426851 -1.42691,-0.426855 -0.39027,4e-6 -0.77039,0.04676 -1.14031,0.140252 -0.36998,0.09351 -0.72567,0.233761 -1.06713,0.420758 l 0,-1.036649 c 0.41056,-0.158535 0.80895,-0.276433 1.19518,-0.353678 0.38618,-0.0813 0.76221,-0.121951 1.1281,-0.121956 0.98788,5e-6 1.72571,0.256116 2.21355,0.768334 0.48783,0.512232 0.73172,1.288702 0.73177,2.329405" + id="path3669" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 669.24734,84.181391 c -0.12603,-0.07317 -0.26423,-0.126014 -0.41465,-0.158544 -0.14637,-0.03659 -0.30895,-0.05488 -0.48783,-0.05488 -0.63421,5e-6 -1.12204,0.207337 -1.4635,0.621989 -0.33742,0.410597 -0.50611,1.002094 -0.50611,1.774491 l 0,3.597772 -1.12814,0 0,-6.829666 1.12814,0 0,1.061039 c 0.23577,-0.414652 0.5427,-0.72158 0.92076,-0.920786 0.3781,-0.203256 0.83746,-0.30489 1.37814,-0.304895 0.0772,5e-6 0.16258,0.0061 0.25611,0.01827 0.0935,0.0081 0.19715,0.02236 0.31097,0.0427 l 0.006,1.152503" + id="path3671" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 671.54628,81.193414 0,1.939138 2.31112,0 0,0.872003 -2.31112,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22562,1.073233 0.15446,0.158544 0.46548,0.237819 0.93297,0.237819 l 1.15253,0 0,0.939078 -1.15253,0 c -0.86589,0 -1.4635,-0.160579 -1.79279,-0.481736 -0.32929,-0.325221 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82319,0 0,-0.872003 0.82319,0 0,-1.939138 1.12814,0" + id="path3673" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 684.82141,81.156825 0,1.201291 c -0.46749,-0.223581 -0.90859,-0.390257 -1.32323,-0.500028 -0.41465,-0.109756 -0.81511,-0.164637 -1.20129,-0.164646 -0.67075,9e-6 -1.18907,0.130101 -1.55496,0.390266 -0.3618,0.260189 -0.54275,0.630129 -0.5427,1.109822 -5e-5,0.402471 0.11988,0.707365 0.35973,0.914689 0.24394,0.203269 0.70331,0.367911 1.37815,0.49393 l 0.74394,0.152448 c 0.91873,0.174812 1.59564,0.483774 2.03063,0.926883 0.43902,0.439054 0.65854,1.028518 0.65858,1.768394 -4e-5,0.882168 -0.29678,1.550906 -0.89031,2.006219 -0.58949,0.455308 -1.45537,0.682966 -2.59771,0.682966 -0.43094,0 -0.89031,-0.04878 -1.37814,-0.14635 -0.48375,-0.09757 -0.98582,-0.241887 -1.5062,-0.432952 l 0,-1.268367 c 0.50004,0.280505 0.9899,0.491897 1.4696,0.634183 0.47971,0.142287 0.95129,0.213426 1.41474,0.213426 0.70326,0 1.24601,-0.138219 1.62815,-0.414656 0.38209,-0.276438 0.57319,-0.670772 0.57319,-1.182999 0,-0.447177 -0.1382,-0.796792 -0.41465,-1.04884 -0.27241,-0.252043 -0.72158,-0.441079 -1.34766,-0.567107 l -0.75005,-0.14635 c -0.91873,-0.182935 -1.58342,-0.469533 -1.99398,-0.859804 -0.41061,-0.390262 -0.61589,-0.932976 -0.61589,-1.628146 0,-0.804918 0.28251,-1.439101 0.84761,-1.90255 0.5691,-0.46343 1.3517,-0.695152 2.34766,-0.695161 0.42686,9e-6 0.86185,0.03861 1.30496,0.115858 0.44312,0.07725 0.89642,0.193114 1.35983,0.347581" + id="path3675" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 687.2423,83.132552 1.122,0 0,6.829666 -1.122,0 0,-6.829666 m 0,-2.658693 1.122,0 0,1.420818 -1.122,0 0,-1.420818" + id="path3677" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 690.21806,83.132552 5.32962,0 0,1.02445 -4.21979,4.908824 4.21979,0 0,0.896392 -5.48205,0 0,-1.02445 4.21975,-4.908824 -4.06732,0 0,-0.896392" + id="path3679" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 703.10907,86.26688 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28049,1.36187 0.69514,1.768399 0.41873,0.402461 1.00009,0.603692 1.74403,0.603692 0.4309,0 0.84761,-0.05285 1.25005,-0.158545 0.40652,-0.105698 0.809,-0.264242 1.20739,-0.475638 l 0,1.061038 c -0.40248,0.17074 -0.8151,0.300832 -1.23788,0.390267 -0.42277,0.08944 -0.85165,0.134155 -1.28664,0.134155 -1.08949,0 -1.95335,-0.317094 -2.5916,-0.951277 -0.6342,-0.634183 -0.95128,-1.491952 -0.95128,-2.573322 0,-1.117944 0.30082,-2.004175 0.90248,-2.658689 0.60573,-0.658568 1.4208,-0.987856 2.44527,-0.987861 0.91873,5e-6 1.6444,0.296768 2.17695,0.890295 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12199,-0.329289 c -0.008,-0.613848 -0.18094,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.77649,-0.548807 -1.32938,-0.548811 -0.62604,4e-6 -1.1281,0.176846 -1.50616,0.530519 -0.37401,0.353683 -0.58948,0.851681 -0.64637,1.493991 l 4.00023,-0.0061" + id="path3681" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 705.23727,88.413346 1.28664,0 0,1.548872 -1.28664,0 0,-1.548872 m 0,-4.908819 1.28664,0 0,1.548867 -1.28664,0 0,-1.548867" + id="path3683" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 713.31698,80.858028 4.83563,0 0,1.036649 -3.70753,0 0,2.231834 c 0.17888,-0.06097 0.35776,-0.105689 0.53664,-0.134151 0.17888,-0.03251 0.35776,-0.04878 0.53659,-0.04878 1.01635,4e-6 1.82126,0.278476 2.41479,0.835414 0.59353,0.556947 0.89031,1.311052 0.89031,2.262325 0,0.979734 -0.30491,1.741971 -0.91469,2.286719 -0.60978,0.54068 -1.46961,0.811024 -2.57943,0.811024 -0.38214,0 -0.77241,-0.03251 -1.1708,-0.09757 -0.39431,-0.06505 -0.8029,-0.162613 -1.22567,-0.2927 l 0,-1.23788 c 0.36589,0.199201 0.74394,0.347585 1.13421,0.445147 0.39026,0.09757 0.80289,0.146355 1.23788,0.14635 0.7033,5e-6 1.26024,-0.184968 1.67084,-0.554908 0.41056,-0.369941 0.61589,-0.871998 0.61589,-1.506186 0,-0.634179 -0.20533,-1.136241 -0.61589,-1.506186 -0.4106,-0.369936 -0.96754,-0.554904 -1.67084,-0.554909 -0.3293,5e-6 -0.65859,0.03659 -0.98788,0.109762 -0.32521,0.07318 -0.65854,0.187006 -1.00005,0.341483 l 0,-4.573438" + id="path3685" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 721.25647,88.413346 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872" + id="path3687" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 727.86662,81.669052 c -0.6342,1e-5 -1.11184,0.313035 -1.43301,0.939078 -0.31712,0.621993 -0.47566,1.559042 -0.47566,2.811141 0,1.248041 0.15854,2.185089 0.47566,2.811137 0.32117,0.621988 0.79881,0.932985 1.43301,0.932985 0.63825,0 1.11589,-0.310997 1.43302,-0.932985 0.32112,-0.626048 0.48172,-1.563096 0.48172,-2.811137 0,-1.252099 -0.1606,-2.189148 -0.48172,-2.811141 -0.31713,-0.626043 -0.79477,-0.939068 -1.43302,-0.939078 m 0,-0.975666 c 1.02039,9e-6 1.79886,0.404504 2.3355,1.213486 0.54068,0.804931 0.81102,1.975731 0.81102,3.512399 0,1.532614 -0.27034,2.703409 -0.81102,3.5124 -0.53664,0.804922 -1.31511,1.207388 -2.3355,1.207388 -1.02038,0 -1.80091,-0.402466 -2.34159,-1.207388 -0.53664,-0.808991 -0.80496,-1.979786 -0.80496,-3.5124 0,-1.536668 0.26832,-2.707468 0.80496,-3.512399 0.54068,-0.808982 1.32121,-1.213477 2.34159,-1.213486" + id="path3689" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 738.34285,84.443605 c 0.28049,-0.504092 0.61589,-0.876062 1.00615,-1.11592 0.39027,-0.239844 0.84964,-0.35977 1.3781,-0.359775 0.71144,5e-6 1.26024,0.250019 1.64647,0.750042 0.38618,0.495969 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -4e-5,-0.654504 -0.11588,-1.140304 -0.34761,-1.457402 -0.23173,-0.317085 -0.5854,-0.47563 -1.06102,-0.475634 -0.58136,4e-6 -1.04073,0.193104 -1.37815,0.579298 -0.33742,0.386208 -0.5061,0.912663 -0.5061,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c -5e-5,-0.658568 -0.11589,-1.144367 -0.34762,-1.457402 -0.23172,-0.317085 -0.58944,-0.47563 -1.07323,-0.475634 -0.57319,4e-6 -1.02851,0.195138 -1.36593,0.5854 -0.33742,0.386203 -0.50611,0.910625 -0.50611,1.573261 l 0,3.85998 -1.12815,0 0,-6.829666 1.12815,0 0,1.061039 c 0.25611,-0.41872 0.56304,-0.727678 0.92075,-0.926884 0.35776,-0.199192 0.7826,-0.298792 1.27448,-0.298797 0.49596,5e-6 0.91671,0.126029 1.26226,0.378067 0.34963,0.252058 0.60776,0.61793 0.77447,1.097628" + id="path3691" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 750.5143,84.443605 c 0.28049,-0.504092 0.61589,-0.876062 1.00616,-1.11592 0.39026,-0.239844 0.84963,-0.35977 1.3781,-0.359775 0.71143,5e-6 1.26024,0.250019 1.64646,0.750042 0.38618,0.495969 0.57929,1.203325 0.57929,2.122073 l 0,4.122193 -1.1281,0 0,-4.085605 c -4e-5,-0.654504 -0.11588,-1.140304 -0.34761,-1.457402 -0.23172,-0.317085 -0.5854,-0.47563 -1.06102,-0.475634 -0.58136,4e-6 -1.04072,0.193104 -1.37814,0.579298 -0.33742,0.386208 -0.50611,0.912663 -0.50611,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c -5e-5,-0.658568 -0.11589,-1.144367 -0.34761,-1.457402 -0.23173,-0.317085 -0.58944,-0.47563 -1.07324,-0.475634 -0.57318,4e-6 -1.02851,0.195138 -1.36593,0.5854 -0.33742,0.386203 -0.50611,0.910625 -0.50611,1.573261 l 0,3.85998 -1.12814,0 0,-6.829666 1.12814,0 0,1.061039 c 0.25611,-0.41872 0.56304,-0.727678 0.92076,-0.926884 0.35776,-0.199192 0.7826,-0.298792 1.27447,-0.298797 0.49596,5e-6 0.91671,0.126029 1.26226,0.378067 0.34963,0.252058 0.60776,0.61793 0.77447,1.097628" + id="path3693" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 765.69811,83.333783 0,1.061038 c -0.31713,-0.162608 -0.64642,-0.284564 -0.98788,-0.365877 -0.34151,-0.0813 -0.69518,-0.121951 -1.06102,-0.121956 -0.55698,5e-6 -0.97567,0.08538 -1.2562,0.256111 -0.27645,0.170749 -0.41465,0.42686 -0.41465,0.768339 0,0.260184 0.0996,0.465478 0.29881,0.615887 0.19917,0.146354 0.59963,0.286607 1.20128,0.420757 l 0.38416,0.08537 c 0.79679,0.170744 1.36185,0.412627 1.69523,0.725653 0.33742,0.308963 0.50611,0.741915 0.50611,1.298853 0,0.634188 -0.25202,1.136245 -0.75611,1.506186 -0.50005,0.369941 -1.18912,0.554913 -2.06722,0.554913 -0.36589,0 -0.74803,-0.03659 -1.14642,-0.109766 -0.39431,-0.06911 -0.81102,-0.174807 -1.25005,-0.317089 l 0,-1.158605 c 0.41465,0.215459 0.82324,0.378072 1.22567,0.487833 0.40248,0.105698 0.80087,0.158549 1.19518,0.158545 0.52851,4e-6 0.93503,-0.08944 1.21961,-0.268306 0.28457,-0.182939 0.42686,-0.43905 0.42686,-0.768339 0,-0.304894 -0.10368,-0.538646 -0.31102,-0.701258 -0.20326,-0.162608 -0.65248,-0.319124 -1.34762,-0.469542 l -0.39026,-0.09147 c -0.69518,-0.146345 -1.19725,-0.369936 -1.5062,-0.670772 -0.30896,-0.30489 -0.46346,-0.72158 -0.46346,-1.25007 0,-0.64231 0.22769,-1.13827 0.68297,-1.487894 0.45533,-0.349605 1.1017,-0.524412 1.93917,-0.524417 0.41464,5e-6 0.80491,0.03049 1.1708,0.09146 0.36584,0.06099 0.70326,0.152456 1.01226,0.274408" + id="path3695" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 768.52754,86.553482 c 0,0.825254 0.16869,1.473666 0.50611,1.945236 0.3415,0.467507 0.809,0.701263 1.40252,0.701259 0.59353,4e-6 1.06102,-0.233752 1.40253,-0.701259 0.34146,-0.47157 0.51221,-1.119982 0.51221,-1.945236 0,-0.825248 -0.17075,-1.471626 -0.51221,-1.939138 -0.34151,-0.471566 -0.809,-0.707351 -1.40253,-0.707356 -0.59352,5e-6 -1.06102,0.23579 -1.40252,0.707356 -0.33742,0.467512 -0.50611,1.11389 -0.50611,1.939138 m 3.82337,2.384286 c -0.23576,0.406529 -0.53457,0.70939 -0.89637,0.908591 -0.35776,0.195134 -0.78866,0.2927 -1.29279,0.2927 -0.82526,0 -1.49803,-0.329288 -2.01837,-0.987866 -0.5163,-0.658572 -0.77447,-1.524473 -0.77447,-2.597711 0,-1.073228 0.25817,-1.939129 0.77447,-2.597711 0.52034,-0.658568 1.19311,-0.987856 2.01837,-0.987861 0.50413,5e-6 0.93503,0.0996 1.29279,0.298797 0.3618,0.195138 0.66061,0.49597 0.89637,0.90249 l 0,-1.036645 1.12204,0 0,9.427377 -1.12204,0 0,-3.622161" + id="path3697" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 775.66818,87.26694 0,-4.134388 1.12204,0 0,4.091702 c 0,0.646383 0.12599,1.132182 0.37805,1.457403 0.25207,0.321157 0.63012,0.481736 1.13421,0.481736 0.60574,0 1.08338,-0.1931 1.43301,-0.579303 0.35368,-0.386199 0.53054,-0.912654 0.53054,-1.579363 l 0,-3.872175 1.12199,0 0,6.829666 -1.12199,0 0,-1.048839 c -0.27241,0.414656 -0.58949,0.723618 -0.95129,0.926883 -0.35776,0.199197 -0.77443,0.298797 -1.25009,0.298797 -0.78458,0 -1.38012,-0.243916 -1.78669,-0.73175 -0.40652,-0.487833 -0.60978,-1.201291 -0.60978,-2.140369" + id="path3699" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 786.81516,86.529093 c -0.90652,0 -1.53462,0.103664 -1.88426,0.310992 -0.34958,0.207333 -0.52442,0.561011 -0.52442,1.061039 0,0.398398 0.13012,0.715487 0.39027,0.951272 0.26427,0.231722 0.62199,0.347585 1.07323,0.347581 0.62199,4e-6 1.12002,-0.219523 1.49403,-0.658573 0.37805,-0.443113 0.56708,-1.030547 0.56708,-1.762297 l 0,-0.250014 -1.11593,0 m 2.23797,-0.463444 0,3.896569 -1.12204,0 0,-1.036645 c -0.25611,0.414656 -0.57525,0.721585 -0.95735,0.920786 -0.38214,0.195134 -0.84968,0.2927 -1.40252,0.2927 -0.69927,0 -1.2562,-0.195133 -1.67085,-0.5854 -0.4106,-0.394334 -0.61589,-0.920786 -0.61589,-1.579363 0,-0.768334 0.25611,-1.347636 0.76833,-1.737903 0.51629,-0.390262 1.28462,-0.585395 2.305,-0.5854 l 1.57328,0 0,-0.109766 c 0,-0.516281 -0.17075,-0.914679 -0.51221,-1.195189 -0.33742,-0.284564 -0.81309,-0.426851 -1.42691,-0.426855 -0.39027,4e-6 -0.77039,0.04676 -1.14031,0.140252 -0.36997,0.09351 -0.72567,0.233761 -1.06713,0.420758 l 0,-1.036649 c 0.41056,-0.158535 0.80896,-0.276433 1.19518,-0.353678 0.38618,-0.0813 0.76221,-0.121951 1.1281,-0.121956 0.98788,5e-6 1.72571,0.256116 2.21355,0.768334 0.48783,0.512232 0.73172,1.288702 0.73177,2.329405" + id="path3701" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 795.32788,84.181391 c -0.12603,-0.07317 -0.26428,-0.126014 -0.41469,-0.158544 -0.14633,-0.03659 -0.30895,-0.05488 -0.48783,-0.05488 -0.63416,5e-6 -1.122,0.207337 -1.4635,0.621989 -0.33742,0.410597 -0.50611,1.002094 -0.50611,1.774491 l 0,3.597772 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.23577,-0.414652 0.5427,-0.72158 0.9208,-0.920786 0.37805,-0.203256 0.83742,-0.30489 1.3781,-0.304895 0.0772,5e-6 0.16263,0.0061 0.25611,0.01827 0.0935,0.0081 0.1972,0.02236 0.31102,0.0427 l 0.006,1.152503" + id="path3703" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 802.10264,86.26688 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28048,1.36187 0.69513,1.768399 0.41873,0.402461 1.00009,0.603692 1.74403,0.603692 0.4309,0 0.84762,-0.05285 1.25005,-0.158545 0.40652,-0.105698 0.809,-0.264242 1.20739,-0.475638 l 0,1.061038 c -0.40248,0.17074 -0.81506,0.300832 -1.23788,0.390267 -0.42277,0.08944 -0.85165,0.134155 -1.28664,0.134155 -1.08948,0 -1.95335,-0.317094 -2.5916,-0.951277 -0.6342,-0.634183 -0.95128,-1.491952 -0.95128,-2.573322 0,-1.117944 0.30082,-2.004175 0.90248,-2.658689 0.60574,-0.658568 1.4208,-0.987856 2.44527,-0.987861 0.91873,5e-6 1.6444,0.296768 2.17695,0.890295 0.5366,0.589468 0.80492,1.392361 0.80492,2.408675 m -1.122,-0.329289 c -0.008,-0.613848 -0.18094,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.77649,-0.548807 -1.32938,-0.548811 -0.62604,4e-6 -1.1281,0.176846 -1.50616,0.530519 -0.37401,0.353683 -0.58948,0.851681 -0.64637,1.493991 l 4.00023,-0.0061" + id="path3705" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 805.95044,80.858028 1.03664,0 -3.1709,10.262795 -1.03664,0 3.1709,-10.262795" + id="path3707" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 812.67032,84.169197 0,-3.695338 1.12204,0 0,9.488359 -1.12204,0 0,-1.02445 c -0.23577,0.406529 -0.53457,0.70939 -0.89637,0.908591 -0.35776,0.195134 -0.78866,0.2927 -1.29275,0.2927 -0.82525,0 -1.49807,-0.329288 -2.01841,-0.987866 -0.5163,-0.658572 -0.77447,-1.524473 -0.77447,-2.597711 0,-1.073228 0.25817,-1.939129 0.77447,-2.597711 0.52034,-0.658568 1.19316,-0.987856 2.01841,-0.987861 0.50409,5e-6 0.93499,0.0996 1.29275,0.298797 0.3618,0.195138 0.6606,0.49597 0.89637,0.90249 m -3.82337,2.384285 c 0,0.825254 0.16869,1.473666 0.50611,1.945236 0.3415,0.467507 0.809,0.701263 1.40252,0.701259 0.59353,4e-6 1.06102,-0.233752 1.40253,-0.701259 0.34146,-0.47157 0.51221,-1.119982 0.51221,-1.945236 0,-0.825248 -0.17075,-1.471626 -0.51221,-1.939138 -0.34151,-0.471566 -0.809,-0.707351 -1.40253,-0.707356 -0.59352,5e-6 -1.06102,0.23579 -1.40252,0.707356 -0.33742,0.467512 -0.50611,1.11389 -0.50611,1.939138" + id="path3709" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 816.10347,83.132552 1.122,0 0,6.829666 -1.122,0 0,-6.829666 m 0,-2.658693 1.122,0 0,1.420818 -1.122,0 0,-1.420818" + id="path3711" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 822.67093,86.529093 c -0.90657,0 -1.53467,0.103664 -1.88426,0.310992 -0.34963,0.207333 -0.52442,0.561011 -0.52442,1.061039 0,0.398398 0.13007,0.715487 0.39026,0.951272 0.26424,0.231722 0.622,0.347585 1.07324,0.347581 0.62199,4e-6 1.11997,-0.219523 1.49398,-0.658573 0.37806,-0.443113 0.56708,-1.030547 0.56713,-1.762297 l 0,-0.250014 -1.11593,0 m 2.23792,-0.463444 0,3.896569 -1.12199,0 0,-1.036645 c -0.25615,0.414656 -0.57525,0.721585 -0.95739,0.920786 -0.38214,0.195134 -0.84964,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.195133 -1.6708,-0.5854 -0.41061,-0.394334 -0.61593,-0.920786 -0.61593,-1.579363 0,-0.768334 0.25615,-1.347636 0.76836,-1.737903 0.5163,-0.390262 1.28462,-0.585395 2.30501,-0.5854 l 1.57328,0 0,-0.109766 c -5e-5,-0.516281 -0.17075,-0.914679 -0.51226,-1.195189 -0.33742,-0.284564 -0.81304,-0.426851 -1.42691,-0.426855 -0.39026,4e-6 -0.77034,0.04676 -1.14031,0.140252 -0.36993,0.09351 -0.72562,0.233761 -1.06713,0.420758 l 0,-1.036649 c 0.41061,-0.158535 0.809,-0.276433 1.19518,-0.353678 0.38623,-0.0813 0.76226,-0.121951 1.12815,-0.121956 0.98783,5e-6 1.72567,0.256116 2.21355,0.768334 0.48778,0.512232 0.73172,1.288702 0.73172,2.329405" + id="path3713" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 832.54343,84.443605 c 0.28054,-0.504092 0.61589,-0.876062 1.00616,-1.11592 0.39026,-0.239844 0.84963,-0.35977 1.37814,-0.359775 0.71144,5e-6 1.26024,0.250019 1.64642,0.750042 0.38623,0.495969 0.5793,1.203325 0.57934,2.122073 l 0,4.122193 -1.12814,0 0,-4.085605 c 0,-0.654504 -0.11584,-1.140304 -0.34757,-1.457402 -0.23173,-0.317085 -0.5854,-0.47563 -1.06102,-0.475634 -0.58136,4e-6 -1.04073,0.193104 -1.37815,0.579298 -0.33742,0.386208 -0.50615,0.912663 -0.50615,1.579363 l 0,3.85998 -1.1281,0 0,-4.085605 c 0,-0.658568 -0.11584,-1.144367 -0.34757,-1.457402 -0.23172,-0.317085 -0.58948,-0.47563 -1.07323,-0.475634 -0.57323,4e-6 -1.02851,0.195138 -1.36593,0.5854 -0.33742,0.386203 -0.50616,0.910625 -0.50616,1.573261 l 0,3.85998 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.25611,-0.41872 0.56304,-0.727678 0.9208,-0.926884 0.35776,-0.199192 0.78256,-0.298792 1.27448,-0.298797 0.49596,5e-6 0.91671,0.126029 1.26226,0.378067 0.34963,0.252058 0.60776,0.61793 0.77442,1.097628" + id="path3715" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 845.23931,86.26688 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28049,1.36187 0.69513,1.768399 0.41874,0.402461 1.0001,0.603692 1.74404,0.603692 0.4309,0 0.84761,-0.05285 1.25004,-0.158545 0.40652,-0.105698 0.809,-0.264242 1.2074,-0.475638 l 0,1.061038 c -0.40248,0.17074 -0.81511,0.300832 -1.23788,0.390267 -0.42278,0.08944 -0.85166,0.134155 -1.28664,0.134155 -1.08949,0 -1.95336,-0.317094 -2.5916,-0.951277 -0.63421,-0.634183 -0.95129,-1.491952 -0.95129,-2.573322 0,-1.117944 0.30083,-2.004175 0.90248,-2.658689 0.60574,-0.658568 1.4208,-0.987856 2.44527,-0.987861 0.91874,5e-6 1.6444,0.296768 2.17696,0.890295 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12199,-0.329289 c -0.008,-0.613848 -0.18095,-1.103715 -0.51832,-1.469597 -0.33338,-0.365868 -0.7765,-0.548807 -1.32939,-0.548811 -0.62603,4e-6 -1.1281,0.176846 -1.50615,0.530519 -0.37402,0.353683 -0.58949,0.851681 -0.64638,1.493991 l 4.00024,-0.0061" + id="path3717" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 848.19069,81.193414 0,1.939138 2.31111,0 0,0.872003 -2.31111,0 0,3.707533 c 0,0.556942 0.0752,0.914688 0.22562,1.073233 0.1545,0.158544 0.46547,0.237819 0.93301,0.237819 l 1.15248,0 0,0.939078 -1.15248,0 c -0.86593,0 -1.4635,-0.160579 -1.79279,-0.481736 -0.32929,-0.325221 -0.49394,-0.914684 -0.49394,-1.768394 l 0,-3.707533 -0.82323,0 0,-0.872003 0.82323,0 0,-1.939138 1.1281,0" + id="path3719" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 857.82541,86.26688 0,0.548811 -5.15882,0 c 0.0488,0.772407 0.28049,1.36187 0.69513,1.768399 0.41874,0.402461 1.00005,0.603692 1.74404,0.603692 0.4309,0 0.84756,-0.05285 1.25004,-0.158545 0.40652,-0.105698 0.809,-0.264242 1.2074,-0.475638 l 0,1.061038 c -0.40248,0.17074 -0.81511,0.300832 -1.23788,0.390267 -0.42278,0.08944 -0.8517,0.134155 -1.28664,0.134155 -1.08954,0 -1.9534,-0.317094 -2.59165,-0.951277 -0.63416,-0.634183 -0.95124,-1.491952 -0.95124,-2.573322 0,-1.117944 0.30083,-2.004175 0.90248,-2.658689 0.60569,-0.658568 1.4208,-0.987856 2.44527,-0.987861 0.91874,5e-6 1.6444,0.296768 2.17696,0.890295 0.53659,0.589468 0.80491,1.392361 0.80491,2.408675 m -1.12204,-0.329289 c -0.008,-0.613848 -0.1809,-1.103715 -0.51832,-1.469597 -0.33333,-0.365868 -0.77645,-0.548807 -1.32934,-0.548811 -0.62603,4e-6 -1.1281,0.176846 -1.50615,0.530519 -0.37402,0.353683 -0.58949,0.851681 -0.64642,1.493991 l 4.00023,-0.0061" + id="path3721" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 863.62454,84.181391 c -0.12603,-0.07317 -0.26428,-0.126014 -0.41469,-0.158544 -0.14633,-0.03659 -0.30895,-0.05488 -0.48783,-0.05488 -0.63416,5e-6 -1.122,0.207337 -1.4635,0.621989 -0.33742,0.410597 -0.50611,1.002094 -0.50611,1.774491 l 0,3.597772 -1.1281,0 0,-6.829666 1.1281,0 0,1.061039 c 0.23577,-0.414652 0.5427,-0.72158 0.9208,-0.920786 0.37805,-0.203256 0.83742,-0.30489 1.3781,-0.304895 0.0772,5e-6 0.16263,0.0061 0.25611,0.01827 0.0935,0.0081 0.1972,0.02236 0.31102,0.0427 l 0.006,1.152503" + id="path3723" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 863.83795,88.413346 1.28668,0 0,1.548872 -1.28668,0 0,-1.548872" + id="path3725" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 588.79755,99.590826 1.83545,0 2.32332,6.195484 2.33549,-6.195484 1.8355,0 0,9.104194 -1.20129,0 0,-7.99437 -2.34771,6.24426 -1.23788,0 -2.3477,-6.24426 0,7.99437 -1.19518,0 0,-9.104194" + id="path3727" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 599.52988,101.86535 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.658689 1.12199,0 0,1.420809 -1.12199,0 0,-1.420809" + id="path3729" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 608.67066,104.57283 0,4.12219 -1.12204,0 0,-4.08561 c 0,-0.64637 -0.12603,-1.13014 -0.37805,-1.4513 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48174 -0.60574,10e-6 -1.08343,0.19311 -1.43301,0.57931 -0.34964,0.3862 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.26832,-0.41059 0.58338,-0.71752 0.94518,-0.92079 0.36589,-0.20325 0.78664,-0.30489 1.26226,-0.30489 0.78462,0 1.37815,0.24392 1.78058,0.73175 0.40248,0.48377 0.60372,1.19723 0.60372,2.14037" + id="path3731" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 610.9208,101.86535 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.658689 1.12199,0 0,1.420809 -1.12199,0 0,-1.420809" + id="path3733" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 619.7018,103.1764 c 0.28048,-0.50408 0.61588,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84963,-0.35977 1.3781,-0.35977 0.71143,0 1.26024,0.25002 1.64647,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12208 l 0,4.12219 -1.1281,0 0,-4.08561 c -5e-5,-0.6545 -0.11589,-1.1403 -0.34761,-1.4574 -0.23173,-0.31709 -0.5854,-0.47563 -1.06102,-0.47564 -0.58136,10e-6 -1.04073,0.19311 -1.37815,0.57931 -0.33742,0.3862 -0.50611,0.91266 -0.50611,1.57936 l 0,3.85998 -1.1281,0 0,-4.08561 c -4e-5,-0.65857 -0.11588,-1.14437 -0.34761,-1.4574 -0.23172,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,10e-6 -1.02851,0.19514 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57327 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.25611,-0.41872 0.56304,-0.72768 0.9208,-0.92688 0.35771,-0.1992 0.78255,-0.2988 1.27443,-0.2988 0.49596,0 0.91671,0.12603 1.2623,0.37807 0.34959,0.25205 0.60771,0.61793 0.77443,1.09762" + id="path3735" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 626.43996,105.99974 0,-4.13439 1.12204,0 0,4.0917 c 0,0.64638 0.12603,1.13218 0.37805,1.4574 0.25207,0.32116 0.63012,0.48174 1.13421,0.48174 0.60574,0 1.08342,-0.1931 1.43301,-0.5793 0.35367,-0.3862 0.53053,-0.91266 0.53053,-1.57937 l 0,-3.87217 1.12204,0 0,6.82967 -1.12204,0 0,-1.04884 c -0.27236,0.41465 -0.58948,0.72362 -0.95128,0.92688 -0.35772,0.1992 -0.77443,0.2988 -1.25005,0.2988 -0.78462,0 -1.38017,-0.24392 -1.78669,-0.73175 -0.40652,-0.48784 -0.60982,-1.20129 -0.60982,-2.14037" + id="path3737" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 639.80053,103.1764 c 0.28049,-0.50408 0.61589,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84964,-0.35977 1.3781,-0.35977 0.71144,0 1.26024,0.25002 1.64647,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12208 l 0,4.12219 -1.1281,0 0,-4.08561 c -4e-5,-0.6545 -0.11588,-1.1403 -0.34761,-1.4574 -0.23173,-0.31709 -0.5854,-0.47563 -1.06102,-0.47564 -0.58136,10e-6 -1.04073,0.19311 -1.37815,0.57931 -0.33742,0.3862 -0.5061,0.91266 -0.5061,1.57936 l 0,3.85998 -1.1281,0 0,-4.08561 c -5e-5,-0.65857 -0.11589,-1.14437 -0.34762,-1.4574 -0.23172,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,10e-6 -1.02851,0.19514 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57327 l 0,3.85998 -1.12815,0 0,-6.82967 1.12815,0 0,1.06104 c 0.25611,-0.41872 0.56304,-0.72768 0.92075,-0.92688 0.35776,-0.1992 0.7826,-0.2988 1.27448,-0.2988 0.49596,0 0.91671,0.12603 1.26226,0.37807 0.34963,0.25205 0.60776,0.61793 0.77447,1.09762" + id="path3739" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 650.67919,99.590826 5.232,0 0,1.036644 -4.00023,0 0,2.68309 3.60997,0 0,1.03664 -3.60997,0 0,4.34782 -1.23177,0 0,-9.104194" + id="path3741" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 662.9848,104.99968 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.7684 0.41874,0.40246 1.00005,0.60369 1.74404,0.60369 0.4309,0 0.84756,-0.0529 1.25004,-0.15854 0.40652,-0.1057 0.809,-0.26425 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42278,0.0894 -0.8517,0.13416 -1.28664,0.13416 -1.08954,0 -1.9534,-0.3171 -2.59165,-0.95128 -0.63416,-0.63418 -0.95129,-1.49195 -0.95124,-2.57332 -5e-5,-1.11795 0.30083,-2.00418 0.90248,-2.65869 0.60569,-0.65857 1.4208,-0.98786 2.44527,-0.98786 0.91874,0 1.6444,0.29677 2.17696,0.89029 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33333,-0.36587 -0.77645,-0.5488 -1.32934,-0.54881 -0.62603,1e-5 -1.1281,0.17685 -1.50615,0.53052 -0.37402,0.35368 -0.58949,0.85168 -0.64642,1.49399 l 4.00023,-0.006" + id="path3743" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 667.93021,105.26189 c -0.90656,0 -1.53466,0.10367 -1.88425,0.31099 -0.34963,0.20734 -0.52443,0.56101 -0.52443,1.06104 0,0.3984 0.13008,0.71549 0.39027,0.95127 0.26423,0.23173 0.62199,0.34759 1.07323,0.34758 0.622,10e-6 1.11998,-0.21952 1.49399,-0.65857 0.37805,-0.44311 0.56708,-1.03055 0.56712,-1.7623 l 0,-0.25001 -1.11593,0 m 2.23793,-0.46344 0,3.89657 -1.122,0 0,-1.03665 c -0.25615,0.41466 -0.57525,0.72159 -0.95739,0.92079 -0.38214,0.19513 -0.84963,0.2927 -1.40252,0.2927 -0.69922,0 -1.25616,-0.19514 -1.67085,-0.5854 -0.41056,-0.39433 -0.61589,-0.92079 -0.61589,-1.57937 0,-0.76833 0.25611,-1.34763 0.76837,-1.7379 0.5163,-0.39026 1.28462,-0.58539 2.30501,-0.5854 l 1.57327,0 0,-0.10977 c -4e-5,-0.51628 -0.17075,-0.91467 -0.51225,-1.19518 -0.33742,-0.28457 -0.81304,-0.42685 -1.42691,-0.42686 -0.39027,1e-5 -0.77039,0.0468 -1.14031,0.14025 -0.36993,0.0935 -0.72567,0.23376 -1.06713,0.42076 l 0,-1.03665 c 0.41061,-0.15853 0.809,-0.27643 1.19518,-0.35368 0.38623,-0.0813 0.76226,-0.12195 1.12815,-0.12195 0.98783,0 1.72566,0.25611 2.21354,0.76833 0.48779,0.51223 0.73173,1.2887 0.73173,2.32941" + id="path3745" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 673.59518,99.926211 0,1.939139 2.31112,0 0,0.872 -2.31112,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15446,0.15854 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48174 -0.32929,-0.32522 -0.49394,-0.91468 -0.49394,-1.76839 l 0,-3.70754 -0.82319,0 0,-0.872 0.82319,0 0,-1.939139 1.12814,0" + id="path3747" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 677.27223,105.99974 0,-4.13439 1.12199,0 0,4.0917 c 0,0.64638 0.12604,1.13218 0.37806,1.4574 0.25206,0.32116 0.63012,0.48174 1.13425,0.48174 0.60569,0 1.08338,-0.1931 1.43301,-0.5793 0.35368,-0.3862 0.53049,-0.91266 0.53049,-1.57937 l 0,-3.87217 1.12204,0 0,6.82967 -1.12204,0 0,-1.04884 c -0.27236,0.41465 -0.58944,0.72362 -0.95129,0.92688 -0.35771,0.1992 -0.77442,0.2988 -1.25004,0.2988 -0.78462,0 -1.38017,-0.24392 -1.78669,-0.73175 -0.40652,-0.48784 -0.60978,-1.20129 -0.60978,-2.14037" + id="path3749" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 689.27293,102.91419 c -0.12603,-0.0732 -0.26428,-0.12602 -0.41469,-0.15855 -0.14633,-0.0366 -0.30896,-0.0549 -0.48784,-0.0549 -0.63416,1e-5 -1.12199,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.5061,1.0021 -0.5061,1.77449 l 0,3.59778 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.23576,-0.41465 0.5427,-0.72158 0.9208,-0.92079 0.37805,-0.20325 0.83742,-0.30489 1.3781,-0.30489 0.0772,0 0.16262,0.006 0.2561,0.0183 0.0935,0.008 0.19716,0.0224 0.31102,0.0427 l 0.006,1.15251" + id="path3751" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 696.04768,104.99968 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.7684 0.41869,0.40246 1.00005,0.60369 1.74399,0.60369 0.4309,0 0.84761,-0.0529 1.25005,-0.15854 0.40656,-0.1057 0.809,-0.26425 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39026 -0.42277,0.0894 -0.85165,0.13416 -1.28664,0.13416 -1.08949,0 -1.95335,-0.3171 -2.5916,-0.95128 -0.63421,-0.63418 -0.95129,-1.49195 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98786 2.44528,-0.98786 0.91873,0 1.6444,0.29677 2.17695,0.89029 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62608,1e-5 -1.12815,0.17685 -1.5062,0.53052 -0.37401,0.35368 -0.58949,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3753" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 707.38373,99.889627 0,1.201283 c -0.46754,-0.22358 -0.90863,-0.39025 -1.32328,-0.50002 -0.41464,-0.10976 -0.81506,-0.16464 -1.20128,-0.16465 -0.67076,10e-6 -1.18908,0.1301 -1.55496,0.39027 -0.3618,0.26018 -0.5427,0.63013 -0.5427,1.10982 0,0.40247 0.11992,0.70736 0.35978,0.91469 0.24389,0.20327 0.70326,0.36791 1.3781,0.49393 l 0.74394,0.15244 c 0.91878,0.17482 1.59564,0.48378 2.03062,0.92689 0.43903,0.43905 0.65859,1.02852 0.65859,1.7684 0,0.88216 -0.29679,1.5509 -0.89031,2.00621 -0.58949,0.45531 -1.45538,0.68297 -2.59771,0.68297 -0.4309,0 -0.89031,-0.0488 -1.37815,-0.14635 -0.48374,-0.0976 -0.98581,-0.24189 -1.50615,-0.43296 l 0,-1.26836 c 0.5,0.2805 0.9899,0.4919 1.46961,0.63418 0.47966,0.14229 0.95124,0.21343 1.41469,0.21343 0.70331,0 1.24601,-0.13822 1.62815,-0.41466 0.38214,-0.27644 0.57318,-0.67077 0.57318,-1.183 0,-0.44718 -0.1382,-0.79679 -0.41464,-1.04884 -0.27236,-0.25204 -0.72158,-0.44108 -1.34762,-0.56711 l -0.75004,-0.14635 c -0.91878,-0.18293 -1.58343,-0.46953 -1.99404,-0.8598 -0.4106,-0.39026 -0.61588,-0.93297 -0.61588,-1.62815 0,-0.80491 0.28251,-1.43909 0.84761,-1.90255 0.56915,-0.463425 1.3517,-0.695147 2.34771,-0.695156 0.42681,9e-6 0.8618,0.03861 1.30491,0.115858 0.44311,0.07725 0.89642,0.193113 1.35987,0.347585" + id="path3755" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 709.80458,101.86535 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.658689 1.12204,0 0,1.420809 -1.12204,0 0,-1.420809" + id="path3757" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 712.78039,101.86535 5.32957,0 0,1.02445 -4.21975,4.90882 4.21975,0 0,0.8964 -5.48205,0 0,-1.02445 4.21979,-4.90883 -4.06731,0 0,-0.89639" + id="path3759" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 725.67135,104.99968 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69514,1.7684 0.41873,0.40246 1.00009,0.60369 1.74403,0.60369 0.4309,0 0.84761,-0.0529 1.25005,-0.15854 0.40652,-0.1057 0.809,-0.26425 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39026 -0.42277,0.0894 -0.85165,0.13416 -1.28664,0.13416 -1.08949,0 -1.95335,-0.3171 -2.5916,-0.95128 -0.63421,-0.63418 -0.95129,-1.49195 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98786 2.44528,-0.98786 0.91873,0 1.6444,0.29677 2.17695,0.89029 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62608,1e-5 -1.12815,0.17685 -1.5062,0.53052 -0.37401,0.35368 -0.58949,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3761" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 727.79954,107.14614 1.28665,0 0,1.54888 -1.28665,0 0,-1.54888 m 0,-4.90882 1.28665,0 0,1.54887 -1.28665,0 0,-1.54887" + id="path3763" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 736.0805,107.65837 2.0123,0 0,-6.94553 -2.18912,0.43905 0,-1.12201 2.17696,-0.439054 1.23177,0 0,8.067544 2.01231,0 0,1.03665 -5.24422,0 0,-1.03665" + id="path3765" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 743.81875,107.14614 1.28669,0 0,1.54888 -1.28669,0 0,-1.54888" + id="path3767" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 750.4289,100.40185 c -0.6342,1e-5 -1.11184,0.31304 -1.43301,0.93908 -0.31708,0.622 -0.47562,1.55904 -0.47562,2.81114 0,1.24804 0.15854,2.18509 0.47562,2.81114 0.32117,0.62199 0.79881,0.93298 1.43301,0.93298 0.63825,0 1.11594,-0.31099 1.43302,-0.93298 0.32116,-0.62605 0.48172,-1.5631 0.48172,-2.81114 0,-1.2521 -0.16056,-2.18914 -0.48172,-2.81114 -0.31708,-0.62604 -0.79477,-0.93907 -1.43302,-0.93908 m 0,-0.975666 c 1.02039,9e-6 1.7989,0.404504 2.3355,1.213486 0.54068,0.80493 0.81102,1.97573 0.81102,3.5124 0,1.53261 -0.27034,2.70341 -0.81102,3.5124 -0.5366,0.80493 -1.31511,1.20739 -2.3355,1.20739 -1.02038,0 -1.80092,-0.40246 -2.3416,-1.20739 -0.53664,-0.80899 -0.80491,-1.97979 -0.80491,-3.5124 0,-1.53667 0.26827,-2.70747 0.80491,-3.5124 0.54068,-0.808982 1.32122,-1.213477 2.3416,-1.213486" + id="path3769" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 760.90513,103.1764 c 0.28048,-0.50408 0.61588,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84963,-0.35977 1.37815,-0.35977 0.71138,0 1.26019,0.25002 1.64642,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12208 l 0,4.12219 -1.1281,0 0,-4.08561 c 0,-0.6545 -0.11589,-1.1403 -0.34757,-1.4574 -0.23177,-0.31709 -0.58544,-0.47563 -1.06106,-0.47564 -0.58132,10e-6 -1.04073,0.19311 -1.3781,0.57931 -0.33747,0.3862 -0.50616,0.91266 -0.50616,1.57936 l 0,3.85998 -1.1281,0 0,-4.08561 c 0,-0.65857 -0.11588,-1.14437 -0.34761,-1.4574 -0.23168,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,10e-6 -1.02851,0.19514 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57327 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.2561,-0.41872 0.56304,-0.72768 0.9208,-0.92688 0.35771,-0.1992 0.78255,-0.2988 1.27447,-0.2988 0.49596,0 0.91671,0.12603 1.26226,0.37807 0.34959,0.25205 0.60776,0.61793 0.77443,1.09762" + id="path3771" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 773.07658,103.1764 c 0.28049,-0.50408 0.61589,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84964,-0.35977 1.37815,-0.35977 0.71139,0 1.26019,0.25002 1.64642,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12208 l 0,4.12219 -1.1281,0 0,-4.08561 c 0,-0.6545 -0.11588,-1.1403 -0.34756,-1.4574 -0.23178,-0.31709 -0.58545,-0.47563 -1.06107,-0.47564 -0.58131,10e-6 -1.04073,0.19311 -1.3781,0.57931 -0.33747,0.3862 -0.50615,0.91266 -0.50615,1.57936 l 0,3.85998 -1.1281,0 0,-4.08561 c 0,-0.65857 -0.11589,-1.14437 -0.34762,-1.4574 -0.23172,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,10e-6 -1.02851,0.19514 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57327 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.25611,-0.41872 0.56304,-0.72768 0.9208,-0.92688 0.35771,-0.1992 0.78255,-0.2988 1.27447,-0.2988 0.49596,0 0.91672,0.12603 1.26226,0.37807 0.34959,0.25205 0.60776,0.61793 0.77443,1.09762" + id="path3773" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 783.254,101.86535 1.12199,0 1.40253,5.32958 1.39642,-5.32958 1.32328,0 1.40248,5.32958 1.39642,-5.32958 1.12204,0 -1.78669,6.82967 -1.32323,0 -1.46961,-5.59789 -1.47571,5.59789 -1.32324,0 -1.78668,-6.82967" + id="path3775" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 794.12655,101.86535 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.658689 1.12204,0 0,1.420809 -1.12204,0 0,-1.420809" + id="path3777" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 802.08436,102.90199 0,-3.695329 1.122,0 0,9.488359 -1.122,0 0,-1.02445 c -0.23581,0.40653 -0.53457,0.70939 -0.89642,0.90859 -0.35771,0.19513 -0.78866,0.2927 -1.29274,0.2927 -0.82526,0 -1.49803,-0.32929 -2.01842,-0.98787 -0.5163,-0.65857 -0.77442,-1.52447 -0.77442,-2.59771 0,-1.07323 0.25812,-1.93913 0.77442,-2.59771 0.52039,-0.65857 1.19316,-0.98786 2.01842,-0.98786 0.50408,0 0.93503,0.0996 1.29274,0.2988 0.36185,0.19513 0.66061,0.49596 0.89642,0.90248 m -3.82342,2.38429 c 0,0.82525 0.16874,1.47367 0.50616,1.94524 0.34146,0.4675 0.809,0.70126 1.40252,0.70125 0.59353,10e-6 1.06102,-0.23375 1.40253,-0.70125 0.34146,-0.47157 0.51221,-1.11999 0.51221,-1.94524 0,-0.82524 -0.17075,-1.47163 -0.51221,-1.93914 -0.34151,-0.47156 -0.809,-0.70735 -1.40253,-0.70735 -0.59352,0 -1.06106,0.23579 -1.40252,0.70735 -0.33742,0.46751 -0.50616,1.1139 -0.50616,1.93914" + id="path3779" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 811.3593,104.99968 0,0.54881 -5.15886,0 c 0.0488,0.77241 0.28053,1.36187 0.69518,1.7684 0.41873,0.40246 1.00004,0.60369 1.74398,0.60369 0.43095,0 0.84762,-0.0529 1.25009,-0.15854 0.40653,-0.1057 0.809,-0.26425 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08948,0 -1.95335,-0.3171 -2.5916,-0.95128 -0.63416,-0.63418 -0.95128,-1.49195 -0.95128,-2.57332 0,-1.11795 0.30082,-2.00418 0.90252,-2.65869 0.6057,-0.65857 1.4208,-0.98786 2.44523,-0.98786 0.91878,0 1.6444,0.29677 2.17695,0.89029 0.53664,0.58947 0.80496,1.39236 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33333,-0.36587 -0.77645,-0.5488 -1.32934,-0.54881 -0.62608,1e-5 -1.1281,0.17685 -1.5062,0.53052 -0.37401,0.35368 -0.58944,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3781" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 813.35939,107.14614 1.28669,0 0,1.54888 -1.28669,0 0,-1.54888" + id="path3783" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 588.79755,118.32363 1.23177,0 0,9.10418 -1.23177,0 0,-9.10418" + id="path3785" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 597.7493,121.9092 c 0.28049,-0.50409 0.61589,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84964,-0.35977 1.3781,-0.35977 0.71144,0 1.26024,0.25001 1.64647,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12207 l 0,4.12219 -1.1281,0 0,-4.0856 c -4e-5,-0.65451 -0.11588,-1.14031 -0.34761,-1.4574 -0.23173,-0.31709 -0.5854,-0.47563 -1.06102,-0.47564 -0.58136,1e-5 -1.04073,0.19311 -1.37815,0.5793 -0.33742,0.38621 -0.5061,0.91266 -0.5061,1.57936 l 0,3.85998 -1.1281,0 0,-4.0856 c -5e-5,-0.65857 -0.11589,-1.14437 -0.34762,-1.4574 -0.23172,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,1e-5 -1.02851,0.19514 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57326 l 0,3.85998 -1.12815,0 0,-6.82966 1.12815,0 0,1.06104 c 0.25611,-0.41872 0.56304,-0.72768 0.92075,-0.92689 0.35776,-0.19919 0.7826,-0.29879 1.27448,-0.29879 0.49596,0 0.91671,0.12602 1.26226,0.37807 0.34963,0.25205 0.60776,0.61792 0.77447,1.09762" + id="path3787" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 607.70716,123.99469 c -0.90652,0 -1.53462,0.10367 -1.88425,0.31099 -0.34959,0.20733 -0.52438,0.56101 -0.52438,1.06104 0,0.3984 0.13007,0.71549 0.39026,0.95127 0.26424,0.23172 0.62195,0.34759 1.07324,0.34759 0.62194,0 1.11997,-0.21953 1.49398,-0.65858 0.37806,-0.44311 0.56708,-1.03054 0.56708,-1.7623 l 0,-0.25001 -1.11593,0 m 2.23797,-0.46345 0,3.89657 -1.12204,0 0,-1.03664 c -0.2561,0.41466 -0.57525,0.72159 -0.95734,0.92078 -0.38214,0.19514 -0.84968,0.2927 -1.40253,0.2927 -0.69922,0 -1.2562,-0.19513 -1.67085,-0.5854 -0.4106,-0.39433 -0.61588,-0.92078 -0.61588,-1.57936 0,-0.76833 0.2561,-1.34763 0.76832,-1.7379 0.5163,-0.39026 1.28466,-0.5854 2.30505,-0.5854 l 1.57323,0 0,-0.10976 c 0,-0.51629 -0.17075,-0.91469 -0.51221,-1.1952 -0.33742,-0.28456 -0.81309,-0.42684 -1.42691,-0.42685 -0.39026,10e-6 -0.77038,0.0468 -1.14031,0.14025 -0.36993,0.0935 -0.72567,0.23376 -1.06713,0.42076 l 0,-1.03665 c 0.41056,-0.15854 0.80896,-0.27643 1.19518,-0.35368 0.38618,-0.0813 0.76222,-0.12195 1.1281,-0.12195 0.98788,0 1.72572,0.25612 2.21355,0.76833 0.48783,0.51223 0.73177,1.2887 0.73177,2.3294" + id="path3789" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 616.75648,123.93371 c 0,-0.81305 -0.16869,-1.44317 -0.50611,-1.89035 -0.33338,-0.44718 -0.80289,-0.67077 -1.40863,-0.67078 -0.60165,1e-5 -1.07121,0.2236 -1.40863,0.67078 -0.33334,0.44718 -0.5,1.0773 -0.5,1.89035 0,0.80899 0.16666,1.43708 0.5,1.88425 0.33742,0.44718 0.80698,0.67078 1.40863,0.67078 0.60574,0 1.07525,-0.2236 1.40863,-0.67078 0.33742,-0.44717 0.50611,-1.07526 0.50611,-1.88425 m 1.12204,2.64649 c 0,1.16267 -0.25817,2.02654 -0.77443,2.59162 -0.5163,0.56914 -1.30702,0.8537 -2.37213,0.85371 -0.39431,-1e-5 -0.7663,-0.0305 -1.11589,-0.0915 -0.34963,-0.0569 -0.68907,-0.14635 -1.01836,-0.26831 l 0,-1.09153 c 0.32929,0.17887 0.6545,0.311 0.97566,0.39637 0.32117,0.0854 0.6484,0.12805 0.98178,0.12805 0.73581,0 1.28664,-0.1931 1.65252,-0.5793 0.36589,-0.38214 0.54881,-0.96143 0.54881,-1.7379 l 0,-0.55491 c -0.23173,0.40246 -0.52847,0.70329 -0.89027,0.90249 -0.36184,0.1992 -0.79477,0.29879 -1.29885,0.29879 -0.83747,0 -1.51231,-0.31912 -2.02452,-0.95737 -0.51221,-0.63824 -0.76837,-1.48382 -0.76837,-2.53673 0,-1.05697 0.25616,-1.90458 0.76837,-2.54283 0.51221,-0.63825 1.18705,-0.95737 2.02452,-0.95737 0.50408,0 0.93701,0.0996 1.29885,0.29879 0.3618,0.19921 0.65854,0.50004 0.89027,0.90249 l 0,-1.03664 1.12204,0 0,5.98205" + id="path3791" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 626.03142,123.73248 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28048,1.36187 0.69513,1.7684 0.41873,0.40246 1.00005,0.60369 1.74403,0.60369 0.4309,0 0.84762,-0.0528 1.25005,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17075 -0.8151,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08948,0 -1.9534,-0.31709 -2.59164,-0.95127 -0.63416,-0.63418 -0.95124,-1.49195 -0.95124,-2.57332 0,-1.11795 0.30082,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98786 2.44527,-0.98786 0.91873,0 1.6444,0.29677 2.17695,0.89029 0.5366,0.58947 0.80492,1.39236 0.80492,2.40868 m -1.122,-0.32929 c -0.008,-0.61385 -0.18094,-1.10372 -0.51836,-1.4696 -0.33334,-0.36587 -0.77645,-0.5488 -1.32934,-0.54881 -0.62604,10e-6 -1.1281,0.17684 -1.50616,0.53052 -0.37401,0.35368 -0.58948,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3793" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 632.22692,120.79938 0,1.06104 c -0.31712,-0.16261 -0.64642,-0.28457 -0.98788,-0.36588 -0.3415,-0.0813 -0.69518,-0.12195 -1.06102,-0.12196 -0.55698,1e-5 -0.97566,0.0854 -1.2562,0.25611 -0.27644,0.17075 -0.41464,0.42686 -0.41464,0.76834 0,0.26019 0.0996,0.46548 0.2988,0.61589 0.19918,0.14636 0.59964,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79679,0.17074 1.36185,0.41263 1.69523,0.72565 0.33742,0.30897 0.5061,0.74192 0.5061,1.29886 0,0.63418 -0.25202,1.13625 -0.7561,1.50618 -0.50005,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36589,0 -0.74803,-0.0366 -1.14642,-0.10976 -0.39431,-0.0691 -0.81102,-0.1748 -1.25005,-0.31709 l 0,-1.15861 c 0.41465,0.21547 0.82319,0.37808 1.22567,0.48784 0.40248,0.1057 0.80087,0.15855 1.19518,0.15855 0.52851,0 0.93503,-0.0894 1.2196,-0.26831 0.28458,-0.18294 0.42686,-0.43905 0.42686,-0.76834 0,-0.30489 -0.10367,-0.53865 -0.31102,-0.70126 -0.20326,-0.16261 -0.65248,-0.31912 -1.34761,-0.46954 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19724,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.46345,-0.72158 -0.46345,-1.25007 0,-0.64231 0.22769,-1.13827 0.68297,-1.48789 0.45532,-0.34961 1.1017,-0.52442 1.93916,-0.52442 0.41465,0 0.80492,0.0305 1.1708,0.0915 0.36584,0.061 0.70326,0.15246 1.01226,0.27441" + id="path3795" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 641.05668,117.95165 c -0.54476,0.93503 -0.94922,1.85988 -1.2135,2.77456 -0.26423,0.91469 -0.39632,1.84157 -0.39632,2.78065 0,0.93908 0.13209,1.87002 0.39632,2.79284 0.26832,0.91875 0.67282,1.8436 1.2135,2.77455 l -0.97566,0 c -0.60978,-0.95534 -1.06713,-1.89442 -1.37204,-2.81724 -0.30083,-0.92281 -0.45124,-1.83953 -0.45124,-2.75015 0,-0.90656 0.15041,-1.81921 0.45124,-2.73797 0.30082,-0.91875 0.75817,-1.85782 1.37204,-2.81724 l 0.97566,0" + id="path3797" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 643.23974,120.59815 1.122,0 0,6.95162 c 0,0.86997 -0.16667,1.50009 -0.50001,1.89035 -0.32929,0.39027 -0.86184,0.5854 -1.59765,0.58541 l -0.42686,0 0,-0.95128 0.2988,0 c 0.42686,0 0.7175,-0.0996 0.872,-0.2988 0.15449,-0.19513 0.23172,-0.60369 0.23172,-1.22568 l 0,-6.95162 m 0,-2.65869 1.122,0 0,1.42081 -1.122,0 0,-1.42081" + id="path3799" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 647.78878,126.40336 0,3.62217 -1.1281,0 0,-9.42738 1.1281,0 0,1.03664 c 0.23577,-0.40652 0.53255,-0.70735 0.89031,-0.90249 0.3618,-0.19919 0.7927,-0.29879 1.29275,-0.29879 0.82929,0 1.50211,0.32929 2.01841,0.98786 0.52034,0.65858 0.78054,1.52448 0.78054,2.59771 0,1.07324 -0.2602,1.93914 -0.78054,2.59771 -0.5163,0.65858 -1.18912,0.98786 -2.01841,0.98786 -0.50005,0 -0.93095,-0.0976 -1.29275,-0.2927 -0.35776,-0.19919 -0.65454,-0.50206 -0.89031,-0.90859 m 3.81731,-2.38428 c 0,-0.82525 -0.17075,-1.47162 -0.51226,-1.93914 -0.33742,-0.47156 -0.80289,-0.70735 -1.39642,-0.70736 -0.59352,1e-5 -1.06102,0.2358 -1.40248,0.70736 -0.33742,0.46752 -0.50615,1.11389 -0.50615,1.93914 0,0.82525 0.16873,1.47366 0.50615,1.94523 0.34146,0.46751 0.80896,0.70127 1.40248,0.70127 0.59353,0 1.059,-0.23376 1.39642,-0.70127 0.34151,-0.47157 0.51226,-1.11998 0.51226,-1.94523" + id="path3801" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 659.12483,123.93371 c -4e-5,-0.81305 -0.16873,-1.44317 -0.50615,-1.89035 -0.33333,-0.44718 -0.80289,-0.67077 -1.40863,-0.67078 -0.60166,1e-5 -1.07117,0.2236 -1.40859,0.67078 -0.33338,0.44718 -0.50005,1.0773 -0.50005,1.89035 0,0.80899 0.16667,1.43708 0.50005,1.88425 0.33742,0.44718 0.80693,0.67078 1.40859,0.67078 0.60574,0 1.0753,-0.2236 1.40863,-0.67078 0.33742,-0.44717 0.50611,-1.07526 0.50615,-1.88425 m 1.122,2.64649 c 0,1.16267 -0.25813,2.02654 -0.77443,2.59162 -0.5163,0.56914 -1.30698,0.8537 -2.37209,0.85371 -0.39435,-1e-5 -0.7663,-0.0305 -1.11593,-0.0915 -0.34963,-0.0569 -0.68907,-0.14635 -1.01837,-0.26831 l 0,-1.09153 c 0.3293,0.17887 0.65455,0.311 0.97567,0.39637 0.32117,0.0854 0.64844,0.12805 0.98177,0.12805 0.73582,0 1.28669,-0.1931 1.65253,-0.5793 0.36589,-0.38214 0.54881,-0.96143 0.54885,-1.7379 l 0,-0.55491 c -0.23172,0.40246 -0.52851,0.70329 -0.89031,0.90249 -0.3618,0.1992 -0.79477,0.29879 -1.29885,0.29879 -0.83747,0 -1.51231,-0.31912 -2.02452,-0.95737 -0.51222,-0.63824 -0.76832,-1.48382 -0.76832,-2.53673 0,-1.05697 0.2561,-1.90458 0.76832,-2.54283 0.51221,-0.63825 1.18705,-0.95737 2.02452,-0.95737 0.50408,0 0.93705,0.0996 1.29885,0.29879 0.3618,0.19921 0.65859,0.50004 0.89031,0.90249 l 0,-1.03664 1.122,0 0,5.98205" + id="path3803" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 662.38108,117.95165 0.97567,0 c 0.60982,0.95942 1.0651,1.89849 1.36593,2.81724 0.30491,0.91876 0.45735,1.83141 0.45735,2.73797 0,0.91062 -0.15244,1.82734 -0.45735,2.75015 -0.30083,0.92282 -0.75611,1.8619 -1.36593,2.81724 l -0.97567,0 c 0.54068,-0.93095 0.94316,-1.8558 1.20739,-2.77455 0.26832,-0.92282 0.40248,-1.85376 0.40248,-2.79284 0,-0.93908 -0.13416,-1.86596 -0.40248,-2.78065 -0.26423,-0.91468 -0.66671,-1.83953 -1.20739,-2.77456" + id="path3805" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 667.72287,125.87894 1.28668,0 0,1.54887 -1.28668,0 0,-1.54887 m 0,-4.90882 1.28668,0 0,1.54887 -1.28668,0 0,-1.54887" + id="path3807" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 682.49813,119.02489 0,1.29885 c -0.41469,-0.38619 -0.85781,-0.67483 -1.32934,-0.8659 -0.46754,-0.19106 -0.96552,-0.28659 -1.49399,-0.2866 -1.04072,1e-5 -1.83751,0.31913 -2.3904,0.95737 -0.5529,0.63419 -0.8293,1.55294 -0.8293,2.75626 0,1.19926 0.2764,2.11801 0.8293,2.75626 0.55289,0.63418 1.34968,0.95127 2.3904,0.95127 0.52847,0 1.02645,-0.0955 1.49399,-0.2866 0.47153,-0.19107 0.91465,-0.4797 1.32934,-0.86591 l 0,1.28666 c -0.43095,0.2927 -0.88829,0.51223 -1.37204,0.65858 -0.47971,0.14635 -0.98788,0.21952 -1.52447,0.21952 -1.37815,0 -2.46355,-0.42075 -3.2563,-1.26226 -0.79274,-0.84558 -1.18911,-1.99809 -1.18907,-3.45752 -4e-5,-1.4635 0.39633,-2.616 1.18907,-3.45752 0.79275,-0.84557 1.87815,-1.26836 3.2563,-1.26837 0.54472,1e-5 1.05698,0.0732 1.53668,0.21953 0.48375,0.14229 0.93701,0.35775 1.35983,0.64638" + id="path3809" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 687.01058,121.38478 c -0.60166,10e-6 -1.07732,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52443,1.10983 -0.52443,1.92694 0,0.81712 0.17278,1.46147 0.51832,1.93304 0.34964,0.46751 0.82728,0.70126 1.43302,0.70126 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11388 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92084 -0.34959,-0.47564 -0.82319,-0.71345 -1.4208,-0.71346 m 0,-0.95127 c 0.97566,0 1.74196,0.31709 2.2989,0.95127 0.55693,0.63419 0.83544,1.51229 0.83544,2.6343 0,1.11795 -0.27851,1.99605 -0.83544,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97976,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82934,-1.51635 -0.82934,-2.6343 0,-1.12201 0.27645,-2.00011 0.82934,-2.6343 0.55693,-0.63418 1.32525,-0.95127 2.30501,-0.95127" + id="path3811" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 697.67583,123.30562 0,4.12219 -1.12199,0 0,-4.0856 c 0,-0.64637 -0.12604,-1.13014 -0.3781,-1.4513 -0.25202,-0.32115 -0.63012,-0.48173 -1.13421,-0.48174 -0.60574,1e-5 -1.08338,0.19311 -1.43301,0.5793 -0.34959,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06104 c 0.26832,-0.41059 0.58338,-0.71752 0.94518,-0.92079 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.30489 0.78462,0 1.37815,0.24392 1.78063,0.73175 0.40243,0.48377 0.60367,1.19722 0.60367,2.14036" + id="path3813" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 699.12105,120.59815 1.18908,0 2.1343,5.73204 2.13425,-5.73204 1.18907,0 -2.56111,6.82966 -1.52447,0 -2.56112,-6.82966" + id="path3815" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 713.15844,123.73248 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28049,1.36187 0.69513,1.7684 0.41874,0.40246 1.0001,0.60369 1.74404,0.60369 0.4309,0 0.84761,-0.0528 1.25004,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17075 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.85166,0.13415 -1.28664,0.13415 -1.08949,0 -1.9534,-0.31709 -2.59165,-0.95127 -0.63416,-0.63418 -0.95124,-1.49195 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98786 2.44527,-0.98786 0.91874,0 1.6444,0.29677 2.17696,0.89029 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.18095,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.7765,-0.5488 -1.32939,-0.54881 -0.62603,10e-6 -1.1281,0.17684 -1.50615,0.53052 -0.37402,0.35368 -0.58949,0.85168 -0.64638,1.49399 l 4.00024,-0.006" + id="path3817" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 718.95757,121.64699 c -0.12603,-0.0732 -0.26428,-0.12602 -0.41464,-0.15855 -0.14638,-0.0366 -0.309,-0.0549 -0.48784,-0.0549 -0.6342,1e-5 -1.12204,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.50615,1.00209 -0.50615,1.77449 l 0,3.59777 -1.1281,0 0,-6.82966 1.1281,0 0,1.06104 c 0.23577,-0.41466 0.5427,-0.72158 0.9208,-0.92079 0.37805,-0.20326 0.83742,-0.30489 1.3781,-0.30489 0.0773,0 0.16263,0.006 0.25615,0.0183 0.0935,0.008 0.19716,0.0224 0.31098,0.0427 l 0.006,1.15251" + id="path3819" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 721.25647,118.65901 0,1.93914 2.31112,0 0,0.872 -2.31112,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07324 0.1545,0.15855 0.46548,0.23782 0.93302,0.23782 l 1.15248,0 0,0.93907 -1.15248,0 c -0.86594,0 -1.46355,-0.16058 -1.7928,-0.48173 -0.32929,-0.32522 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3821" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 730.13504,118.65901 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07324 0.1545,0.15855 0.46547,0.23782 0.93296,0.23782 l 1.15253,0 0,0.93907 -1.15253,0 c -0.86588,0 -1.46349,-0.16058 -1.79274,-0.48173 -0.3293,-0.32522 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82324,0 0,-0.872 0.82324,0 0,-1.93914 1.1281,0" + id="path3823" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 736.57444,121.38478 c -0.60166,10e-6 -1.07728,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52443,1.10983 -0.52443,1.92694 0,0.81712 0.17278,1.46147 0.51832,1.93304 0.34964,0.46751 0.82728,0.70126 1.43302,0.70126 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11388 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92084 -0.34959,-0.47564 -0.82319,-0.71345 -1.4208,-0.71346 m 0,-0.95127 c 0.97566,0 1.74196,0.31709 2.2989,0.95127 0.55698,0.63419 0.83544,1.51229 0.83544,2.6343 0,1.11795 -0.27846,1.99605 -0.83544,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97971,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12201 0.2764,-2.00011 0.82929,-2.6343 0.55693,-0.63418 1.3253,-0.95127 2.30501,-0.95127" + id="path3825" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 744.73344,120.59815 1.18912,0 2.13426,5.73204 2.1343,-5.73204 1.18907,0 -2.56111,6.82966 -1.52448,0 -2.56116,-6.82966" + id="path3827" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 758.77087,123.73248 0,0.54881 -5.15886,0 c 0.0488,0.7724 0.28053,1.36187 0.69518,1.7684 0.41873,0.40246 1.00005,0.60369 1.74399,0.60369 0.43094,0 0.84761,-0.0528 1.25009,-0.15855 0.40652,-0.1057 0.80895,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17075 -0.81511,0.30083 -1.23788,0.39027 -0.42282,0.0894 -0.8517,0.13415 -1.28668,0.13415 -1.08949,0 -1.95336,-0.31709 -2.5916,-0.95127 -0.63421,-0.63418 -0.95129,-1.49195 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.42084,-0.98786 2.44527,-0.98786 0.91878,0 1.6444,0.29677 2.17695,0.89029 0.53664,0.58947 0.80492,1.39236 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33333,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62607,10e-6 -1.1281,0.17684 -1.50619,0.53052 -0.37402,0.35368 -0.58945,0.85168 -0.64638,1.49399 l 4.00023,-0.006" + id="path3829" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 765.52735,120.86036 0,1.04884 c -0.31712,-0.1748 -0.63622,-0.30489 -0.95739,-0.39027 -0.31708,-0.0894 -0.63825,-0.13414 -0.96345,-0.13415 -0.72769,10e-6 -1.29275,0.23172 -1.69523,0.69516 -0.40248,0.45938 -0.60367,1.10576 -0.60367,1.93914 0,0.83338 0.20119,1.48179 0.60367,1.94523 0.40248,0.45938 0.96754,0.68907 1.69523,0.68907 0.3252,0 0.64637,-0.0427 0.96345,-0.12806 0.32117,-0.0894 0.64027,-0.22155 0.95739,-0.39636 l 0,1.03664 c -0.31304,0.14635 -0.63824,0.25612 -0.97566,0.32929 -0.33338,0.0732 -0.68908,0.10976 -1.06713,0.10976 -1.02851,0 -1.84564,-0.32319 -2.45138,-0.96956 -0.60574,-0.64638 -0.90859,-1.51838 -0.90859,-2.61601 0,-1.11388 0.30492,-1.98995 0.9147,-2.6282 0.61386,-0.63825 1.4533,-0.95737 2.51841,-0.95737 0.34555,0 0.68297,0.0366 1.01226,0.10976 0.32929,0.0691 0.64844,0.17481 0.95739,0.31709" + id="path3831" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 768.60068,118.65901 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22567,1.07324 0.15445,0.15855 0.46542,0.23782 0.93296,0.23782 l 1.15248,0 0,0.93907 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32929,-0.32522 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3833" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 775.04013,121.38478 c -0.6017,10e-6 -1.07732,0.23579 -1.42696,0.70736 -0.34958,0.46751 -0.52442,1.10983 -0.52438,1.92694 -4e-5,0.81712 0.17278,1.46147 0.51832,1.93304 0.34959,0.46751 0.82728,0.70126 1.43302,0.70126 0.59756,0 1.07116,-0.23579 1.4208,-0.70736 0.34958,-0.47157 0.52442,-1.11388 0.52442,-1.92694 0,-0.80899 -0.17484,-1.44927 -0.52442,-1.92084 -0.34964,-0.47564 -0.82324,-0.71345 -1.4208,-0.71346 m 0,-0.95127 c 0.97562,0 1.74196,0.31709 2.2989,0.95127 0.55693,0.63419 0.8354,1.51229 0.8354,2.6343 0,1.11795 -0.27847,1.99605 -0.8354,2.6343 -0.55694,0.63418 -1.32328,0.95127 -2.2989,0.95127 -0.97976,0 -1.74808,-0.31709 -2.30506,-0.95127 -0.55284,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12201 0.27645,-2.00011 0.82929,-2.6343 0.55698,-0.63418 1.3253,-0.95127 2.30506,-0.95127" + id="path3835" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 783.98573,121.64699 c -0.12604,-0.0732 -0.26424,-0.12602 -0.41465,-0.15855 -0.14633,-0.0366 -0.30896,-0.0549 -0.48783,-0.0549 -0.63417,1e-5 -1.122,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.50611,1.00209 -0.50611,1.77449 l 0,3.59777 -1.12815,0 0,-6.82966 1.12815,0 0,1.06104 c 0.23577,-0.41466 0.5427,-0.72158 0.92075,-0.92079 0.3781,-0.20326 0.83747,-0.30489 1.37815,-0.30489 0.0772,0 0.16262,0.006 0.2561,0.0183 0.0935,0.008 0.19716,0.0224 0.31102,0.0427 l 0.006,1.15251" + id="path3837" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 789.03481,124.73254 0,-4.13439 1.12204,0 0,4.0917 c -5e-5,0.64638 0.12599,1.13218 0.37805,1.4574 0.25202,0.32116 0.63012,0.48174 1.13421,0.48174 0.60574,0 1.08338,-0.1931 1.43301,-0.5793 0.35368,-0.3862 0.53054,-0.91266 0.53054,-1.57936 l 0,-3.87218 1.12199,0 0,6.82966 -1.12199,0 0,-1.04884 c -0.27241,0.41466 -0.58949,0.72362 -0.95129,0.92689 -0.35776,0.19919 -0.77443,0.29879 -1.25009,0.29879 -0.78458,0 -1.38017,-0.24391 -1.78669,-0.73175 -0.40652,-0.48783 -0.60978,-1.20128 -0.60978,-2.14036" + id="path3839" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 801.43188,120.79938 0,1.06104 c -0.31712,-0.16261 -0.64637,-0.28457 -0.98788,-0.36588 -0.34146,-0.0813 -0.69513,-0.12195 -1.06102,-0.12196 -0.55693,1e-5 -0.97566,0.0854 -1.2562,0.25611 -0.2764,0.17075 -0.41464,0.42686 -0.41464,0.76834 0,0.26019 0.0996,0.46548 0.2988,0.61589 0.19922,0.14636 0.59964,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79679,0.17074 1.36189,0.41263 1.69523,0.72565 0.33742,0.30897 0.5061,0.74192 0.50615,1.29886 -5e-5,0.63418 -0.25207,1.13625 -0.75615,1.50618 -0.50005,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36584,0 -0.74798,-0.0366 -1.14638,-0.10976 -0.39435,-0.0691 -0.81102,-0.1748 -1.25009,-0.31709 l 0,-1.15861 c 0.41465,0.21547 0.82323,0.37808 1.22567,0.48784 0.40248,0.1057 0.80087,0.15855 1.19522,0.15855 0.52847,0 0.93499,-0.0894 1.21956,-0.26831 0.28458,-0.18294 0.42686,-0.43905 0.42686,-0.76834 0,-0.30489 -0.10367,-0.53865 -0.31097,-0.70126 -0.20331,-0.16261 -0.65248,-0.31912 -1.34766,-0.46954 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19724,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.4634,-0.72158 -0.4634,-1.25007 0,-0.64231 0.22764,-1.13827 0.68296,-1.48789 0.45528,-0.34961 1.10166,-0.52442 1.93912,-0.52442 0.41465,0 0.80492,0.0305 1.1708,0.0915 0.36589,0.061 0.70331,0.15246 1.01226,0.27441" + id="path3841" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 803.59056,120.59815 1.122,0 0,6.82966 -1.122,0 0,-6.82966 m 0,-2.65869 1.122,0 0,1.42081 -1.122,0 0,-1.42081" + id="path3843" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 812.7313,123.30562 0,4.12219 -1.122,0 0,-4.0856 c 0,-0.64637 -0.12603,-1.13014 -0.3781,-1.4513 -0.25202,-0.32115 -0.63012,-0.48173 -1.1342,-0.48174 -0.6057,1e-5 -1.08338,0.19311 -1.43302,0.5793 -0.34958,0.38621 -0.52442,0.91266 -0.52438,1.57936 l 0,3.85998 -1.12814,0 0,-6.82966 1.12814,0 0,1.06104 c 0.26828,-0.41059 0.58334,-0.71752 0.94514,-0.92079 0.36588,-0.20326 0.78664,-0.30489 1.2623,-0.30489 0.78458,0 1.3781,0.24392 1.78058,0.73175 0.40244,0.48377 0.60368,1.19722 0.60368,2.14036" + id="path3845" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 819.47561,123.93371 c 0,-0.81305 -0.16874,-1.44317 -0.50611,-1.89035 -0.33338,-0.44718 -0.80294,-0.67077 -1.40863,-0.67078 -0.60166,1e-5 -1.07122,0.2236 -1.40864,0.67078 -0.33333,0.44718 -0.5,1.0773 -0.5,1.89035 0,0.80899 0.16667,1.43708 0.5,1.88425 0.33742,0.44718 0.80698,0.67078 1.40864,0.67078 0.60569,0 1.07525,-0.2236 1.40863,-0.67078 0.33737,-0.44717 0.50611,-1.07526 0.50611,-1.88425 m 1.12199,2.64649 c 0,1.16267 -0.25813,2.02654 -0.77443,2.59162 -0.5163,0.56914 -1.30698,0.8537 -2.37208,0.85371 -0.39431,-1e-5 -0.7663,-0.0305 -1.11589,-0.0915 -0.34963,-0.0569 -0.68907,-0.14635 -1.01837,-0.26831 l 0,-1.09153 c 0.3293,0.17887 0.6545,0.311 0.97567,0.39637 0.32117,0.0854 0.64839,0.12805 0.98177,0.12805 0.73582,0 1.28664,-0.1931 1.65253,-0.5793 0.36584,-0.38214 0.54881,-0.96143 0.54881,-1.7379 l 0,-0.55491 c -0.23173,0.40246 -0.52852,0.70329 -0.89032,0.90249 -0.3618,0.1992 -0.79476,0.29879 -1.29885,0.29879 -0.83742,0 -1.51226,-0.31912 -2.02447,-0.95737 -0.51226,-0.63824 -0.76837,-1.48382 -0.76837,-2.53673 0,-1.05697 0.25611,-1.90458 0.76837,-2.54283 0.51221,-0.63825 1.18705,-0.95737 2.02447,-0.95737 0.50409,0 0.93705,0.0996 1.29885,0.29879 0.3618,0.19921 0.65859,0.50004 0.89032,0.90249 l 0,-1.03664 1.12199,0 0,5.98205" + id="path3847" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 828.05537,121.3238 -1.28664,0 0,-1.05494 1.00004,-1.94523 0.78664,0 -0.50004,1.94523 0,1.05494" + id="path3849" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 832.141,119.33588 0,3.42093 1.54885,0 c 0.57324,0 1.01635,-0.14838 1.32934,-0.44515 0.31304,-0.29676 0.46956,-0.71954 0.46956,-1.26837 0,-0.54473 -0.15652,-0.96549 -0.46956,-1.26226 -0.31299,-0.29676 -0.7561,-0.44514 -1.32934,-0.44515 l -1.54885,0 m -1.23177,-1.01225 2.78062,0 c 1.02039,1e-5 1.79078,0.23172 2.31112,0.69516 0.52442,0.45938 0.78664,1.13422 0.78664,2.0245 0,0.89844 -0.26222,1.57734 -0.78664,2.03671 -0.52034,0.45938 -1.29073,0.68907 -2.31112,0.68906 l -1.54885,0 0,3.65875 -1.23177,0 0,-9.10418" + id="path3851" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 840.95248,123.99469 c -0.90656,0 -1.53466,0.10367 -1.88425,0.31099 -0.34963,0.20733 -0.52443,0.56101 -0.52443,1.06104 0,0.3984 0.13008,0.71549 0.39027,0.95127 0.26423,0.23172 0.62195,0.34759 1.07323,0.34759 0.62195,0 1.11998,-0.21953 1.49399,-0.65858 0.37805,-0.44311 0.56708,-1.03054 0.56708,-1.7623 l 0,-0.25001 -1.11589,0 m 2.23793,-0.46345 0,3.89657 -1.12204,0 0,-1.03664 c -0.25611,0.41466 -0.57521,0.72159 -0.95735,0.92078 -0.38214,0.19514 -0.84967,0.2927 -1.40252,0.2927 -0.69922,0 -1.2562,-0.19513 -1.67085,-0.5854 -0.41056,-0.39433 -0.61588,-0.92078 -0.61588,-1.57936 0,-0.76833 0.2561,-1.34763 0.76836,-1.7379 0.51626,-0.39026 1.28462,-0.5854 2.30501,-0.5854 l 1.57323,0 0,-0.10976 c 0,-0.51629 -0.17075,-0.91469 -0.51221,-1.1952 -0.33742,-0.28456 -0.81304,-0.42684 -1.42691,-0.42685 -0.39027,10e-6 -0.77038,0.0468 -1.14031,0.14025 -0.36993,0.0935 -0.72567,0.23376 -1.06713,0.42076 l 0,-1.03665 c 0.41056,-0.15854 0.809,-0.27643 1.19518,-0.35368 0.38618,-0.0813 0.76226,-0.12195 1.1281,-0.12195 0.98788,0 1.72571,0.25612 2.21355,0.76833 0.48783,0.51223 0.73177,1.2887 0.73177,2.3294" + id="path3853" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 846.62962,118.65901 0,1.93914 2.31112,0 0,0.872 -2.31112,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07324 0.1545,0.15855 0.46548,0.23782 0.93302,0.23782 l 1.15248,0 0,0.93907 -1.15248,0 c -0.86594,0 -1.46355,-0.16058 -1.7928,-0.48173 -0.32929,-0.32522 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3855" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 856.0997,123.30562 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64637 -0.12604,-1.13014 -0.37806,-1.4513 -0.25206,-0.32115 -0.63012,-0.48173 -1.1342,-0.48174 -0.60574,1e-5 -1.08343,0.19311 -1.43302,0.5793 -0.34963,0.38621 -0.52442,0.91266 -0.52442,1.57936 l 0,3.85998 -1.1281,0 0,-9.48835 1.1281,0 0,3.71973 c 0.26832,-0.41059 0.58338,-0.71752 0.94518,-0.92079 0.36588,-0.20326 0.78664,-0.30489 1.26226,-0.30489 0.78457,0 1.37814,0.24392 1.78058,0.73175 0.40248,0.48377 0.60372,1.19722 0.60372,2.14036" + id="path3857" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 862.47202,121.28111 0,-1.10982 7.81754,2.83554 0,1.01225 -7.81754,2.83553 0,-1.10982 6.28085,-2.22574 -6.28085,-2.23794" + id="path3859" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 875.55205,118.32363 7.70166,0 0,1.03664 -3.23186,0 0,8.06754 -1.23788,0 0,-8.06754 -3.23192,0 0,-1.03664" + id="path3861" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 886.54049,121.64699 c -0.12603,-0.0732 -0.26423,-0.12602 -0.41464,-0.15855 -0.14638,-0.0366 -0.30896,-0.0549 -0.48784,-0.0549 -0.6342,1e-5 -1.12204,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.50615,1.00209 -0.50615,1.77449 l 0,3.59777 -1.1281,0 0,-6.82966 1.1281,0 0,1.06104 c 0.23581,-0.41466 0.54275,-0.72158 0.9208,-0.92079 0.37805,-0.20326 0.83747,-0.30489 1.37815,-0.30489 0.0772,0 0.16258,0.006 0.2561,0.0183 0.0935,0.008 0.19716,0.0224 0.31098,0.0427 l 0.006,1.15251" + id="path3863" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 890.84564,123.99469 c -0.90657,0 -1.53467,0.10367 -1.88425,0.31099 -0.34964,0.20733 -0.52443,0.56101 -0.52443,1.06104 0,0.3984 0.13007,0.71549 0.39027,0.95127 0.26423,0.23172 0.62199,0.34759 1.07323,0.34759 0.62199,0 1.11997,-0.21953 1.49399,-0.65858 0.37805,-0.44311 0.56712,-1.03054 0.56712,-1.7623 l 0,-0.25001 -1.11593,0 m 2.23792,-0.46345 0,3.89657 -1.12199,0 0,-1.03664 c -0.25615,0.41466 -0.57525,0.72159 -0.95739,0.92078 -0.38214,0.19514 -0.84963,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19513 -1.6708,-0.5854 -0.4106,-0.39433 -0.61588,-0.92078 -0.61588,-1.57936 0,-0.76833 0.2561,-1.34763 0.76832,-1.7379 0.5163,-0.39026 1.28462,-0.5854 2.305,-0.5854 l 1.57328,0 0,-0.10976 c 0,-0.51629 -0.17075,-0.91469 -0.51226,-1.1952 -0.33742,-0.28456 -0.81304,-0.42684 -1.4269,-0.42685 -0.39027,10e-6 -0.77034,0.0468 -1.14032,0.14025 -0.36992,0.0935 -0.72562,0.23376 -1.06712,0.42076 l 0,-1.03665 c 0.4106,-0.15854 0.809,-0.27643 1.19518,-0.35368 0.38622,-0.0813 0.76226,-0.12195 1.12814,-0.12195 0.98784,0 1.72571,0.25612 2.21355,0.76833 0.48783,0.51223 0.73172,1.2887 0.73172,2.3294" + id="path3865" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 900.31566,120.86036 0,1.04884 c -0.31708,-0.1748 -0.63618,-0.30489 -0.95734,-0.39027 -0.31708,-0.0894 -0.63825,-0.13414 -0.9635,-0.13415 -0.72769,10e-6 -1.29275,0.23172 -1.69518,0.69516 -0.40248,0.45938 -0.60372,1.10576 -0.60372,1.93914 0,0.83338 0.20124,1.48179 0.60372,1.94523 0.40243,0.45938 0.96749,0.68907 1.69518,0.68907 0.32525,0 0.64642,-0.0427 0.9635,-0.12806 0.32116,-0.0894 0.64026,-0.22155 0.95734,-0.39636 l 0,1.03664 c -0.31299,0.14635 -0.63824,0.25612 -0.97566,0.32929 -0.33334,0.0732 -0.68903,0.10976 -1.06713,0.10976 -1.02851,0 -1.84564,-0.32319 -2.45133,-0.96956 -0.60574,-0.64638 -0.90859,-1.51838 -0.90859,-2.61601 0,-1.11388 0.30487,-1.98995 0.91465,-2.6282 0.61386,-0.63825 1.45335,-0.95737 2.51846,-0.95737 0.34554,0 0.68296,0.0366 1.01226,0.10976 0.32929,0.0691 0.64839,0.17481 0.95734,0.31709" + id="path3867" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 908.12104,123.73248 0,0.54881 -5.15886,0 c 0.0488,0.7724 0.28048,1.36187 0.69518,1.7684 0.41873,0.40246 1.00004,0.60369 1.74398,0.60369 0.4309,0 0.84762,-0.0528 1.2501,-0.15855 0.40652,-0.1057 0.80895,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17075 -0.81511,0.30083 -1.23788,0.39027 -0.42282,0.0894 -0.8517,0.13415 -1.28669,0.13415 -1.08948,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63418 -0.95128,-1.49195 -0.95128,-2.57332 0,-1.11795 0.30082,-2.00418 0.90248,-2.65869 0.60574,-0.65857 1.42084,-0.98786 2.44527,-0.98786 0.91878,0 1.6444,0.29677 2.17695,0.89029 0.53664,0.58947 0.80492,1.39236 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62608,10e-6 -1.12814,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58944,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3869" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 915.21898,123.08 0,3.33556 1.97572,0 c 0.66267,0 1.15252,-0.13619 1.4696,-0.40856 0.32117,-0.27644 0.48173,-0.69719 0.48173,-1.26227 0,-0.56913 -0.16056,-0.98786 -0.48173,-1.25617 -0.31708,-0.27237 -0.80693,-0.40856 -1.4696,-0.40856 l -1.97572,0 m 0,-3.74412 0,2.74406 1.82328,0 c 0.60166,1e-5 1.04886,-0.11179 1.34156,-0.33538 0.29674,-0.22765 0.44513,-0.5732 0.44513,-1.03665 0,-0.45937 -0.14839,-0.80289 -0.44513,-1.03055 -0.2927,-0.22764 -0.7399,-0.34147 -1.34156,-0.34148 l -1.82328,0 m -1.23177,-1.01225 3.14651,0 c 0.93908,1e-5 1.66272,0.19514 2.1709,0.5854 0.50812,0.39027 0.76221,0.94518 0.76221,1.66473 0,0.55695 -0.13007,1.00006 -0.39027,1.32934 -0.26019,0.3293 -0.64233,0.53459 -1.14642,0.61589 0.60574,0.1301 1.07526,0.40247 1.40864,0.81712 0.33742,0.4106 0.5061,0.92486 0.5061,1.54278 0,0.81305 -0.27644,1.44114 -0.82929,1.88425 -0.55289,0.44312 -1.33953,0.66467 -2.35987,0.66467 l -3.26851,0 0,-9.10418" + id="path3871" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 922.49993,120.59815 1.122,0 0,6.82966 -1.122,0 0,-6.82966 m 0,-2.65869 1.122,0 0,1.42081 -1.122,0 0,-1.42081" + id="path3873" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 927.07335,118.65901 0,1.93914 2.31107,0 0,0.872 -2.31107,0 0,3.70753 c -4e-5,0.55695 0.0752,0.91469 0.22562,1.07324 0.15446,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15248,0 0,0.93907 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32522 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82319,0 0,-0.872 0.82319,0 0,-1.93914 1.12814,0" + id="path3875" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 936.18365,121.9092 c 0.28048,-0.50409 0.61588,-0.87606 1.00615,-1.11592 0.39027,-0.23984 0.84963,-0.35977 1.3781,-0.35977 0.71143,0 1.26024,0.25001 1.64647,0.75004 0.38618,0.49597 0.57929,1.20333 0.57929,2.12207 l 0,4.12219 -1.1281,0 0,-4.0856 c 0,-0.65451 -0.11589,-1.14031 -0.34761,-1.4574 -0.23173,-0.31709 -0.5854,-0.47563 -1.06102,-0.47564 -0.58136,1e-5 -1.04073,0.19311 -1.37815,0.5793 -0.33742,0.38621 -0.50611,0.91266 -0.50611,1.57936 l 0,3.85998 -1.1281,0 0,-4.0856 c 0,-0.65857 -0.11588,-1.14437 -0.34761,-1.4574 -0.23173,-0.31709 -0.58944,-0.47563 -1.07323,-0.47564 -0.57319,1e-5 -1.02852,0.19514 -1.36594,0.5854 -0.33742,0.38621 -0.5061,0.91063 -0.5061,1.57326 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06104 c 0.2561,-0.41872 0.56304,-0.72768 0.9208,-0.92689 0.35771,-0.19919 0.78255,-0.29879 1.27442,-0.29879 0.49596,0 0.91672,0.12602 1.26231,0.37807 0.34959,0.25205 0.60771,0.61792 0.77443,1.09762" + id="path3877" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 946.14151,123.99469 c -0.90657,0 -1.53462,0.10367 -1.88426,0.31099 -0.34958,0.20733 -0.52442,0.56101 -0.52442,1.06104 0,0.3984 0.13012,0.71549 0.39026,0.95127 0.26424,0.23172 0.622,0.34759 1.07324,0.34759 0.62199,0 1.11997,-0.21953 1.49398,-0.65858 0.3781,-0.44311 0.56713,-1.03054 0.56713,-1.7623 l 0,-0.25001 -1.11593,0 m 2.23792,-0.46345 0,3.89657 -1.12199,0 0,-1.03664 c -0.25611,0.41466 -0.57525,0.72159 -0.95739,0.92078 -0.38214,0.19514 -0.84964,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19513 -1.6708,-0.5854 -0.41061,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34763 0.76832,-1.7379 0.5163,-0.39026 1.28462,-0.5854 2.30501,-0.5854 l 1.57328,0 0,-0.10976 c 0,-0.51629 -0.17075,-0.91469 -0.51221,-1.1952 -0.33742,-0.28456 -0.81309,-0.42684 -1.42691,-0.42685 -0.39031,10e-6 -0.77039,0.0468 -1.14031,0.14025 -0.36998,0.0935 -0.72567,0.23376 -1.06718,0.42076 l 0,-1.03665 c 0.41061,-0.15854 0.809,-0.27643 1.19523,-0.35368 0.38618,-0.0813 0.76221,-0.12195 1.1281,-0.12195 0.98788,0 1.72571,0.25612 2.21355,0.76833 0.48783,0.51223 0.73172,1.2887 0.73172,2.3294" + id="path3879" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 951.7821,126.40336 0,3.62217 -1.1281,0 0,-9.42738 1.1281,0 0,1.03664 c 0.23577,-0.40652 0.53255,-0.70735 0.89031,-0.90249 0.3618,-0.19919 0.7927,-0.29879 1.29275,-0.29879 0.82929,0 1.50211,0.32929 2.01841,0.98786 0.52034,0.65858 0.78053,1.52448 0.78053,2.59771 0,1.07324 -0.26019,1.93914 -0.78053,2.59771 -0.5163,0.65858 -1.18912,0.98786 -2.01841,0.98786 -0.50005,0 -0.93095,-0.0976 -1.29275,-0.2927 -0.35776,-0.19919 -0.65454,-0.50206 -0.89031,-0.90859 m 3.81731,-2.38428 c 0,-0.82525 -0.17075,-1.47162 -0.51226,-1.93914 -0.33742,-0.47156 -0.80289,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06102,0.2358 -1.40252,0.70736 -0.33742,0.46752 -0.50611,1.11389 -0.50611,1.93914 0,0.82525 0.16869,1.47366 0.50611,1.94523 0.3415,0.46751 0.80899,0.70127 1.40252,0.70127 0.59353,0 1.059,-0.23376 1.39642,-0.70127 0.34151,-0.47157 0.51226,-1.11998 0.51226,-1.94523" + id="path3881" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 959.03252,118.32363 1.28668,0 0,0.92688 -1.00009,1.94523 -0.78664,0 0.50005,-1.94523 0,-0.92688" + id="path3883" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 962.75832,125.87894 1.28669,0 0,1.54887 -1.28669,0 0,-1.54887" + id="path3885" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 587.53529,137.05643 7.70166,0 0,1.03664 -3.23192,0 0,8.06754 -1.23788,0 0,-8.06754 -3.23186,0 0,-1.03664" + id="path3887" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 600.11528,142.46528 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.76839 0.41874,0.40247 1.00005,0.6037 1.74404,0.6037 0.4309,0 0.84756,-0.0529 1.25004,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.8517,0.13415 -1.28664,0.13415 -1.08954,0 -1.9534,-0.31709 -2.59165,-0.95127 -0.63416,-0.63418 -0.95124,-1.49196 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60569,-0.65856 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29678 2.17696,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33333,-0.36587 -0.77645,-0.5488 -1.32934,-0.54881 -0.62603,1e-5 -1.1281,0.17684 -1.50615,0.53052 -0.37402,0.35368 -0.58949,0.85168 -0.64642,1.49399 l 4.00023,-0.006" + id="path3889" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 607.41446,139.33095 -2.46965,3.32336 2.59775,3.5063 -1.32328,0 -1.98793,-2.68308 -1.98792,2.68308 -1.32324,0 2.65262,-3.57338 -2.427,-3.25628 1.32328,0 1.81107,2.43306 1.81107,-2.43306 1.32323,0" + id="path3891" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 610.25,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3893" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 614.32953,144.61174 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887 m 0,-4.90882 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" + id="path3895" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 629.10479,137.75768 0,1.29886 c -0.41469,-0.38619 -0.85781,-0.67483 -1.32939,-0.8659 -0.46749,-0.19106 -0.96547,-0.2866 -1.49398,-0.28661 -1.04068,1e-5 -1.83752,0.31914 -2.39036,0.95738 -0.5529,0.63419 -0.82934,1.55294 -0.82934,2.75625 0,1.19927 0.27644,2.11802 0.82934,2.75626 0.55284,0.63419 1.34968,0.95128 2.39036,0.95128 0.52851,0 1.02649,-0.0955 1.49398,-0.28661 0.47158,-0.19106 0.9147,-0.47969 1.32939,-0.8659 l 0,1.28666 c -0.43095,0.2927 -0.88829,0.51223 -1.37204,0.65858 -0.47971,0.14635 -0.98788,0.21952 -1.52447,0.21952 -1.37815,0 -2.4636,-0.42076 -3.2563,-1.26227 -0.79274,-0.84557 -1.18912,-1.99808 -1.18912,-3.45752 0,-1.46349 0.39638,-2.61599 1.18912,-3.45751 0.7927,-0.84557 1.87815,-1.26836 3.2563,-1.26837 0.54472,10e-6 1.05693,0.0732 1.53664,0.21953 0.48379,0.14229 0.93705,0.35775 1.35987,0.64637" + id="path3897" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 633.61724,140.11758 c -0.60166,1e-5 -1.07732,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52443,1.10982 -0.52443,1.92694 0,0.81712 0.17278,1.46147 0.51832,1.93304 0.34959,0.4675 0.82728,0.70126 1.43302,0.70126 0.59756,0 1.07116,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11389 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92085 -0.34964,-0.47563 -0.82324,-0.71344 -1.4208,-0.71345 m 0,-0.95128 c 0.97566,1e-5 1.74196,0.3171 2.2989,0.95128 0.55693,0.63419 0.8354,1.51228 0.8354,2.6343 0,1.11795 -0.27847,1.99605 -0.8354,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97976,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82934,-1.51635 -0.82934,-2.6343 0,-1.12202 0.27645,-2.00011 0.82934,-2.6343 0.55693,-0.63418 1.32525,-0.95127 2.30501,-0.95128" + id="path3899" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 644.28249,142.03842 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.37805,-1.4513 -0.25207,-0.32116 -0.63012,-0.48174 -1.13421,-0.48174 -0.60574,0 -1.08343,0.19311 -1.43301,0.5793 -0.34964,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92078 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78462,1e-5 1.37814,0.24392 1.78058,0.73175 0.40248,0.48378 0.60372,1.19723 0.60372,2.14037" + id="path3901" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 645.72767,139.33095 1.18912,0 2.13425,5.73204 2.1343,-5.73204 1.18907,0 -2.56111,6.82966 -1.52447,0 -2.56116,-6.82966" + id="path3903" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 659.7651,142.46528 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.76839 0.41874,0.40247 1.00005,0.6037 1.74404,0.6037 0.4309,0 0.84756,-0.0529 1.25004,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.8517,0.13415 -1.28664,0.13415 -1.08954,0 -1.9534,-0.31709 -2.59165,-0.95127 -0.63416,-0.63418 -0.95124,-1.49196 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60569,-0.65856 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29678 2.17696,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33333,-0.36587 -0.77645,-0.5488 -1.32934,-0.54881 -0.62603,1e-5 -1.1281,0.17684 -1.50615,0.53052 -0.37402,0.35368 -0.58949,0.85168 -0.64642,1.49399 l 4.00023,-0.006" + id="path3905" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 665.56423,140.37979 c -0.12603,-0.0732 -0.26428,-0.12602 -0.41469,-0.15855 -0.14633,-0.0366 -0.30895,-0.0549 -0.48783,-0.0549 -0.63416,1e-5 -1.122,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.50611,1.00209 -0.50611,1.77449 l 0,3.59777 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.23577,-0.41465 0.5427,-0.72158 0.9208,-0.92078 0.37805,-0.20326 0.83742,-0.30489 1.3781,-0.3049 0.0772,1e-5 0.16263,0.006 0.25611,0.0183 0.0935,0.008 0.1972,0.0224 0.31102,0.0427 l 0.006,1.1525" + id="path3907" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 667.86313,137.39181 0,1.93914 2.31112,0 0,0.872 -2.31112,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15446,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.4939,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3909" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 676.7417,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93296,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86588,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32925,-0.32523 -0.49389,-0.91469 -0.49389,-1.7684 l 0,-3.70753 -0.82324,0 0,-0.872 0.82324,0 0,-1.93914 1.1281,0" + id="path3911" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 683.1811,140.11758 c -0.60166,1e-5 -1.07732,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52443,1.10982 -0.52443,1.92694 0,0.81712 0.17278,1.46147 0.51832,1.93304 0.34959,0.4675 0.82728,0.70126 1.43302,0.70126 0.59756,0 1.07116,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11389 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92085 -0.34964,-0.47563 -0.82324,-0.71344 -1.4208,-0.71345 m 0,-0.95128 c 0.97566,1e-5 1.74196,0.3171 2.2989,0.95128 0.55693,0.63419 0.8354,1.51228 0.8354,2.6343 0,1.11795 -0.27847,1.99605 -0.8354,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97976,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82934,-1.51635 -0.82934,-2.6343 0,-1.12202 0.27645,-2.00011 0.82934,-2.6343 0.55693,-0.63418 1.32525,-0.95127 2.30501,-0.95128" + id="path3913" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 691.3401,139.33095 1.18908,0 2.1343,5.73204 2.13425,-5.73204 1.18912,0 -2.56116,6.82966 -1.52447,0 -2.56112,-6.82966" + id="path3915" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 705.37749,142.46528 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.76839 0.41869,0.40247 1.00004,0.6037 1.74398,0.6037 0.4309,0 0.84762,-0.0529 1.2501,-0.15855 0.40652,-0.10569 0.80895,-0.26424 1.20734,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23783,0.39027 -0.42282,0.0894 -0.8517,0.13415 -1.28669,0.13415 -1.08948,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63418 -0.95128,-1.49196 -0.95128,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65856 1.42084,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.6444,0.29678 2.17695,0.8903 0.53664,0.58947 0.80492,1.39236 0.80492,2.40868 m -1.122,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62608,1e-5 -1.12814,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58948,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3917" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 712.13401,139.59316 0,1.04884 c -0.31712,-0.1748 -0.63622,-0.30489 -0.95739,-0.39027 -0.31708,-0.0894 -0.63825,-0.13414 -0.96345,-0.13415 -0.72769,1e-5 -1.2928,0.23172 -1.69523,0.69516 -0.40248,0.45938 -0.60372,1.10576 -0.60372,1.93914 0,0.83338 0.20124,1.48179 0.60372,1.94523 0.40243,0.45938 0.96754,0.68907 1.69523,0.68907 0.3252,0 0.64637,-0.0427 0.96345,-0.12806 0.32117,-0.0894 0.64027,-0.22155 0.95739,-0.39636 l 0,1.03664 c -0.31304,0.14635 -0.63824,0.25611 -0.97566,0.32929 -0.33338,0.0732 -0.68908,0.10976 -1.06718,0.10976 -1.02851,0 -1.84559,-0.32319 -2.45133,-0.96957 -0.60574,-0.64637 -0.90859,-1.51838 -0.90859,-2.616 0,-1.11388 0.30487,-1.98995 0.9147,-2.6282 0.61382,-0.63824 1.4533,-0.95737 2.51841,-0.95738 0.34555,1e-5 0.68297,0.0366 1.01226,0.10976 0.32929,0.0691 0.64839,0.17482 0.95739,0.3171" + id="path3919" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 715.20734,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3921" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 721.64674,140.11758 c -0.60165,1e-5 -1.07732,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52442,1.10982 -0.52442,1.92694 0,0.81712 0.17277,1.46147 0.51832,1.93304 0.34963,0.4675 0.82727,0.70126 1.43301,0.70126 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52443,-1.11389 0.52443,-1.92694 0,-0.80899 -0.1748,-1.44927 -0.52443,-1.92085 -0.34959,-0.47563 -0.82319,-0.71344 -1.4208,-0.71345 m 0,-0.95128 c 0.97567,1e-5 1.74197,0.3171 2.2989,0.95128 0.55693,0.63419 0.83545,1.51228 0.83545,2.6343 0,1.11795 -0.27852,1.99605 -0.83545,2.6343 -0.55693,0.63418 -1.32323,0.95127 -2.2989,0.95127 -0.97975,0 -1.74807,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82934,-1.51635 -0.82934,-2.6343 0,-1.12202 0.27645,-2.00011 0.82934,-2.6343 0.55694,-0.63418 1.32526,-0.95127 2.30501,-0.95128" + id="path3923" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 730.59238,140.37979 c -0.12603,-0.0732 -0.26423,-0.12602 -0.41464,-0.15855 -0.14638,-0.0366 -0.30896,-0.0549 -0.48784,-0.0549 -0.6342,1e-5 -1.12203,0.20734 -1.4635,0.62199 -0.33742,0.4106 -0.50615,1.00209 -0.50615,1.77449 l 0,3.59777 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.23581,-0.41465 0.54275,-0.72158 0.9208,-0.92078 0.37806,-0.20326 0.83747,-0.30489 1.37815,-0.3049 0.0772,1e-5 0.16258,0.006 0.2561,0.0183 0.0935,0.008 0.19716,0.0224 0.31098,0.0427 l 0.006,1.1525" + id="path3925" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 735.64147,143.46533 0,-4.13438 1.12199,0 0,4.0917 c 0,0.64638 0.12604,1.13218 0.3781,1.4574 0.25202,0.32116 0.63012,0.48174 1.13421,0.48174 0.60569,0 1.08338,-0.1931 1.43301,-0.57931 0.35368,-0.3862 0.53049,-0.91265 0.53049,-1.57936 l 0,-3.87217 1.12204,0 0,6.82966 -1.12204,0 0,-1.04884 c -0.27236,0.41466 -0.58944,0.72362 -0.95124,0.92689 -0.35776,0.19919 -0.77447,0.29879 -1.25009,0.29879 -0.78458,0 -1.38017,-0.24391 -1.78669,-0.73175 -0.40652,-0.48783 -0.60978,-1.20128 -0.60978,-2.14037" + id="path3927" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 748.03854,139.53218 0,1.06103 c -0.31712,-0.1626 -0.64642,-0.28456 -0.98788,-0.36587 -0.3415,-0.0813 -0.69518,-0.12195 -1.06102,-0.12196 -0.55698,1e-5 -0.97566,0.0854 -1.2562,0.25611 -0.27644,0.17075 -0.41464,0.42686 -0.41464,0.76834 0,0.26019 0.0996,0.46548 0.2988,0.61589 0.19918,0.14636 0.59964,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79679,0.17075 1.36185,0.41263 1.69523,0.72565 0.33742,0.30896 0.5061,0.74192 0.5061,1.29886 0,0.63418 -0.25202,1.13624 -0.7561,1.50618 -0.50005,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36589,0 -0.74798,-0.0366 -1.14642,-0.10976 -0.39431,-0.0691 -0.81102,-0.17481 -1.25005,-0.31709 l 0,-1.15861 c 0.41465,0.21547 0.82323,0.37807 1.22567,0.48784 0.40248,0.10569 0.80087,0.15854 1.19518,0.15854 0.52851,0 0.93503,-0.0894 1.2196,-0.26831 0.28458,-0.18293 0.42686,-0.43904 0.42686,-0.76833 0,-0.30489 -0.10367,-0.53865 -0.31102,-0.70126 -0.20326,-0.16261 -0.65248,-0.31913 -1.34761,-0.46954 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19724,-0.36994 -1.5062,-0.67077 -0.30895,-0.3049 -0.46345,-0.72159 -0.46345,-1.25008 0,-0.6423 0.22769,-1.13827 0.68297,-1.48788 0.45532,-0.34961 1.1017,-0.52442 1.93916,-0.52443 0.41465,1e-5 0.80492,0.0305 1.1708,0.0915 0.36584,0.061 0.70326,0.15245 1.01226,0.27441" + id="path3929" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 750.19718,139.33095 1.12204,0 0,6.82966 -1.12204,0 0,-6.82966 m 0,-2.65869 1.12204,0 0,1.42081 -1.12204,0 0,-1.42081" + id="path3931" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 759.33795,142.03842 0,4.12219 -1.12199,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.3781,-1.4513 -0.25202,-0.32116 -0.63012,-0.48174 -1.13421,-0.48174 -0.60573,0 -1.08338,0.19311 -1.43301,0.5793 -0.34959,0.38621 -0.52442,0.91266 -0.52442,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92078 0.36588,-0.20326 0.78663,-0.30489 1.26226,-0.3049 0.78461,1e-5 1.37814,0.24392 1.78062,0.73175 0.40243,0.48378 0.60367,1.19723 0.60367,2.14037" + id="path3933" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 766.08227,142.66651 c 0,-0.81306 -0.16874,-1.44317 -0.50616,-1.89036 -0.33333,-0.44717 -0.80289,-0.67076 -1.40858,-0.67077 -0.6017,1e-5 -1.07122,0.2236 -1.40864,0.67077 -0.33333,0.44719 -0.50004,1.0773 -0.50004,1.89036 0,0.80899 0.16671,1.43707 0.50004,1.88425 0.33742,0.44718 0.80694,0.67077 1.40864,0.67077 0.60569,0 1.07525,-0.22359 1.40858,-0.67077 0.33742,-0.44718 0.50616,-1.07526 0.50616,-1.88425 m 1.12199,2.64649 c 0,1.16267 -0.25813,2.02654 -0.77443,2.59162 -0.5163,0.56913 -1.30698,0.8537 -2.37208,0.85371 -0.39436,-1e-5 -0.7663,-0.0305 -1.11594,-0.0915 -0.34958,-0.0569 -0.68902,-0.14636 -1.01832,-0.26831 l 0,-1.09153 c 0.3293,0.17887 0.6545,0.31099 0.97567,0.39637 0.32112,0.0854 0.64839,0.12805 0.98173,0.12805 0.73581,0 1.28668,-0.1931 1.65257,-0.5793 0.36584,-0.38214 0.54881,-0.96144 0.54881,-1.73791 l 0,-0.55491 c -0.23173,0.40247 -0.52852,0.7033 -0.89032,0.90249 -0.3618,0.19921 -0.79476,0.2988 -1.29885,0.2988 -0.83747,0 -1.51226,-0.31912 -2.02452,-0.95737 -0.51221,-0.63825 -0.76832,-1.48382 -0.76832,-2.53673 0,-1.05697 0.25611,-1.90458 0.76832,-2.54283 0.51226,-0.63824 1.18705,-0.95737 2.02452,-0.95738 0.50409,1e-5 0.93705,0.0996 1.29885,0.2988 0.3618,0.19921 0.65859,0.50004 0.89032,0.90249 l 0,-1.03664 1.12199,0 0,5.98205" + id="path3935" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 774.66203,140.0566 -1.28664,0 0,-1.05494 1.00004,-1.94523 0.78664,0 -0.50004,1.94523 0,1.05494" + id="path3937" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 778.74761,138.06868 0,3.42093 1.5489,0 c 0.57319,1e-5 1.0163,-0.14838 1.32934,-0.44515 0.31304,-0.29676 0.46952,-0.71955 0.46952,-1.26837 0,-0.54474 -0.15648,-0.96549 -0.46952,-1.26226 -0.31304,-0.29676 -0.75615,-0.44514 -1.32934,-0.44515 l -1.5489,0 m -1.23177,-1.01225 2.78067,0 c 1.02039,0 1.79073,0.23172 2.31111,0.69516 0.52439,0.45938 0.7866,1.13422 0.78664,2.0245 -4e-5,0.89844 -0.26225,1.57734 -0.78664,2.03671 -0.52038,0.45938 -1.29072,0.68907 -2.31111,0.68906 l -1.5489,0 0,3.65875 -1.23177,0 0,-9.10418" + id="path3939" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 787.5591,142.72749 c -0.90652,0 -1.53462,0.10366 -1.88426,0.31099 -0.34958,0.20733 -0.52442,0.56101 -0.52442,1.06104 0,0.39839 0.13012,0.71549 0.39027,0.95127 0.26427,0.23173 0.62199,0.34758 1.07323,0.34758 0.62199,0 1.12002,-0.21952 1.49403,-0.65857 0.37805,-0.44312 0.56708,-1.03055 0.56708,-1.7623 l 0,-0.25001 -1.11593,0 m 2.23797,-0.46345 0,3.89657 -1.12204,0 0,-1.03664 c -0.25611,0.41466 -0.57525,0.72159 -0.95735,0.92078 -0.38214,0.19514 -0.84968,0.2927 -1.40252,0.2927 -0.69927,0 -1.2562,-0.19513 -1.67085,-0.5854 -0.4106,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34763 0.76833,-1.7379 0.51629,-0.39027 1.28462,-0.5854 2.305,-0.5854 l 1.57328,0 0,-0.10976 c 0,-0.51629 -0.17075,-0.91469 -0.51221,-1.1952 -0.33742,-0.28456 -0.81309,-0.42684 -1.42691,-0.42685 -0.39027,1e-5 -0.77039,0.0468 -1.14031,0.14025 -0.36997,0.0935 -0.72567,0.23376 -1.06713,0.42076 l 0,-1.03665 c 0.41056,-0.15854 0.80896,-0.27643 1.19518,-0.35368 0.38618,-0.0813 0.76221,-0.12195 1.1281,-0.12196 0.98788,1e-5 1.72571,0.25612 2.21355,0.76834 0.48783,0.51223 0.73172,1.2887 0.73177,2.3294" + id="path3941" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 793.23628,137.39181 0,1.93914 2.31112,0 0,0.872 -2.31112,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32925,-0.32523 -0.4939,-0.91469 -0.4939,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.872 0.82323,0 0,-1.93914 1.1281,0" + id="path3943" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 802.70636,142.03842 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12604,-1.13014 -0.37806,-1.4513 -0.25206,-0.32116 -0.63012,-0.48174 -1.1342,-0.48174 -0.60574,0 -1.08343,0.19311 -1.43302,0.5793 -0.34963,0.38621 -0.52442,0.91266 -0.52442,1.57936 l 0,3.85998 -1.1281,0 0,-9.48835 1.1281,0 0,3.71972 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92078 0.36588,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78462,1e-5 1.37814,0.24392 1.78058,0.73175 0.40248,0.48378 0.60372,1.19723 0.60372,2.14037" + id="path3945" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 809.07868,140.01391 0,-1.10982 7.81749,2.83554 0,1.01225 -7.81749,2.83553 0,-1.10982 6.28085,-2.22574 -6.28085,-2.23794" + id="path3947" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 827.11629,137.89184 c -0.89435,1e-5 -1.60578,0.33336 -2.13425,1.00006 -0.52443,0.66671 -0.78664,1.5753 -0.78664,2.72576 0,1.14641 0.26221,2.05297 0.78664,2.71968 0.52847,0.6667 1.2399,1.00006 2.13425,1.00005 0.89436,1e-5 1.60175,-0.33335 2.12209,-1.00005 0.52443,-0.66671 0.78664,-1.57327 0.78664,-2.71968 0,-1.15046 -0.26221,-2.05905 -0.78664,-2.72576 -0.52034,-0.6667 -1.22773,-1.00005 -2.12209,-1.00006 m 0,-1.00006 c 1.2765,10e-6 2.29688,0.4289 3.06116,1.28666 0.76428,0.85372 1.14642,2.00012 1.14642,3.43922 0,1.43505 -0.38214,2.58146 -1.14642,3.43923 -0.76428,0.85371 -1.78466,1.28056 -3.06116,1.28056 -1.28053,0 -2.305,-0.42685 -3.07332,-1.28056 -0.76428,-0.8537 -1.14642,-2.00012 -1.14642,-3.43923 0,-1.4391 0.38214,-2.5855 1.14642,-3.43922 0.76832,-0.85776 1.79279,-1.28665 3.07332,-1.28666" + id="path3949" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 838.10473,142.75188 c 0,-0.82525 -0.17075,-1.47163 -0.51221,-1.93914 -0.33742,-0.47156 -0.80289,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06102,0.2358 -1.40253,0.70736 -0.33742,0.46751 -0.5061,1.11389 -0.5061,1.93914 0,0.82525 0.16868,1.47366 0.5061,1.94523 0.34151,0.46751 0.809,0.70126 1.40253,0.70126 0.59353,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51221,-1.11998 0.51221,-1.94523 m -3.81726,-2.38429 c 0.23576,-0.40652 0.53255,-0.70735 0.89026,-0.90249 0.3618,-0.19919 0.79275,-0.29879 1.29279,-0.2988 0.8293,1e-5 1.50212,0.3293 2.01837,0.98786 0.52039,0.65859 0.78054,1.52449 0.78054,2.59772 0,1.07323 -0.26015,1.93914 -0.78054,2.59771 -0.51625,0.65857 -1.18907,0.98786 -2.01837,0.98786 -0.50004,0 -0.93099,-0.0976 -1.29279,-0.2927 -0.35771,-0.19919 -0.6545,-0.50206 -0.89026,-0.90859 l 0,1.02445 -1.12815,0 0,-9.48835 1.12815,0 0,3.69533" + id="path3951" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 841.1293,139.33095 1.12204,0 0,6.95162 c 0,0.86997 -0.16667,1.50009 -0.50005,1.89036 -0.32929,0.39026 -0.86185,0.58539 -1.59766,0.5854 l -0.42686,0 0,-0.95128 0.29881,0 c 0.42686,0 0.71754,-0.0996 0.87199,-0.2988 0.1545,-0.19513 0.23173,-0.60369 0.23173,-1.22568 l 0,-6.95162 m 0,-2.65869 1.12204,0 0,1.42081 -1.12204,0 0,-1.42081" + id="path3953" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 850.43472,142.46528 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.76839 0.41869,0.40247 1.00005,0.6037 1.74399,0.6037 0.4309,0 0.84761,-0.0529 1.25005,-0.15855 0.40656,-0.10569 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63418 -0.95129,-1.49196 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65856 1.4208,-0.98785 2.44528,-0.98786 0.91873,1e-5 1.6444,0.29678 2.17695,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.5488 -1.32934,-0.54881 -0.62608,1e-5 -1.12815,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58949,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3955" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 857.19125,139.59316 0,1.04884 c -0.31713,-0.1748 -0.63623,-0.30489 -0.95739,-0.39027 -0.31708,-0.0894 -0.63825,-0.13414 -0.96346,-0.13415 -0.72768,1e-5 -1.29279,0.23172 -1.69522,0.69516 -0.40248,0.45938 -0.60372,1.10576 -0.60372,1.93914 0,0.83338 0.20124,1.48179 0.60372,1.94523 0.40243,0.45938 0.96754,0.68907 1.69522,0.68907 0.32521,0 0.64638,-0.0427 0.96346,-0.12806 0.32116,-0.0894 0.64026,-0.22155 0.95739,-0.39636 l 0,1.03664 c -0.31304,0.14635 -0.63829,0.25611 -0.97567,0.32929 -0.33338,0.0732 -0.68907,0.10976 -1.06717,0.10976 -1.02851,0 -1.84564,-0.32319 -2.45133,-0.96957 -0.60574,-0.64637 -0.90859,-1.51838 -0.90859,-2.616 0,-1.11388 0.30487,-1.98995 0.91469,-2.6282 0.61382,-0.63824 1.45331,-0.95737 2.51842,-0.95738 0.34554,1e-5 0.68296,0.0366 1.01226,0.10976 0.32929,0.0691 0.64839,0.17482 0.95739,0.3171" + id="path3957" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 860.26458,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.46355,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82324,0 0,-0.872 0.82324,0 0,-1.93914 1.1281,0" + id="path3959" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 869.14314,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15446,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82319,0 0,-0.872 0.82319,0 0,-1.93914 1.12814,0" + id="path3961" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 875.58254,140.11758 c -0.60165,1e-5 -1.07727,0.23579 -1.42691,0.70736 -0.34963,0.46751 -0.52442,1.10982 -0.52442,1.92694 0,0.81712 0.17277,1.46147 0.51832,1.93304 0.34963,0.4675 0.82727,0.70126 1.43301,0.70126 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52443,-1.11389 0.52443,-1.92694 0,-0.80899 -0.1748,-1.44927 -0.52443,-1.92085 -0.34959,-0.47563 -0.82319,-0.71344 -1.4208,-0.71345 m 0,-0.95128 c 0.97567,1e-5 1.74197,0.3171 2.2989,0.95128 0.55698,0.63419 0.83545,1.51228 0.83545,2.6343 0,1.11795 -0.27847,1.99605 -0.83545,2.6343 -0.55693,0.63418 -1.32323,0.95127 -2.2989,0.95127 -0.97971,0 -1.74807,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12202 0.2764,-2.00011 0.82929,-2.6343 0.55694,-0.63418 1.3253,-0.95127 2.30501,-0.95128" + id="path3963" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 885.82704,138.06868 0,3.42093 1.54885,0 c 0.57324,1e-5 1.01635,-0.14838 1.32934,-0.44515 0.31304,-0.29676 0.46956,-0.71955 0.46956,-1.26837 0,-0.54474 -0.15652,-0.96549 -0.46956,-1.26226 -0.31299,-0.29676 -0.7561,-0.44514 -1.32934,-0.44515 l -1.54885,0 m -1.23177,-1.01225 2.78062,0 c 1.02039,0 1.79078,0.23172 2.31112,0.69516 0.52442,0.45938 0.78664,1.13422 0.78664,2.0245 0,0.89844 -0.26222,1.57734 -0.78664,2.03671 -0.52034,0.45938 -1.29073,0.68907 -2.31112,0.68906 l -1.54885,0 0,3.65875 -1.23177,0 0,-9.10418" + id="path3965" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 894.63852,142.72749 c -0.90656,0 -1.53462,0.10366 -1.88425,0.31099 -0.34959,0.20733 -0.52442,0.56101 -0.52442,1.06104 0,0.39839 0.13011,0.71549 0.39026,0.95127 0.26424,0.23173 0.622,0.34758 1.07324,0.34758 0.62199,0 1.11997,-0.21952 1.49398,-0.65857 0.3781,-0.44312 0.56713,-1.03055 0.56713,-1.7623 l 0,-0.25001 -1.11594,0 m 2.23793,-0.46345 0,3.89657 -1.12199,0 0,-1.03664 c -0.25611,0.41466 -0.57526,0.72159 -0.95739,0.92078 -0.38214,0.19514 -0.84964,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19513 -1.6708,-0.5854 -0.41061,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34763 0.76832,-1.7379 0.5163,-0.39027 1.28462,-0.5854 2.30501,-0.5854 l 1.57328,0 0,-0.10976 c 0,-0.51629 -0.17076,-0.91469 -0.51222,-1.1952 -0.33742,-0.28456 -0.81308,-0.42684 -1.4269,-0.42685 -0.39031,1e-5 -0.77039,0.0468 -1.14032,0.14025 -0.36997,0.0935 -0.72566,0.23376 -1.06717,0.42076 l 0,-1.03665 c 0.41061,-0.15854 0.809,-0.27643 1.19523,-0.35368 0.38618,-0.0813 0.76221,-0.12195 1.1281,-0.12196 0.98788,1e-5 1.72571,0.25612 2.21354,0.76834 0.48784,0.51223 0.73173,1.2887 0.73173,2.3294" + id="path3967" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 900.31571,137.39181 0,1.93914 2.31111,0 0,0.872 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15445,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82318,0 0,-0.872 0.82318,0 0,-1.93914 1.12815,0" + id="path3969" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 909.78574,142.03842 0,4.12219 -1.122,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.3781,-1.4513 -0.25202,-0.32116 -0.63012,-0.48174 -1.1342,-0.48174 -0.6057,0 -1.08338,0.19311 -1.43302,0.5793 -0.34958,0.38621 -0.52442,0.91266 -0.52438,1.57936 l 0,3.85998 -1.12814,0 0,-9.48835 1.12814,0 0,3.71972 c 0.26828,-0.41058 0.58334,-0.71751 0.94514,-0.92078 0.36588,-0.20326 0.78664,-0.30489 1.2623,-0.3049 0.78458,1e-5 1.3781,0.24392 1.78058,0.73175 0.40244,0.48378 0.60368,1.19723 0.60368,2.14037" + id="path3971" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 912.44446,137.05643 1.28664,0 0,0.92688 -1.00004,1.94523 -0.78664,0 0.50004,-1.94523 0,-0.92688" + id="path3973" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 916.17027,144.61174 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" + id="path3975" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 590.02932,156.80148 0,7.07968 1.48788,0 c 1.2562,0 2.17493,-0.28457 2.75629,-0.85371 0.58536,-0.56914 0.87806,-1.46756 0.8781,-2.69528 -4e-5,-1.21958 -0.29274,-2.11191 -0.8781,-2.67699 -0.58136,-0.56913 -1.50009,-0.8537 -2.75629,-0.8537 l -1.48788,0 m -1.23177,-1.01226 2.53062,0 c 1.76433,1e-5 3.05914,0.36792 3.8844,1.10372 0.8252,0.73176 1.23783,1.87817 1.23788,3.43923 -5e-5,1.5692 -0.4147,2.72171 -1.24399,3.45752 -0.82934,0.73581 -2.12209,1.10372 -3.87829,1.10372 l -2.53062,0 0,-9.10419" + id="path3977" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 601.00559,158.85038 c -0.6017,0 -1.07732,0.23579 -1.42695,0.70735 -0.34959,0.46752 -0.52438,1.10983 -0.52438,1.92695 0,0.81712 0.17277,1.46146 0.51832,1.93303 0.34959,0.46751 0.82727,0.70127 1.43301,0.70127 0.59757,0 1.07117,-0.23579 1.4208,-0.70736 0.34959,-0.47157 0.52443,-1.11389 0.52443,-1.92694 0,-0.80899 -0.17484,-1.44927 -0.52443,-1.92085 -0.34963,-0.47563 -0.82323,-0.71345 -1.4208,-0.71345 m 0,-0.95128 c 0.97562,1e-5 1.74197,0.3171 2.2989,0.95128 0.55694,0.63419 0.8354,1.51229 0.8354,2.6343 0,1.11795 -0.27846,1.99605 -0.8354,2.6343 -0.55693,0.63418 -1.32328,0.95127 -2.2989,0.95127 -0.97975,0 -1.74807,-0.31709 -2.30505,-0.95127 -0.55285,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12201 0.27644,-2.00011 0.82929,-2.6343 0.55698,-0.63418 1.3253,-0.95127 2.30505,-0.95128" + id="path3979" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 605.87782,162.19813 0,-4.13439 1.12199,0 0,4.09171 c 0,0.64638 0.12604,1.13218 0.3781,1.4574 0.25202,0.32116 0.63012,0.48173 1.13421,0.48173 0.60569,0 1.08338,-0.1931 1.43301,-0.5793 0.35368,-0.3862 0.53049,-0.91265 0.53049,-1.57936 l 0,-3.87218 1.12204,0 0,6.82967 -1.12204,0 0,-1.04884 c -0.27236,0.41466 -0.58944,0.72362 -0.95124,0.92688 -0.35776,0.1992 -0.77447,0.2988 -1.25009,0.2988 -0.78462,0 -1.38017,-0.24392 -1.78669,-0.73175 -0.40652,-0.48783 -0.60978,-1.20129 -0.60978,-2.14037" + id="path3981" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 618.8237,161.48468 c 0,-0.82525 -0.17076,-1.47163 -0.51226,-1.93914 -0.33742,-0.47157 -0.80289,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06102,0.23579 -1.40248,0.70736 -0.33742,0.46751 -0.50615,1.11389 -0.50615,1.93914 0,0.82525 0.16873,1.47366 0.50615,1.94523 0.34146,0.46751 0.80895,0.70126 1.40248,0.70126 0.59353,0 1.059,-0.23375 1.39642,-0.70126 0.3415,-0.47157 0.51226,-1.11998 0.51226,-1.94523 m -3.81731,-2.38429 c 0.23576,-0.40652 0.53255,-0.70735 0.89031,-0.90249 0.3618,-0.19919 0.7927,-0.29879 1.29274,-0.2988 0.8293,1e-5 1.50212,0.32929 2.01842,0.98786 0.52034,0.65858 0.78053,1.52449 0.78053,2.59772 0,1.07323 -0.26019,1.93914 -0.78053,2.59771 -0.5163,0.65857 -1.18912,0.98786 -2.01842,0.98786 -0.50004,0 -0.93094,-0.0976 -1.29274,-0.2927 -0.35776,-0.1992 -0.65455,-0.50206 -0.89031,-0.90859 l 0,1.02445 -1.1281,0 0,-9.48836 1.1281,0 0,3.69534" + id="path3983" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 621.84826,155.40505 1.122,0 0,9.48836 -1.122,0 0,-9.48836" + id="path3985" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 631.15369,161.19808 0,0.54881 -5.15887,0 c 0.0488,0.7724 0.28054,1.36187 0.69518,1.76839 0.41874,0.40247 1.00005,0.6037 1.74399,0.6037 0.4309,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.10569 0.80896,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42282,0.0894 -0.8517,0.13415 -1.28669,0.13415 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.42085,-0.98785 2.44528,-0.98786 0.91878,1e-5 1.6444,0.29677 2.17695,0.8903 0.53664,0.58947 0.80491,1.39236 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61386 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12815,0.17684 -1.5062,0.53051 -0.37401,0.35369 -0.58944,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3987" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 637.01986,155.78922 1.23177,0 0,8.06754 4.4332,0 0,1.03665 -5.66497,0 0,-9.10419" + id="path3989" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 643.92271,158.06374 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.65869 1.12199,0 0,1.42082 -1.12199,0 0,-1.42082" + id="path3991" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 653.06349,160.77122 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12604,-1.13014 -0.37806,-1.45131 -0.25206,-0.32115 -0.63012,-0.48173 -1.1342,-0.48173 -0.60574,0 -1.08343,0.19311 -1.43302,0.5793 -0.34963,0.38621 -0.52442,0.91266 -0.52442,1.57936 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.26832,-0.41059 0.58338,-0.71751 0.94518,-0.92078 0.36588,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78462,1e-5 1.37814,0.24393 1.78058,0.73175 0.40248,0.48378 0.60372,1.19723 0.60372,2.14037" + id="path3993" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 661.15541,161.19808 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28049,1.36187 0.69514,1.76839 0.41873,0.40247 1.00009,0.6037 1.74403,0.6037 0.4309,0 0.84761,-0.0529 1.25005,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.4208,-0.98785 2.44528,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61386 -0.18095,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32939,-0.54881 -0.62603,0 -1.1281,0.17684 -1.50615,0.53051 -0.37401,0.35369 -0.58949,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path3995" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 667.35092,158.26498 0,1.06103 c -0.31713,-0.1626 -0.64642,-0.28456 -0.98788,-0.36587 -0.34151,-0.0813 -0.69518,-0.12195 -1.06102,-0.12196 -0.55698,1e-5 -0.97567,0.0854 -1.2562,0.25612 -0.27645,0.17074 -0.41465,0.42685 -0.41465,0.76833 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19917,0.14635 0.59963,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79678,0.17074 1.36184,0.41263 1.69522,0.72565 0.33742,0.30896 0.50611,0.74191 0.50611,1.29886 0,0.63418 -0.25202,1.13624 -0.75611,1.50618 -0.50004,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36588,0 -0.74802,-0.0366 -1.14642,-0.10976 -0.3943,-0.0691 -0.81102,-0.17481 -1.25004,-0.31709 l 0,-1.15861 c 0.41464,0.21546 0.82323,0.37808 1.22566,0.48784 0.40248,0.1057 0.80088,0.15854 1.19518,0.15854 0.52852,0 0.93504,-0.0894 1.21961,-0.26831 0.28457,-0.18293 0.42686,-0.43904 0.42686,-0.76833 0,-0.3049 -0.10367,-0.53865 -0.31102,-0.70127 -0.20326,-0.1626 -0.65248,-0.31911 -1.34761,-0.46953 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19725,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.46345,-0.72159 -0.46345,-1.25008 0,-0.6423 0.22768,-1.13827 0.68296,-1.48789 0.45533,-0.34961 1.1017,-0.52441 1.93917,-0.52442 0.41465,1e-5 0.80491,0.0305 1.1708,0.0915 0.36584,0.061 0.70326,0.15246 1.01226,0.27441" + id="path3997" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 669.79615,163.34454 1.28668,0 0,1.54887 -1.28668,0 0,-1.54887 m 0,-4.90882 1.28668,0 0,1.54887 -1.28668,0 0,-1.54887" + id="path3999" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 678.98573,156.80148 0,7.07968 1.48788,0 c 1.25615,0 2.17493,-0.28457 2.75625,-0.85371 0.5854,-0.56914 0.8781,-1.46756 0.8781,-2.69528 0,-1.21958 -0.2927,-2.11191 -0.8781,-2.67699 -0.58132,-0.56913 -1.5001,-0.8537 -2.75625,-0.8537 l -1.48788,0 m -1.23177,-1.01226 2.53062,0 c 1.76433,1e-5 3.0591,0.36792 3.8844,1.10372 0.8252,0.73176 1.23783,1.87817 1.23783,3.43923 0,1.5692 -0.41465,2.72171 -1.24394,3.45752 -0.82934,0.73581 -2.12209,1.10372 -3.87829,1.10372 l -2.53062,0 0,-9.10419" + id="path4001" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 693.15728,161.19808 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28048,1.36187 0.69513,1.76839 0.41873,0.40247 1.00009,0.6037 1.74403,0.6037 0.4309,0 0.84762,-0.0529 1.25005,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.8151,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08948,0 -1.9534,-0.31709 -2.59164,-0.95127 -0.63416,-0.63419 -0.95124,-1.49196 -0.95124,-2.57332 0,-1.11795 0.30082,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.8903 0.5366,0.58947 0.80492,1.39236 0.80492,2.40868 m -1.122,-0.32929 c -0.008,-0.61386 -0.18094,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32938,-0.54881 -0.62604,0 -1.1281,0.17684 -1.50616,0.53051 -0.37401,0.35369 -0.58948,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path4003" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 694.99883,155.40505 1.12204,0 0,9.48836 -1.12204,0 0,-9.48836" + id="path4005" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 704.30425,161.19808 0,0.54881 -5.15881,0 c 0.0488,0.7724 0.28048,1.36187 0.69517,1.76839 0.41869,0.40247 1.00005,0.6037 1.74399,0.6037 0.4309,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.10569 0.80896,-0.26424 1.20735,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63419 -0.95128,-1.49196 -0.95128,-2.57332 0,-1.11795 0.30082,-2.00418 0.90248,-2.6587 0.60573,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61386 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12814,0.17684 -1.5062,0.53051 -0.37401,0.35369 -0.58948,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path4007" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 707.25568,156.12461 0,1.93913 2.31111,0 0,0.87201 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15445,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82318,0 0,-0.87201 0.82318,0 0,-1.93913 1.12815,0" + id="path4009" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 716.89035,161.19808 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28049,1.36187 0.69514,1.76839 0.41873,0.40247 1.00009,0.6037 1.74403,0.6037 0.4309,0 0.84761,-0.0529 1.25005,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.4208,-0.98785 2.44528,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61386 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12815,0.17684 -1.5062,0.53051 -0.37401,0.35369 -0.58949,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path4011" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 722.59192,162.19813 0,-4.13439 1.12204,0 0,4.09171 c 0,0.64638 0.12599,1.13218 0.37805,1.4574 0.25207,0.32116 0.63012,0.48173 1.13421,0.48173 0.60574,0 1.08338,-0.1931 1.43301,-0.5793 0.35368,-0.3862 0.53053,-0.91265 0.53053,-1.57936 l 0,-3.87218 1.122,0 0,6.82967 -1.122,0 0,-1.04884 c -0.2724,0.41466 -0.58948,0.72362 -0.95128,0.92688 -0.35776,0.1992 -0.77443,0.2988 -1.25009,0.2988 -0.78458,0 -1.38017,-0.24392 -1.78669,-0.73175 -0.40652,-0.48783 -0.60978,-1.20129 -0.60978,-2.14037" + id="path4013" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 734.98899,158.26498 0,1.06103 c -0.31708,-0.1626 -0.64637,-0.28456 -0.98788,-0.36587 -0.34146,-0.0813 -0.69513,-0.12195 -1.06102,-0.12196 -0.55693,1e-5 -0.97567,0.0854 -1.25615,0.25612 -0.27645,0.17074 -0.4147,0.42685 -0.4147,0.76833 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19922,0.14635 0.59963,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79678,0.17074 1.36189,0.41263 1.69522,0.72565 0.33742,0.30896 0.50616,0.74191 0.50616,1.29886 0,0.63418 -0.25207,1.13624 -0.75616,1.50618 -0.50004,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36584,0 -0.74798,-0.0366 -1.14637,-0.10976 -0.39435,-0.0691 -0.81102,-0.17481 -1.25009,-0.31709 l 0,-1.15861 c 0.41464,0.21546 0.82323,0.37808 1.22566,0.48784 0.40248,0.1057 0.80088,0.15854 1.19523,0.15854 0.52847,0 0.93499,-0.0894 1.21956,-0.26831 0.28457,-0.18293 0.42686,-0.43904 0.42686,-0.76833 0,-0.3049 -0.10367,-0.53865 -0.31097,-0.70127 -0.20331,-0.1626 -0.65248,-0.31911 -1.34766,-0.46953 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.1972,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.46341,-0.72159 -0.46341,-1.25008 0,-0.6423 0.22764,-1.13827 0.68297,-1.48789 0.45528,-0.34961 1.10165,-0.52441 1.93912,-0.52442 0.41465,1e-5 0.80491,0.0305 1.1708,0.0915 0.36589,0.061 0.70331,0.15246 1.01226,0.27441" + id="path4015" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 737.14762,158.06374 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.65869 1.12204,0 0,1.42082 -1.12204,0 0,-1.42082" + id="path4017" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 746.2884,160.77122 0,4.12219 -1.12199,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.37805,-1.45131 -0.25207,-0.32115 -0.63017,-0.48173 -1.13426,-0.48173 -0.60569,0 -1.08338,0.19311 -1.43301,0.5793 -0.34959,0.38621 -0.52438,0.91266 -0.52438,1.57936 l 0,3.85998 -1.12815,0 0,-6.82967 1.12815,0 0,1.06104 c 0.26827,-0.41059 0.58333,-0.71751 0.94518,-0.92078 0.36584,-0.20326 0.78659,-0.30489 1.26226,-0.3049 0.78457,1e-5 1.3781,0.24393 1.78058,0.73175 0.40243,0.48378 0.60367,1.19723 0.60367,2.14037" + id="path4019" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 753.03272,161.39931 c 0,-0.81306 -0.16874,-1.44317 -0.50611,-1.89036 -0.33338,-0.44718 -0.80289,-0.67076 -1.40863,-0.67077 -0.60166,1e-5 -1.07122,0.22359 -1.40864,0.67077 -0.33333,0.44719 -0.5,1.0773 -0.5,1.89036 0,0.80899 0.16667,1.43707 0.5,1.88425 0.33742,0.44719 0.80698,0.67077 1.40864,0.67077 0.60574,0 1.07525,-0.22358 1.40863,-0.67077 0.33737,-0.44718 0.50611,-1.07526 0.50611,-1.88425 m 1.12203,2.64649 c -4e-5,1.16267 -0.25817,2.02654 -0.77447,2.59161 -0.5163,0.56914 -1.30698,0.85371 -2.37208,0.85371 -0.39431,0 -0.7663,-0.0305 -1.11589,-0.0915 -0.34963,-0.0569 -0.68907,-0.14636 -1.01837,-0.26832 l 0,-1.09152 c 0.3293,0.17887 0.6545,0.31099 0.97567,0.39636 0.32117,0.0854 0.64839,0.12806 0.98177,0.12806 0.73582,0 1.28664,-0.1931 1.65253,-0.5793 0.36589,-0.38214 0.54881,-0.96144 0.54881,-1.73791 l 0,-0.55491 c -0.23173,0.40246 -0.52847,0.7033 -0.89032,0.90249 -0.3618,0.1992 -0.79476,0.2988 -1.29885,0.2988 -0.83742,0 -1.51226,-0.31912 -2.02447,-0.95737 -0.51226,-0.63825 -0.76837,-1.48383 -0.76837,-2.53673 0,-1.05697 0.25611,-1.90458 0.76837,-2.54283 0.51221,-0.63825 1.18705,-0.95737 2.02447,-0.95738 0.50409,1e-5 0.93705,0.0996 1.29885,0.2988 0.36185,0.1992 0.65859,0.50004 0.89032,0.90249 l 0,-1.03665 1.12203,0 0,5.98206" + id="path4021" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 761.5515,156.12461 0,1.93913 2.31111,0 0,0.87201 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32924,-0.32523 -0.49389,-0.91469 -0.49389,-1.7684 l 0,-3.70753 -0.82323,0 0,-0.87201 0.82323,0 0,-1.93913 1.1281,0" + id="path4023" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 771.02157,160.77122 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.37805,-1.45131 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60574,0 -1.08342,0.19311 -1.43301,0.5793 -0.34963,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-9.48836 1.1281,0 0,3.71973 c 0.26832,-0.41059 0.58338,-0.71751 0.94518,-0.92078 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78462,1e-5 1.37815,0.24393 1.78058,0.73175 0.40248,0.48378 0.60372,1.19723 0.60372,2.14037" + id="path4025" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 779.1135,161.19808 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28049,1.36187 0.69513,1.76839 0.41874,0.40247 1.00005,0.6037 1.74404,0.6037 0.4309,0 0.84756,-0.0529 1.25004,-0.15855 0.40652,-0.10569 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.85166,0.13415 -1.28664,0.13415 -1.08954,0 -1.9534,-0.31709 -2.59165,-0.95127 -0.63416,-0.63419 -0.95124,-1.49196 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29677 2.17696,0.8903 0.53659,0.58947 0.80491,1.39236 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61386 -0.18095,-1.10372 -0.51837,-1.4696 -0.33333,-0.36587 -0.77645,-0.54881 -1.32934,-0.54881 -0.62603,0 -1.1281,0.17684 -1.50615,0.53051 -0.37402,0.35369 -0.58949,0.85168 -0.64638,1.49399 l 4.00024,-0.006" + id="path4027" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 786.1017,158.7894 -1.28664,0 0,-1.05494 1.00005,-1.94524 0.78664,0 -0.50005,1.94524 0,1.05494" + id="path4029" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 788.95552,155.78922 5.75643,0 0,1.03665 -4.52461,0 0,2.69528 4.33558,0 0,1.03664 -4.33558,0 0,3.29897 4.63439,0 0,1.03665 -5.86621,0 0,-9.10419" + id="path4031" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 801.30383,159.10039 0,-3.69534 1.12199,0 0,9.48836 -1.12199,0 0,-1.02445 c -0.23581,0.40653 -0.53462,0.70939 -0.89642,0.90859 -0.35771,0.19513 -0.78866,0.2927 -1.29275,0.2927 -0.82525,0 -1.49807,-0.32929 -2.01841,-0.98786 -0.5163,-0.65857 -0.77443,-1.52448 -0.77443,-2.59771 0,-1.07323 0.25813,-1.93914 0.77443,-2.59772 0.52034,-0.65857 1.19316,-0.98785 2.01841,-0.98786 0.50409,1e-5 0.93504,0.0996 1.29275,0.2988 0.3618,0.19514 0.66061,0.49597 0.89642,0.90249 m -3.82342,2.38429 c 0,0.82525 0.16873,1.47366 0.50615,1.94523 0.34146,0.46751 0.80896,0.70126 1.40253,0.70126 0.59353,0 1.06102,-0.23375 1.40248,-0.70126 0.34151,-0.47157 0.51226,-1.11998 0.51226,-1.94523 0,-0.82525 -0.17075,-1.47163 -0.51226,-1.93914 -0.34146,-0.47157 -0.80895,-0.70735 -1.40248,-0.70736 -0.59357,1e-5 -1.06107,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50615,1.11389 -0.50615,1.93914" + id="path4033" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 804.73694,158.06374 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.65869 1.12204,0 0,1.42082 -1.12204,0 0,-1.42082" + id="path4035" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 809.3104,156.12461 0,1.93913 2.31111,0 0,0.87201 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15446,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82319,0 0,-0.87201 0.82319,0 0,-1.93913 1.12814,0" + id="path4037" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 818.16454,163.86896 0,3.62216 -1.1281,0 0,-9.42738 1.1281,0 0,1.03665 c 0.23581,-0.40652 0.53255,-0.70735 0.89031,-0.90249 0.3618,-0.19919 0.79275,-0.29879 1.29275,-0.2988 0.82934,1e-5 1.50211,0.32929 2.01841,0.98786 0.52034,0.65858 0.78054,1.52449 0.78054,2.59772 0,1.07323 -0.2602,1.93914 -0.78054,2.59771 -0.5163,0.65857 -1.18907,0.98786 -2.01841,0.98786 -0.5,0 -0.93095,-0.0976 -1.29275,-0.2927 -0.35776,-0.1992 -0.6545,-0.50206 -0.89031,-0.90859 m 3.81731,-2.38428 c 0,-0.82525 -0.17075,-1.47163 -0.51221,-1.93914 -0.33742,-0.47157 -0.80289,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06107,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50615,1.11389 -0.50615,1.93914 0,0.82525 0.16873,1.47366 0.50615,1.94523 0.34146,0.46751 0.809,0.70126 1.40253,0.70126 0.59353,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51221,-1.11998 0.51221,-1.94523" + id="path4039" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 828.11028,161.46028 c -0.90657,10e-6 -1.53467,0.10367 -1.88425,0.311 -0.34964,0.20733 -0.52443,0.56101 -0.52443,1.06103 0,0.3984 0.13007,0.7155 0.39027,0.95128 0.26423,0.23172 0.62199,0.34758 1.07323,0.34758 0.62199,0 1.11997,-0.21952 1.49399,-0.65857 0.37805,-0.44312 0.56708,-1.03055 0.56712,-1.7623 l 0,-0.25002 -1.11593,0 m 2.23793,-0.46344 0,3.89657 -1.122,0 0,-1.03665 c -0.25615,0.41467 -0.57525,0.72159 -0.95739,0.92079 -0.38214,0.19513 -0.84963,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19513 -1.67084,-0.5854 -0.41056,-0.39433 -0.61589,-0.92079 -0.61589,-1.57936 0,-0.76833 0.25615,-1.34763 0.76837,-1.73791 0.5163,-0.39026 1.28462,-0.58539 2.305,-0.5854 l 1.57328,0 0,-0.10976 c -4e-5,-0.51628 -0.17075,-0.91468 -0.51226,-1.19519 -0.33742,-0.28457 -0.81304,-0.42685 -1.4269,-0.42685 -0.39027,0 -0.77039,0.0468 -1.14032,0.14025 -0.36992,0.0935 -0.72562,0.23376 -1.06712,0.42075 l 0,-1.03664 c 0.4106,-0.15854 0.809,-0.27643 1.19518,-0.35368 0.38622,-0.0813 0.76226,-0.12195 1.12814,-0.12196 0.98784,1e-5 1.72567,0.25612 2.21355,0.76834 0.48779,0.51223 0.73173,1.2887 0.73173,2.3294" + id="path4041" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 833.77521,156.12461 0,1.93913 2.31111,0 0,0.87201 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82324,0 0,-0.87201 0.82324,0 0,-1.93913 1.1281,0" + id="path4043" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 843.24528,160.77122 0,4.12219 -1.122,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.37805,-1.45131 -0.25207,-0.32115 -0.63012,-0.48173 -1.13425,-0.48173 -0.6057,0 -1.08338,0.19311 -1.43297,0.5793 -0.34963,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.12814,0 0,-9.48836 1.12814,0 0,3.71973 c 0.26828,-0.41059 0.58334,-0.71751 0.94518,-0.92078 0.36584,-0.20326 0.7866,-0.30489 1.26226,-0.3049 0.78458,1e-5 1.3781,0.24393 1.78058,0.73175 0.40248,0.48378 0.60368,1.19723 0.60368,2.14037" + id="path4045" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 849.84932,158.26498 0,1.06103 c -0.31708,-0.1626 -0.64637,-0.28456 -0.98783,-0.36587 -0.34151,-0.0813 -0.69518,-0.12195 -1.06107,-0.12196 -0.55693,1e-5 -0.97566,0.0854 -1.25615,0.25612 -0.27645,0.17074 -0.41465,0.42685 -0.41465,0.76833 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19917,0.14635 0.59959,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79678,0.17074 1.36184,0.41263 1.69522,0.72565 0.33742,0.30896 0.50611,0.74191 0.50611,1.29886 0,0.63418 -0.25207,1.13624 -0.75615,1.50618 -0.5,0.36994 -1.18908,0.55491 -2.06718,0.55491 -0.36588,0 -0.74802,-0.0366 -1.14642,-0.10976 -0.3943,-0.0691 -0.81102,-0.17481 -1.25004,-0.31709 l 0,-1.15861 c 0.41464,0.21546 0.82318,0.37808 1.22566,0.48784 0.40248,0.1057 0.80088,0.15854 1.19518,0.15854 0.52852,0 0.93504,-0.0894 1.21961,-0.26831 0.28457,-0.18293 0.42681,-0.43904 0.42686,-0.76833 -5e-5,-0.3049 -0.10367,-0.53865 -0.31102,-0.70127 -0.20326,-0.1626 -0.65248,-0.31911 -1.34761,-0.46953 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19725,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.46345,-0.72159 -0.46345,-1.25008 0,-0.6423 0.22764,-1.13827 0.68296,-1.48789 0.45533,-0.34961 1.1017,-0.52441 1.93917,-0.52442 0.41465,1e-5 0.80491,0.0305 1.1708,0.0915 0.36584,0.061 0.70326,0.15246 1.01221,0.27441" + id="path4047" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 860.88657,161.48468 c 0,-0.82525 -0.17075,-1.47163 -0.51221,-1.93914 -0.33742,-0.47157 -0.8029,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06107,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50615,1.11389 -0.50615,1.93914 0,0.82525 0.16873,1.47366 0.50615,1.94523 0.34146,0.46751 0.809,0.70126 1.40253,0.70126 0.59352,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51221,-1.11998 0.51221,-1.94523 m -3.81731,-2.38429 c 0.23581,-0.40652 0.53255,-0.70735 0.89031,-0.90249 0.3618,-0.19919 0.79275,-0.29879 1.29275,-0.2988 0.82934,1e-5 1.50211,0.32929 2.01841,0.98786 0.52034,0.65858 0.78053,1.52449 0.78053,2.59772 0,1.07323 -0.26019,1.93914 -0.78053,2.59771 -0.5163,0.65857 -1.18907,0.98786 -2.01841,0.98786 -0.5,0 -0.93095,-0.0976 -1.29275,-0.2927 -0.35776,-0.1992 -0.6545,-0.50206 -0.89031,-0.90859 l 0,1.02445 -1.1281,0 0,-9.48836 1.1281,0 0,3.69534" + id="path4049" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 866.75278,165.52759 c -0.31712,0.81306 -0.62608,1.34358 -0.9269,1.59156 -0.30083,0.24798 -0.70331,0.37197 -1.2074,0.37197 l -0.89637,0 0,-0.93908 0.65858,0 c 0.30896,0 0.54881,-0.0732 0.71952,-0.21952 0.17075,-0.14635 0.35978,-0.4919 0.56712,-1.03665 l 0.20124,-0.51222 -2.76235,-6.71991 1.18908,0 2.13429,5.34178 2.13426,-5.34178 1.18907,0 -3.00014,7.46385" + id="path4051" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 880.95481,160.77122 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13014 -0.37805,-1.45131 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60574,0 -1.08342,0.19311 -1.43301,0.5793 -0.34963,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.26832,-0.41059 0.58338,-0.71751 0.94518,-0.92078 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78458,1e-5 1.37815,0.24393 1.78058,0.73175 0.40248,0.48378 0.60372,1.19723 0.60372,2.14037" + id="path4053" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 885.85142,158.85038 c -0.60165,0 -1.07727,0.23579 -1.42691,0.70735 -0.34963,0.46752 -0.52442,1.10983 -0.52442,1.92695 0,0.81712 0.17277,1.46146 0.51832,1.93303 0.34963,0.46751 0.82727,0.70127 1.43301,0.70127 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52443,-1.11389 0.52443,-1.92694 0,-0.80899 -0.1748,-1.44927 -0.52443,-1.92085 -0.34959,-0.47563 -0.82319,-0.71345 -1.4208,-0.71345 m 0,-0.95128 c 0.97567,1e-5 1.74197,0.3171 2.2989,0.95128 0.55698,0.63419 0.83545,1.51229 0.83545,2.6343 0,1.11795 -0.27847,1.99605 -0.83545,2.6343 -0.55693,0.63418 -1.32323,0.95127 -2.2989,0.95127 -0.97971,0 -1.74807,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12201 0.2764,-2.00011 0.82929,-2.6343 0.55694,-0.63418 1.3253,-0.95127 2.30501,-0.95128" + id="path4055" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 895.33366,159.10039 0,-3.69534 1.12204,0 0,9.48836 -1.12204,0 0,-1.02445 c -0.23577,0.40653 -0.53457,0.70939 -0.89637,0.90859 -0.35776,0.19513 -0.78866,0.2927 -1.29275,0.2927 -0.82525,0 -1.49807,-0.32929 -2.01841,-0.98786 -0.5163,-0.65857 -0.77443,-1.52448 -0.77443,-2.59771 0,-1.07323 0.25813,-1.93914 0.77443,-2.59772 0.52034,-0.65857 1.19316,-0.98785 2.01841,-0.98786 0.50409,1e-5 0.93499,0.0996 1.29275,0.2988 0.3618,0.19514 0.6606,0.49597 0.89637,0.90249 m -3.82337,2.38429 c 0,0.82525 0.16868,1.47366 0.5061,1.94523 0.34151,0.46751 0.809,0.70126 1.40253,0.70126 0.59353,0 1.06106,-0.23375 1.40253,-0.70126 0.3415,-0.47157 0.51221,-1.11998 0.51221,-1.94523 0,-0.82525 -0.17071,-1.47163 -0.51221,-1.93914 -0.34147,-0.47157 -0.809,-0.70735 -1.40253,-0.70736 -0.59353,1e-5 -1.06102,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.5061,1.11389 -0.5061,1.93914" + id="path4057" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 904.6086,161.19808 0,0.54881 -5.15882,0 c 0.0488,0.7724 0.28048,1.36187 0.69518,1.76839 0.41868,0.40247 1.00004,0.6037 1.74398,0.6037 0.4309,0 0.84762,-0.0529 1.25005,-0.15855 0.40657,-0.10569 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39027 -0.42277,0.0894 -0.85165,0.13415 -1.28664,0.13415 -1.08948,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63419 -0.95128,-1.49196 -0.95128,-2.57332 0,-1.11795 0.30082,-2.00418 0.90248,-2.6587 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.8903 0.5366,0.58947 0.80492,1.39236 0.80492,2.40868 m -1.122,-0.32929 c -0.008,-0.61386 -0.1809,-1.10372 -0.51832,-1.4696 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12814,0.17684 -1.5062,0.53051 -0.37401,0.35369 -0.58948,0.85168 -0.64637,1.49399 l 4.00023,-0.006" + id="path4059" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 910.8041,158.26498 0,1.06103 c -0.31712,-0.1626 -0.64637,-0.28456 -0.98788,-0.36587 -0.34146,-0.0813 -0.69518,-0.12195 -1.06102,-0.12196 -0.55693,1e-5 -0.97566,0.0854 -1.2562,0.25612 -0.2764,0.17074 -0.41464,0.42685 -0.41464,0.76833 0,0.26018 0.0996,0.46548 0.2988,0.61589 0.19918,0.14635 0.59964,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79679,0.17074 1.36189,0.41263 1.69523,0.72565 0.33742,0.30896 0.5061,0.74191 0.50615,1.29886 -5e-5,0.63418 -0.25207,1.13624 -0.75615,1.50618 -0.50005,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36584,0 -0.74798,-0.0366 -1.14638,-0.10976 -0.39435,-0.0691 -0.81102,-0.17481 -1.25009,-0.31709 l 0,-1.15861 c 0.41465,0.21546 0.82323,0.37808 1.22567,0.48784 0.40248,0.1057 0.80087,0.15854 1.19522,0.15854 0.52847,0 0.93499,-0.0894 1.21956,-0.26831 0.28458,-0.18293 0.42686,-0.43904 0.42686,-0.76833 0,-0.3049 -0.10367,-0.53865 -0.31097,-0.70127 -0.20331,-0.1626 -0.65248,-0.31911 -1.34766,-0.46953 l -0.39027,-0.0915 c -0.69518,-0.14635 -1.19724,-0.36994 -1.5062,-0.67077 -0.30895,-0.30489 -0.4634,-0.72159 -0.4634,-1.25008 0,-0.6423 0.22764,-1.13827 0.68296,-1.48789 0.45528,-0.34961 1.10166,-0.52441 1.93912,-0.52442 0.41465,1e-5 0.80492,0.0305 1.1708,0.0915 0.36589,0.061 0.70331,0.15246 1.01226,0.27441" + id="path4061" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 913.37132,155.78922 1.28664,0 0,0.92689 -1.00004,1.94523 -0.78664,0 0.50004,-1.94523 0,-0.92689" + id="path4063" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 922.02427,156.12461 0,1.93913 2.31111,0 0,0.87201 -2.31111,0 0,3.70753 c 0,0.55695 0.0752,0.91469 0.22562,1.07323 0.15445,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70753 -0.82318,0 0,-0.87201 0.82318,0 0,-1.93913 1.12815,0" + id="path4065" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 928.46367,158.85038 c -0.60166,0 -1.07732,0.23579 -1.42691,0.70735 -0.34963,0.46752 -0.52443,1.10983 -0.52443,1.92695 0,0.81712 0.17278,1.46146 0.51832,1.93303 0.34964,0.46751 0.82728,0.70127 1.43302,0.70127 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11389 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92085 -0.34959,-0.47563 -0.82319,-0.71345 -1.4208,-0.71345 m 0,-0.95128 c 0.97566,1e-5 1.74196,0.3171 2.2989,0.95128 0.55693,0.63419 0.83544,1.51229 0.83544,2.6343 0,1.11795 -0.27851,1.99605 -0.83544,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97976,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82934,-1.51635 -0.82934,-2.6343 0,-1.12201 0.27645,-2.00011 0.82934,-2.6343 0.55693,-0.63418 1.32525,-0.95127 2.30501,-0.95128" + id="path4067" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 936.09825,158.85038 c -0.60166,0 -1.07728,0.23579 -1.42691,0.70735 -0.34963,0.46752 -0.52443,1.10983 -0.52443,1.92695 0,0.81712 0.17278,1.46146 0.51832,1.93303 0.34964,0.46751 0.82728,0.70127 1.43302,0.70127 0.59761,0 1.07121,-0.23579 1.4208,-0.70736 0.34963,-0.47157 0.52442,-1.11389 0.52442,-1.92694 0,-0.80899 -0.17479,-1.44927 -0.52442,-1.92085 -0.34959,-0.47563 -0.82319,-0.71345 -1.4208,-0.71345 m 0,-0.95128 c 0.97566,1e-5 1.74196,0.3171 2.2989,0.95128 0.55698,0.63419 0.83544,1.51229 0.83544,2.6343 0,1.11795 -0.27846,1.99605 -0.83544,2.6343 -0.55694,0.63418 -1.32324,0.95127 -2.2989,0.95127 -0.97971,0 -1.74808,-0.31709 -2.30501,-0.95127 -0.55289,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12201 0.2764,-2.00011 0.82929,-2.6343 0.55693,-0.63418 1.3253,-0.95127 2.30501,-0.95128" + id="path4069" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 941.08636,155.40505 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" + id="path4071" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 944.70849,163.34454 1.28669,0 0,1.54887 -1.28669,0 0,-1.54887" + id="path4073" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 595.615,175.22328 0,1.29886 c -0.41465,-0.3862 -0.85776,-0.67483 -1.32934,-0.86591 -0.46749,-0.19106 -0.96552,-0.28659 -1.49399,-0.2866 -1.04072,1e-5 -1.83751,0.31913 -2.39036,0.95737 -0.55289,0.63419 -0.82934,1.55294 -0.82934,2.75626 0,1.19926 0.27645,2.11801 0.82934,2.75626 0.55285,0.63418 1.34964,0.95128 2.39036,0.95127 0.52847,1e-5 1.0265,-0.0955 1.49399,-0.2866 0.47158,-0.19107 0.91469,-0.4797 1.32934,-0.8659 l 0,1.28666 c -0.4309,0.2927 -0.88825,0.51223 -1.37204,0.65858 -0.47971,0.14635 -0.98783,0.21952 -1.52447,0.21952 -1.3781,0 -2.46355,-0.42076 -3.25629,-1.26227 -0.79271,-0.84558 -1.18908,-1.99808 -1.18908,-3.45752 0,-1.46349 0.39637,-2.616 1.18908,-3.45751 0.79274,-0.84557 1.87819,-1.26836 3.25629,-1.26837 0.54476,1e-5 1.05698,0.0732 1.53668,0.21952 0.48375,0.1423 0.93706,0.35776 1.35983,0.64638" + id="path4075" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 597.48098,174.13785 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" + id="path4077" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 606.78641,179.93087 0,0.54881 -5.15887,0 c 0.0488,0.77241 0.28053,1.36187 0.69518,1.7684 0.41873,0.40246 1.00005,0.6037 1.74399,0.6037 0.43094,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.8151,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28664,0.13416 -1.08953,0 -1.9534,-0.31709 -2.59164,-0.95127 -0.63416,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90253,-2.65869 0.60569,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.64435,0.29677 2.17695,0.89029 0.5366,0.58948 0.80492,1.39237 0.80492,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33334,-0.36587 -0.77645,-0.54881 -1.32934,-0.54881 -0.62604,0 -1.1281,0.17684 -1.5062,0.53052 -0.37397,0.35368 -0.58944,0.85167 -0.64638,1.49398 l 4.00024,-0.006" + id="path4079" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 611.73182,180.19308 c -0.90657,1e-5 -1.53467,0.10367 -1.88425,0.311 -0.34964,0.20733 -0.52443,0.56101 -0.52443,1.06103 0,0.3984 0.13007,0.71549 0.39027,0.95128 0.26423,0.23172 0.62199,0.34758 1.07323,0.34758 0.62199,0 1.11997,-0.21952 1.49399,-0.65858 0.37805,-0.44311 0.56708,-1.03054 0.56708,-1.76229 l 0,-0.25002 -1.11589,0 m 2.23793,-0.46344 0,3.89657 -1.12204,0 0,-1.03665 c -0.25611,0.41466 -0.57521,0.72159 -0.95735,0.92079 -0.38214,0.19513 -0.84963,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19514 -1.67084,-0.5854 -0.41056,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34764 0.76837,-1.73791 0.51625,-0.39026 1.28462,-0.58539 2.305,-0.5854 l 1.57324,0 0,-0.10976 c 0,-0.51629 -0.17071,-0.91468 -0.51222,-1.19519 -0.33742,-0.28456 -0.81304,-0.42685 -1.4269,-0.42685 -0.39027,0 -0.77039,0.0468 -1.14032,0.14025 -0.36992,0.0935 -0.72566,0.23375 -1.06712,0.42075 l 0,-1.03664 c 0.4106,-0.15854 0.809,-0.27644 1.19518,-0.35368 0.38622,-0.0813 0.76226,-0.12195 1.1281,-0.12196 0.98788,1e-5 1.72571,0.25612 2.21354,0.76834 0.48784,0.51223 0.73178,1.28869 0.73178,2.3294" + id="path4081" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 621.9641,179.50402 0,4.12219 -1.12199,0 0,-4.0856 c -5e-5,-0.64638 -0.12603,-1.13015 -0.3781,-1.45131 -0.25202,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60573,0 -1.08338,0.1931 -1.43301,0.5793 -0.34959,0.38621 -0.52442,0.91266 -0.52442,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.26831,-0.41058 0.58337,-0.71751 0.94517,-0.92079 0.36589,-0.20325 0.78664,-0.30488 1.26226,-0.30489 0.78462,1e-5 1.37815,0.24392 1.78063,0.73175 0.40243,0.48377 0.60367,1.19723 0.60367,2.14037" + id="path4083" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 628.23886,174.52202 1.83549,0 2.32328,6.19548 2.33554,-6.19548 1.83545,0 0,9.10419 -1.20129,0 0,-7.99437 -2.34771,6.24427 -1.23788,0 -2.3477,-6.24427 0,7.99437 -1.19518,0 0,-9.10419" + id="path4085" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 642.07505,180.19308 c -0.90657,1e-5 -1.53467,0.10367 -1.88425,0.311 -0.34964,0.20733 -0.52443,0.56101 -0.52443,1.06103 0,0.3984 0.13007,0.71549 0.39027,0.95128 0.26423,0.23172 0.62199,0.34758 1.07323,0.34758 0.62199,0 1.11997,-0.21952 1.49399,-0.65858 0.37805,-0.44311 0.56708,-1.03054 0.56708,-1.76229 l 0,-0.25002 -1.11589,0 m 2.23792,-0.46344 0,3.89657 -1.12203,0 0,-1.03665 c -0.25611,0.41466 -0.57521,0.72159 -0.95735,0.92079 -0.38214,0.19513 -0.84963,0.2927 -1.40253,0.2927 -0.69922,0 -1.25615,-0.19514 -1.67084,-0.5854 -0.41056,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34764 0.76837,-1.73791 0.51625,-0.39026 1.28462,-0.58539 2.305,-0.5854 l 1.57324,0 0,-0.10976 c 0,-0.51629 -0.17071,-0.91468 -0.51222,-1.19519 -0.33742,-0.28456 -0.81304,-0.42685 -1.4269,-0.42685 -0.39027,0 -0.77039,0.0468 -1.14032,0.14025 -0.36992,0.0935 -0.72566,0.23375 -1.06712,0.42075 l 0,-1.03664 c 0.4106,-0.15854 0.809,-0.27644 1.19518,-0.35368 0.38622,-0.0813 0.76226,-0.12195 1.1281,-0.12196 0.98788,1e-5 1.72571,0.25612 2.21354,0.76834 0.48784,0.51223 0.73177,1.28869 0.73177,2.3294" + id="path4087" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 647.74002,174.85741 0,1.93914 2.31111,0 0,0.87199 -2.31111,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15445,0.15855 0.46547,0.23782 0.93297,0.23782 l 1.15252,0 0,0.93908 -1.15252,0 c -0.86589,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82318,0 0,-0.87199 0.82318,0 0,-1.93914 1.12815,0" + id="path4089" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 657.37469,179.93087 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.7684 0.41869,0.40246 1.00005,0.6037 1.74399,0.6037 0.4309,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.1057 0.80896,-0.26424 1.20735,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23783,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.42085,-0.98785 2.44528,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.89029 0.53659,0.58948 0.80491,1.39237 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12815,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58949,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4091" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 663.17383,177.84538 c -0.12604,-0.0732 -0.26424,-0.12601 -0.41465,-0.15854 -0.14637,-0.0366 -0.30895,-0.0549 -0.48783,-0.0549 -0.63421,0 -1.12204,0.20733 -1.4635,0.62198 -0.33742,0.41061 -0.50616,1.0021 -0.50616,1.7745 l 0,3.59777 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.23582,-0.41465 0.54275,-0.72158 0.9208,-0.92079 0.37806,-0.20325 0.83747,-0.30488 1.37815,-0.30489 0.0772,1e-5 0.16258,0.006 0.25611,0.0183 0.0935,0.008 0.19715,0.0224 0.31097,0.0427 l 0.006,1.15251" + id="path4093" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 664.3629,176.79655 1.12204,0 0,6.82966 -1.12204,0 0,-6.82966 m 0,-2.6587 1.12204,0 0,1.42082 -1.12204,0 0,-1.42082" + id="path4095" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 670.93035,180.19308 c -0.90652,1e-5 -1.53462,0.10367 -1.88425,0.311 -0.34959,0.20733 -0.52443,0.56101 -0.52438,1.06103 -5e-5,0.3984 0.13007,0.71549 0.39027,0.95128 0.26423,0.23172 0.62194,0.34758 1.07323,0.34758 0.62195,0 1.11997,-0.21952 1.49398,-0.65858 0.37806,-0.44311 0.56709,-1.03054 0.56709,-1.76229 l 0,-0.25002 -1.11594,0 m 2.23797,-0.46344 0,3.89657 -1.12203,0 0,-1.03665 c -0.25611,0.41466 -0.57526,0.72159 -0.95735,0.92079 -0.38214,0.19513 -0.84968,0.2927 -1.40253,0.2927 -0.69926,0 -1.2562,-0.19514 -1.67084,-0.5854 -0.41061,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34764 0.76832,-1.73791 0.5163,-0.39026 1.28462,-0.58539 2.30505,-0.5854 l 1.57324,0 0,-0.10976 c 0,-0.51629 -0.17076,-0.91468 -0.51222,-1.19519 -0.33742,-0.28456 -0.81308,-0.42685 -1.4269,-0.42685 -0.39027,0 -0.77039,0.0468 -1.14032,0.14025 -0.36997,0.0935 -0.72566,0.23375 -1.06712,0.42075 l 0,-1.03664 c 0.41056,-0.15854 0.80895,-0.27644 1.19518,-0.35368 0.38618,-0.0813 0.76221,-0.12195 1.1281,-0.12196 0.98788,1e-5 1.72571,0.25612 2.21354,0.76834 0.48784,0.51223 0.73173,1.28869 0.73177,2.3294" + id="path4097" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 675.4855,174.13785 1.12204,0 0,9.48836 -1.12204,0 0,-9.48836" + id="path4099" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 682.97375,174.52202 5.75643,0 0,1.03665 -4.52466,0 0,2.69527 4.33564,0 0,1.03665 -4.33564,0 0,3.29897 4.63444,0 0,1.03665 -5.86621,0 0,-9.10419" + id="path4101" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 695.32202,177.83319 0,-3.69534 1.12204,0 0,9.48836 -1.12204,0 0,-1.02445 c -0.23577,0.40653 -0.53458,0.70939 -0.89638,0.90859 -0.35776,0.19513 -0.78866,0.2927 -1.29274,0.2927 -0.82526,0 -1.49808,-0.32929 -2.01842,-0.98786 -0.5163,-0.65858 -0.77442,-1.52448 -0.77442,-2.59771 0,-1.07323 0.25812,-1.93914 0.77442,-2.59772 0.52034,-0.65857 1.19316,-0.98785 2.01842,-0.98786 0.50408,1e-5 0.93498,0.0996 1.29274,0.2988 0.3618,0.19514 0.66061,0.49597 0.89638,0.90249 m -3.82338,2.38429 c 0,0.82525 0.16869,1.47366 0.50611,1.94523 0.34151,0.46751 0.809,0.70126 1.40253,0.70126 0.59352,0 1.06106,-0.23375 1.40252,-0.70126 0.34151,-0.47157 0.51222,-1.11998 0.51222,-1.94523 0,-0.82525 -0.17071,-1.47163 -0.51222,-1.93914 -0.34146,-0.47157 -0.809,-0.70735 -1.40252,-0.70736 -0.59353,1e-5 -1.06102,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50611,1.11389 -0.50611,1.93914" + id="path4103" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 703.24934,180.1321 c 0,-0.81305 -0.16873,-1.44317 -0.50615,-1.89035 -0.33334,-0.44717 -0.80289,-0.67076 -1.40859,-0.67077 -0.6017,1e-5 -1.07121,0.2236 -1.40863,0.67077 -0.33338,0.44718 -0.50005,1.0773 -0.50005,1.89035 0,0.80899 0.16667,1.43708 0.50005,1.88426 0.33742,0.44718 0.80693,0.67077 1.40863,0.67077 0.6057,0 1.07525,-0.22359 1.40859,-0.67077 0.33742,-0.44718 0.50615,-1.07527 0.50615,-1.88426 m 1.12199,2.6465 c 0,1.16267 -0.25812,2.02654 -0.77442,2.59161 -0.5163,0.56914 -1.30698,0.85371 -2.37209,0.85371 -0.39435,0 -0.7663,-0.0305 -1.11593,-0.0915 -0.34959,-0.0569 -0.68907,-0.14635 -1.01832,-0.26831 l 0,-1.09152 c 0.32925,0.17887 0.6545,0.31099 0.97566,0.39636 0.32113,0.0854 0.6484,0.12805 0.98173,0.12806 0.73582,-1e-5 1.28669,-0.1931 1.65257,-0.5793 0.36584,-0.38214 0.54881,-0.96144 0.54881,-1.73791 l 0,-0.55491 c -0.23173,0.40246 -0.52851,0.70329 -0.89031,0.90249 -0.3618,0.1992 -0.79477,0.2988 -1.29886,0.2988 -0.83746,0 -1.51226,-0.31913 -2.02451,-0.95737 -0.51222,-0.63825 -0.76832,-1.48383 -0.76832,-2.53674 0,-1.05696 0.2561,-1.90458 0.76832,-2.54283 0.51225,-0.63824 1.18705,-0.95736 2.02451,-0.95737 0.50409,1e-5 0.93706,0.0996 1.29886,0.2988 0.3618,0.1992 0.65858,0.50003 0.89031,0.90249 l 0,-1.03664 1.12199,0 0,5.98205" + id="path4105" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 712.52428,179.93087 0,0.54881 -5.15887,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.7684 0.41874,0.40246 1.00005,0.6037 1.74399,0.6037 0.4309,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.1057 0.80896,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.42085,-0.98785 2.44528,-0.98786 0.91878,1e-5 1.6444,0.29677 2.17695,0.89029 0.53664,0.58948 0.80491,1.39237 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12815,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58944,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4107" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 718.71974,176.99778 0,1.06103 c -0.31708,-0.1626 -0.64637,-0.28456 -0.98788,-0.36587 -0.34146,-0.0813 -0.69513,-0.12195 -1.06102,-0.12196 -0.55693,1e-5 -0.97567,0.0854 -1.25615,0.25611 -0.27645,0.17075 -0.4147,0.42686 -0.4147,0.76834 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19922,0.14635 0.59963,0.28661 1.20129,0.42076 l 0.38416,0.0854 c 0.79683,0.17075 1.36189,0.41263 1.69522,0.72566 0.33742,0.30896 0.50616,0.74191 0.50616,1.29885 0,0.63419 -0.25207,1.13625 -0.75616,1.50619 -0.50004,0.36994 -1.18907,0.55491 -2.06717,0.55491 -0.36589,0 -0.74803,-0.0366 -1.14642,-0.10976 -0.39435,-0.0691 -0.81102,-0.17481 -1.25009,-0.3171 l 0,-1.1586 c 0.41469,0.21546 0.82323,0.37807 1.22571,0.48784 0.40243,0.10569 0.80083,0.15854 1.19518,0.15854 0.52847,0 0.93499,-0.0894 1.21956,-0.26831 0.28457,-0.18293 0.42686,-0.43905 0.42686,-0.76833 0,-0.3049 -0.10367,-0.53865 -0.31097,-0.70127 -0.20326,-0.16261 -0.65248,-0.31912 -1.34766,-0.46953 l -0.39027,-0.0915 c -0.69513,-0.14635 -1.1972,-0.36994 -1.50615,-0.67078 -0.309,-0.30489 -0.46346,-0.72158 -0.46346,-1.25007 0,-0.64231 0.22764,-1.13827 0.68297,-1.48789 0.45528,-0.3496 1.1017,-0.52441 1.93912,-0.52442 0.41465,1e-5 0.80491,0.0305 1.1708,0.0915 0.36589,0.061 0.70331,0.15245 1.01226,0.27441" + id="path4109" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 721.16501,182.07734 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887 m 0,-4.90882 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" + id="path4111" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 732.16566,175.73551 -1.67084,4.53075 3.34775,0 -1.67691,-4.53075 m -0.69518,-1.21349 1.39642,0 3.46975,9.10419 -1.28058,0 -0.82934,-2.3355 -4.10386,0 -0.82934,2.3355 -1.29885,0 3.4758,-9.10419" + id="path4113" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 741.8979,177.83319 0,-3.69534 1.12204,0 0,9.48836 -1.12204,0 0,-1.02445 c -0.23576,0.40653 -0.53457,0.70939 -0.89637,0.90859 -0.35776,0.19513 -0.78866,0.2927 -1.29275,0.2927 -0.82525,0 -1.49807,-0.32929 -2.01841,-0.98786 -0.5163,-0.65858 -0.77443,-1.52448 -0.77443,-2.59771 0,-1.07323 0.25813,-1.93914 0.77443,-2.59772 0.52034,-0.65857 1.19316,-0.98785 2.01841,-0.98786 0.50409,1e-5 0.93499,0.0996 1.29275,0.2988 0.3618,0.19514 0.66061,0.49597 0.89637,0.90249 m -3.82337,2.38429 c 0,0.82525 0.16869,1.47366 0.50611,1.94523 0.3415,0.46751 0.809,0.70126 1.40252,0.70126 0.59353,0 1.06107,-0.23375 1.40253,-0.70126 0.34151,-0.47157 0.51221,-1.11998 0.51221,-1.94523 0,-0.82525 -0.1707,-1.47163 -0.51221,-1.93914 -0.34146,-0.47157 -0.809,-0.70735 -1.40253,-0.70736 -0.59352,1e-5 -1.06102,0.23579 -1.40252,0.70736 -0.33742,0.46751 -0.50611,1.11389 -0.50611,1.93914" + id="path4115" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 749.8374,177.83319 0,-3.69534 1.12204,0 0,9.48836 -1.12204,0 0,-1.02445 c -0.23577,0.40653 -0.53458,0.70939 -0.89638,0.90859 -0.35776,0.19513 -0.78866,0.2927 -1.29274,0.2927 -0.82526,0 -1.49808,-0.32929 -2.01842,-0.98786 -0.5163,-0.65858 -0.77447,-1.52448 -0.77447,-2.59771 0,-1.07323 0.25817,-1.93914 0.77447,-2.59772 0.52034,-0.65857 1.19316,-0.98785 2.01842,-0.98786 0.50408,1e-5 0.93498,0.0996 1.29274,0.2988 0.3618,0.19514 0.66061,0.49597 0.89638,0.90249 m -3.82338,2.38429 c 0,0.82525 0.16869,1.47366 0.50611,1.94523 0.34151,0.46751 0.809,0.70126 1.40253,0.70126 0.59352,0 1.06102,-0.23375 1.40252,-0.70126 0.34146,-0.47157 0.51222,-1.11998 0.51222,-1.94523 0,-0.82525 -0.17076,-1.47163 -0.51222,-1.93914 -0.3415,-0.47157 -0.809,-0.70735 -1.40252,-0.70736 -0.59353,1e-5 -1.06102,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50611,1.11389 -0.50611,1.93914" + id="path4117" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 760.35021,180.19308 c -0.90656,1e-5 -1.53462,0.10367 -1.88425,0.311 -0.34963,0.20733 -0.52443,0.56101 -0.52443,1.06103 0,0.3984 0.13012,0.71549 0.39027,0.95128 0.26423,0.23172 0.62199,0.34758 1.07323,0.34758 0.622,0 1.11998,-0.21952 1.49399,-0.65858 0.3781,-0.44311 0.56713,-1.03054 0.56713,-1.76229 l 0,-0.25002 -1.11594,0 m 2.23793,-0.46344 0,3.89657 -1.12199,0 0,-1.03665 c -0.25611,0.41466 -0.57526,0.72159 -0.9574,0.92079 -0.38214,0.19513 -0.84963,0.2927 -1.40252,0.2927 -0.69922,0 -1.25616,-0.19514 -1.6708,-0.5854 -0.41061,-0.39433 -0.61589,-0.92078 -0.61589,-1.57936 0,-0.76833 0.25611,-1.34764 0.76832,-1.73791 0.5163,-0.39026 1.28462,-0.58539 2.30501,-0.5854 l 1.57328,0 0,-0.10976 c 0,-0.51629 -0.17076,-0.91468 -0.51222,-1.19519 -0.33742,-0.28456 -0.81308,-0.42685 -1.42695,-0.42685 -0.39027,0 -0.77034,0.0468 -1.14027,0.14025 -0.36997,0.0935 -0.72566,0.23375 -1.06717,0.42075 l 0,-1.03664 c 0.41061,-0.15854 0.809,-0.27644 1.19523,-0.35368 0.38618,-0.0813 0.76221,-0.12195 1.1281,-0.12196 0.98783,1e-5 1.72571,0.25612 2.21354,0.76834 0.48784,0.51223 0.73173,1.28869 0.73173,2.3294" + id="path4119" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 773.79614,177.05875 0,1.04884 c -0.31713,-0.17479 -0.63623,-0.30489 -0.95739,-0.39026 -0.31708,-0.0894 -0.63825,-0.13415 -0.96346,-0.13415 -0.72768,0 -1.29279,0.23172 -1.69522,0.69516 -0.40248,0.45938 -0.60372,1.10576 -0.60372,1.93914 0,0.83338 0.20124,1.48179 0.60372,1.94523 0.40243,0.45938 0.96754,0.68907 1.69522,0.68907 0.32521,0 0.64638,-0.0427 0.96346,-0.12806 0.32116,-0.0894 0.64026,-0.22156 0.95739,-0.39637 l 0,1.03665 c -0.31304,0.14635 -0.63829,0.25611 -0.97567,0.32929 -0.33338,0.0732 -0.68907,0.10976 -1.06717,0.10976 -1.02851,0 -1.84564,-0.32319 -2.45133,-0.96957 -0.60574,-0.64638 -0.90859,-1.51838 -0.90859,-2.616 0,-1.11389 0.30487,-1.98996 0.91469,-2.62821 0.61382,-0.63824 1.45331,-0.95736 2.51842,-0.95737 0.34554,1e-5 0.68296,0.0366 1.01226,0.10976 0.32929,0.0691 0.64839,0.17482 0.95739,0.31709" + id="path4121" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 775.6438,180.93093 0,-4.13438 1.12199,0 0,4.09169 c 0,0.64639 0.12604,1.13218 0.3781,1.45741 0.25202,0.32115 0.63012,0.48173 1.13421,0.48173 0.60569,0 1.08338,-0.1931 1.43301,-0.5793 0.35368,-0.3862 0.53049,-0.91265 0.53049,-1.57936 l 0,-3.87217 1.12204,0 0,6.82966 -1.12204,0 0,-1.04884 c -0.27236,0.41466 -0.58944,0.72362 -0.95124,0.92688 -0.35776,0.1992 -0.77447,0.2988 -1.25009,0.2988 -0.78458,0 -1.38017,-0.24392 -1.78669,-0.73175 -0.40652,-0.48784 -0.60978,-1.20129 -0.60978,-2.14037" + id="path4123" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 784.79675,174.85741 0,1.93914 2.31111,0 0,0.87199 -2.31111,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15449,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.7928,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82323,0 0,-0.87199 0.82323,0 0,-1.93914 1.12811,0" + id="path4125" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 789.6995,174.85741 0,1.93914 2.31112,0 0,0.87199 -2.31112,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15446,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82319,0 0,-0.87199 0.82319,0 0,-1.93914 1.12814,0" + id="path4127" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 793.49239,176.79655 1.12199,0 0,6.82966 -1.12199,0 0,-6.82966 m 0,-2.6587 1.12199,0 0,1.42082 -1.12199,0 0,-1.42082" + id="path4129" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 802.63317,179.50402 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12599,-1.13015 -0.37805,-1.45131 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60574,0 -1.08343,0.1931 -1.43301,0.5793 -0.34964,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92079 0.36589,-0.20325 0.78664,-0.30488 1.26226,-0.30489 0.78462,1e-5 1.37815,0.24392 1.78058,0.73175 0.40248,0.48377 0.60372,1.19723 0.60372,2.14037" + id="path4131" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 809.37748,180.1321 c -4e-5,-0.81305 -0.16873,-1.44317 -0.50615,-1.89035 -0.33333,-0.44717 -0.80289,-0.67076 -1.40863,-0.67077 -0.60166,1e-5 -1.07117,0.2236 -1.40859,0.67077 -0.33338,0.44718 -0.50005,1.0773 -0.50005,1.89035 0,0.80899 0.16667,1.43708 0.50005,1.88426 0.33742,0.44718 0.80693,0.67077 1.40859,0.67077 0.60574,0 1.0753,-0.22359 1.40863,-0.67077 0.33742,-0.44718 0.50611,-1.07527 0.50615,-1.88426 m 1.122,2.6465 c 0,1.16267 -0.25813,2.02654 -0.77443,2.59161 -0.5163,0.56914 -1.30698,0.85371 -2.37209,0.85371 -0.39435,0 -0.7663,-0.0305 -1.11593,-0.0915 -0.34963,-0.0569 -0.68907,-0.14635 -1.01837,-0.26831 l 0,-1.09152 c 0.3293,0.17887 0.65455,0.31099 0.97567,0.39636 0.32117,0.0854 0.64844,0.12805 0.98177,0.12806 0.73582,-1e-5 1.28669,-0.1931 1.65253,-0.5793 0.36589,-0.38214 0.54881,-0.96144 0.54885,-1.73791 l 0,-0.55491 c -0.23173,0.40246 -0.52851,0.70329 -0.89031,0.90249 -0.3618,0.1992 -0.79477,0.2988 -1.29885,0.2988 -0.83747,0 -1.51231,-0.31913 -2.02452,-0.95737 -0.51222,-0.63825 -0.76832,-1.48383 -0.76832,-2.53674 0,-1.05696 0.2561,-1.90458 0.76832,-2.54283 0.51221,-0.63824 1.18705,-0.95736 2.02452,-0.95737 0.50408,1e-5 0.93705,0.0996 1.29885,0.2988 0.3618,0.1992 0.65858,0.50003 0.89031,0.90249 l 0,-1.03664 1.122,0 0,5.98205" + id="path4133" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 816.78644,174.13785 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" + id="path4135" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 820.25003,176.79655 1.12204,0 0,6.82966 -1.12204,0 0,-6.82966 m 0,-2.6587 1.12204,0 0,1.42082 -1.12204,0 0,-1.42082" + id="path4137" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 829.39081,179.50402 0,4.12219 -1.12199,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13015 -0.3781,-1.45131 -0.25202,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60569,0 -1.08338,0.1931 -1.43301,0.5793 -0.34959,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82966 1.1281,0 0,1.06103 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92079 0.36589,-0.20325 0.78664,-0.30488 1.26231,-0.30489 0.78457,1e-5 1.3781,0.24392 1.78058,0.73175 0.40243,0.48377 0.60367,1.19723 0.60367,2.14037" + id="path4139" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 837.48274,179.93087 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.7684 0.41874,0.40246 1.0001,0.6037 1.74404,0.6037 0.4309,0 0.84761,-0.0529 1.25004,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81506,0.30083 -1.23788,0.39026 -0.42278,0.0894 -0.85166,0.13416 -1.28664,0.13416 -1.08949,0 -1.95336,-0.31709 -2.5916,-0.95127 -0.63421,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29677 2.17696,0.89029 0.53659,0.58948 0.80491,1.39237 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.18095,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.7765,-0.54881 -1.32939,-0.54881 -0.62603,0 -1.1281,0.17684 -1.50615,0.53052 -0.37402,0.35368 -0.58949,0.85167 -0.64638,1.49398 l 4.00024,-0.006" + id="path4141" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 844.41002,174.85741 0,1.93914 2.31111,0 0,0.87199 -2.31111,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15445,0.15855 0.46547,0.23782 0.93296,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86588,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32929,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82319,0 0,-0.87199 0.82319,0 0,-1.93914 1.12815,0" + id="path4143" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 850.84937,177.58318 c -0.60165,0 -1.07727,0.23579 -1.42691,0.70735 -0.34958,0.46751 -0.52442,1.10983 -0.52442,1.92695 0,0.81712 0.17277,1.46146 0.51832,1.93303 0.34963,0.46751 0.82732,0.70127 1.43301,0.70127 0.59761,0 1.07121,-0.23579 1.42085,-0.70737 0.34958,-0.47157 0.52438,-1.11388 0.52442,-1.92693 -4e-5,-0.80899 -0.17484,-1.44927 -0.52442,-1.92085 -0.34964,-0.47563 -0.82324,-0.71345 -1.42085,-0.71345 m 0,-0.95128 c 0.97567,1e-5 1.74197,0.3171 2.29895,0.95128 0.55693,0.63418 0.8354,1.51228 0.8354,2.6343 0,1.11795 -0.27847,1.99605 -0.8354,2.6343 -0.55698,0.63418 -1.32328,0.95127 -2.29895,0.95127 -0.97971,0 -1.74807,-0.31709 -2.30501,-0.95127 -0.55284,-0.63825 -0.82929,-1.51635 -0.82929,-2.6343 0,-1.12202 0.27645,-2.00012 0.82929,-2.6343 0.55694,-0.63418 1.3253,-0.95127 2.30501,-0.95128" + id="path4145" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 860.92312,174.85741 0,1.93914 2.31111,0 0,0.87199 -2.31111,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.1545,0.15855 0.46547,0.23782 0.93301,0.23782 l 1.15248,0 0,0.93908 -1.15248,0 c -0.86593,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82324,0 0,-0.87199 0.82324,0 0,-1.93914 1.1281,0" + id="path4147" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 870.39323,179.50402 0,4.12219 -1.12204,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13015 -0.37805,-1.45131 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60574,0 -1.08342,0.1931 -1.43301,0.5793 -0.34963,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.12814,0 0,-9.48836 1.12814,0 0,3.71973 c 0.26828,-0.41058 0.58334,-0.71751 0.94518,-0.92079 0.36585,-0.20325 0.7866,-0.30488 1.26226,-0.30489 0.78458,1e-5 1.3781,0.24392 1.78058,0.73175 0.40248,0.48377 0.60368,1.19723 0.60372,2.14037" + id="path4149" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 878.48516,179.93087 0,0.54881 -5.15887,0 c 0.0488,0.77241 0.28054,1.36187 0.69518,1.7684 0.41874,0.40246 1.00005,0.6037 1.74399,0.6037 0.43095,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63416,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90253,-2.65869 0.60569,-0.65857 1.4208,-0.98785 2.44523,-0.98786 0.91878,1e-5 1.6444,0.29677 2.177,0.89029 0.53659,0.58948 0.80491,1.39237 0.80491,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33333,-0.36587 -0.77645,-0.54881 -1.32934,-0.54881 -0.62603,0 -1.1281,0.17684 -1.5062,0.53052 -0.37397,0.35368 -0.58944,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4151" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 883.65009,176.79655 1.12199,0 1.40253,5.32957 1.39642,-5.32957 1.32328,0 1.40248,5.32957 1.39646,-5.32957 1.122,0 -1.78669,6.82966 -1.32323,0 -1.46961,-5.59789 -1.47571,5.59789 -1.32324,0 -1.78668,-6.82966" + id="path4153" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 900.19982,179.50402 0,4.12219 -1.12199,0 0,-4.0856 c 0,-0.64638 -0.12603,-1.13015 -0.3781,-1.45131 -0.25202,-0.32115 -0.63012,-0.48173 -1.13421,-0.48173 -0.60574,0 -1.08338,0.1931 -1.43301,0.5793 -0.34959,0.38621 -0.52443,0.91266 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-9.48836 1.1281,0 0,3.71973 c 0.26832,-0.41058 0.58338,-0.71751 0.94518,-0.92079 0.36589,-0.20325 0.78664,-0.30488 1.26231,-0.30489 0.78457,1e-5 1.3781,0.24392 1.78058,0.73175 0.40243,0.48377 0.60367,1.19723 0.60367,2.14037" + id="path4155" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 902.44996,176.79655 1.12204,0 0,6.82966 -1.12204,0 0,-6.82966 m 0,-2.6587 1.12204,0 0,1.42082 -1.12204,0 0,-1.42082" + id="path4157" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 907.02338,174.85741 0,1.93914 2.31112,0 0,0.87199 -2.31112,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.1545,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.32925,-0.32523 -0.4939,-0.91469 -0.4939,-1.7684 l 0,-3.70754 -0.82323,0 0,-0.87199 0.82323,0 0,-1.93914 1.1281,0" + id="path4159" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 916.6581,179.93087 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69514,1.7684 0.41873,0.40246 1.00004,0.6037 1.74403,0.6037 0.4309,0 0.84757,-0.0529 1.25005,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42277,0.0894 -0.85165,0.13416 -1.28664,0.13416 -1.08953,0 -1.9534,-0.31709 -2.59165,-0.95127 -0.63416,-0.63419 -0.95124,-1.49196 -0.95124,-2.57333 0,-1.11794 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98785 2.44528,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.89029 0.53659,0.58948 0.80491,1.39237 0.80491,2.40868 m -1.12199,-0.32929 c -0.008,-0.61385 -0.18095,-1.10371 -0.51837,-1.46959 -0.33333,-0.36587 -0.77644,-0.54881 -1.32934,-0.54881 -0.62603,0 -1.1281,0.17684 -1.50615,0.53052 -0.37401,0.35368 -0.58949,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4161" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 923.56095,182.60176 0,3.62216 -1.12814,0 0,-9.42737 1.12814,0 0,1.03664 c 0.23577,-0.40652 0.53256,-0.70735 0.89027,-0.90249 0.3618,-0.1992 0.79275,-0.29879 1.29279,-0.2988 0.8293,1e-5 1.50212,0.32929 2.01837,0.98786 0.52039,0.65858 0.78053,1.52449 0.78053,2.59772 0,1.07323 -0.26014,1.93913 -0.78053,2.59771 -0.51625,0.65857 -1.18907,0.98786 -2.01837,0.98786 -0.50004,0 -0.93099,-0.0976 -1.29279,-0.2927 -0.35771,-0.1992 -0.6545,-0.50206 -0.89027,-0.90859 m 3.81727,-2.38428 c 0,-0.82525 -0.17075,-1.47163 -0.51221,-1.93914 -0.33742,-0.47157 -0.8029,-0.70735 -1.39642,-0.70736 -0.59353,1e-5 -1.06102,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50611,1.11389 -0.50611,1.93914 0,0.82525 0.16869,1.47366 0.50611,1.94523 0.34151,0.46751 0.809,0.70126 1.40253,0.70126 0.59352,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51221,-1.11998 0.51221,-1.94523" + id="path4163" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 936.24462,179.93087 0,0.54881 -5.15887,0 c 0.0488,0.77241 0.28054,1.36187 0.69518,1.7684 0.41874,0.40246 1.00005,0.6037 1.74399,0.6037 0.43095,0 0.84761,-0.0529 1.25009,-0.15855 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08949,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.63416,-0.63419 -0.95129,-1.49196 -0.95129,-2.57333 0,-1.11794 0.30083,-2.00417 0.90253,-2.65869 0.60569,-0.65857 1.4208,-0.98785 2.44523,-0.98786 0.91878,1e-5 1.6444,0.29677 2.17695,0.89029 0.53664,0.58948 0.80496,1.39237 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33333,-0.36587 -0.77645,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.1281,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58944,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4165" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 942.04371,177.84538 c -0.12604,-0.0732 -0.26424,-0.12601 -0.41465,-0.15854 -0.14633,-0.0366 -0.30895,-0.0549 -0.48783,-0.0549 -0.63416,0 -1.122,0.20733 -1.4635,0.62198 -0.33742,0.41061 -0.50611,1.0021 -0.50611,1.7745 l 0,3.59777 -1.12815,0 0,-6.82966 1.12815,0 0,1.06103 c 0.23577,-0.41465 0.5427,-0.72158 0.92075,-0.92079 0.3781,-0.20325 0.83747,-0.30488 1.37815,-0.30489 0.0772,1e-5 0.16263,0.006 0.25611,0.0183 0.0935,0.008 0.19715,0.0224 0.31102,0.0427 l 0.006,1.15251" + id="path4167" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 943.23283,176.79655 1.12199,0 0,6.82966 -1.12199,0 0,-6.82966 m 0,-2.6587 1.12199,0 0,1.42082 -1.12199,0 0,-1.42082" + id="path4169" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 952.01382,178.10759 c 0.28049,-0.50408 0.61589,-0.87605 1.00616,-1.11591 0.39026,-0.23985 0.84963,-0.35977 1.3781,-0.35978 0.71143,1e-5 1.26024,0.25002 1.64646,0.75005 0.38618,0.49596 0.5793,1.20332 0.5793,2.12207 l 0,4.12219 -1.1281,0 0,-4.0856 c -5e-5,-0.65451 -0.11589,-1.14031 -0.34762,-1.45741 -0.23172,-0.31708 -0.5854,-0.47563 -1.06102,-0.47563 -0.58135,0 -1.04072,0.1931 -1.37814,0.5793 -0.33742,0.38621 -0.50611,0.91266 -0.50611,1.57936 l 0,3.85998 -1.1281,0 0,-4.0856 c -4e-5,-0.65858 -0.11588,-1.14438 -0.34761,-1.45741 -0.23173,-0.31708 -0.58944,-0.47563 -1.07323,-0.47563 -0.57319,0 -1.02852,0.19513 -1.36594,0.5854 -0.33742,0.3862 -0.5061,0.91062 -0.5061,1.57326 l 0,3.85998 -1.12815,0 0,-6.82966 1.12815,0 0,1.06103 c 0.2561,-0.41872 0.56304,-0.72768 0.92075,-0.92688 0.35776,-0.1992 0.7826,-0.29879 1.27447,-0.2988 0.49596,1e-5 0.91672,0.12603 1.26226,0.37807 0.34963,0.25205 0.60776,0.61793 0.77447,1.09762" + id="path4171" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 964.7097,179.93087 0,0.54881 -5.15886,0 c 0.0488,0.77241 0.28048,1.36187 0.69518,1.7684 0.41873,0.40246 1.00004,0.6037 1.74398,0.6037 0.4309,0 0.84762,-0.0529 1.2501,-0.15855 0.40652,-0.1057 0.80895,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39026 -0.42282,0.0894 -0.8517,0.13416 -1.28669,0.13416 -1.08948,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63419 -0.95128,-1.49196 -0.95128,-2.57333 0,-1.11794 0.30082,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.42084,-0.98785 2.44527,-0.98786 0.91878,1e-5 1.6444,0.29677 2.17695,0.89029 0.53664,0.58948 0.80492,1.39237 0.80496,2.40868 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12814,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58944,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4173" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 967.66108,174.85741 0,1.93914 2.31112,0 0,0.87199 -2.31112,0 0,3.70754 c 0,0.55694 0.0752,0.91468 0.22562,1.07323 0.15446,0.15855 0.46548,0.23782 0.93297,0.23782 l 1.15253,0 0,0.93908 -1.15253,0 c -0.86589,0 -1.4635,-0.16058 -1.79279,-0.48173 -0.3293,-0.32523 -0.49394,-0.91469 -0.49394,-1.7684 l 0,-3.70754 -0.82319,0 0,-0.87199 0.82319,0 0,-1.93914 1.12814,0" + id="path4175" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 977.29576,179.93087 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28048,1.36187 0.69518,1.7684 0.41868,0.40246 1.00004,0.6037 1.74398,0.6037 0.4309,0 0.84762,-0.0529 1.25005,-0.15855 0.40657,-0.1057 0.809,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40243,0.17074 -0.81506,0.30083 -1.23788,0.39026 -0.42277,0.0894 -0.85165,0.13416 -1.28664,0.13416 -1.08948,0 -1.95335,-0.31709 -2.5916,-0.95127 -0.6342,-0.63419 -0.95128,-1.49196 -0.95128,-2.57333 0,-1.11794 0.30082,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91873,1e-5 1.6444,0.29677 2.17695,0.89029 0.5366,0.58948 0.80492,1.39237 0.80492,2.40868 m -1.122,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.77649,-0.54881 -1.32934,-0.54881 -0.62608,0 -1.12814,0.17684 -1.5062,0.53052 -0.37401,0.35368 -0.58948,0.85167 -0.64637,1.49398 l 4.00023,-0.006" + id="path4177" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 983.09489,177.84538 c -0.12604,-0.0732 -0.26424,-0.12601 -0.41465,-0.15854 -0.14637,-0.0366 -0.309,-0.0549 -0.48783,-0.0549 -0.63421,0 -1.12204,0.20733 -1.4635,0.62198 -0.33742,0.41061 -0.50615,1.0021 -0.50615,1.7745 l 0,3.59777 -1.12811,0 0,-6.82966 1.12811,0 0,1.06103 c 0.23581,-0.41465 0.54274,-0.72158 0.92079,-0.92079 0.37806,-0.20325 0.83743,-0.30488 1.37815,-0.30489 0.0772,1e-5 0.16258,0.006 0.25611,0.0183 0.0935,0.008 0.19715,0.0224 0.31097,0.0427 l 0.006,1.15251" + id="path4179" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 983.30834,182.07734 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" + id="path4181" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 590.02932,194.26707 0,3.42093 1.54885,0 c 0.57324,1e-5 1.01635,-0.14837 1.32939,-0.44514 0.31299,-0.29676 0.46951,-0.71955 0.46951,-1.26837 0,-0.54474 -0.15652,-0.9655 -0.46951,-1.26227 -0.31304,-0.29676 -0.75615,-0.44514 -1.32939,-0.44515 l -1.54885,0 m -1.23177,-1.01225 2.78062,0 c 1.02039,1e-5 1.79078,0.23173 2.31112,0.69516 0.52442,0.45939 0.78664,1.13422 0.78664,2.02451 0,0.89843 -0.26222,1.57733 -0.78664,2.03671 -0.52034,0.45937 -1.29073,0.68906 -2.31112,0.68906 l -1.54885,0 0,3.65875 -1.23177,0 0,-9.10419" + id="path4183" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 600.03599,196.57818 c -0.12604,-0.0732 -0.26424,-0.12601 -0.41465,-0.15854 -0.14633,-0.0366 -0.30895,-0.0549 -0.48783,-0.0549 -0.63416,0 -1.122,0.20733 -1.4635,0.62199 -0.33742,0.41059 -0.50611,1.00209 -0.50611,1.77449 l 0,3.59777 -1.12815,0 0,-6.82967 1.12815,0 0,1.06104 c 0.23577,-0.41465 0.5427,-0.72158 0.92075,-0.92078 0.3781,-0.20326 0.83747,-0.30489 1.37815,-0.3049 0.0772,1e-5 0.16263,0.006 0.25611,0.0183 0.0935,0.008 0.19715,0.0224 0.31102,0.0427 l 0.006,1.1525" + id="path4185" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 601.23727,195.52934 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.65869 1.12204,0 0,1.42081 -1.12204,0 0,-1.42081" + id="path4187" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 609.61584,195.79155 0,1.04885 c -0.31713,-0.17481 -0.63623,-0.30489 -0.95739,-0.39027 -0.31708,-0.0894 -0.63825,-0.13415 -0.96346,-0.13416 -0.72768,1e-5 -1.29274,0.23173 -1.69522,0.69517 -0.40248,0.45938 -0.60368,1.10575 -0.60368,1.93913 0,0.83339 0.2012,1.4818 0.60368,1.94524 0.40248,0.45938 0.96754,0.68906 1.69522,0.68906 0.32521,0 0.64638,-0.0427 0.96346,-0.12805 0.32116,-0.0894 0.64026,-0.22156 0.95739,-0.39637 l 0,1.03665 c -0.31304,0.14635 -0.63825,0.25611 -0.97567,0.32928 -0.33338,0.0732 -0.68907,0.10977 -1.06712,0.10977 -1.02852,0 -1.84564,-0.32319 -2.45138,-0.96957 -0.60574,-0.64638 -0.90859,-1.51838 -0.90859,-2.61601 0,-1.11388 0.30491,-1.98994 0.91469,-2.6282 0.61387,-0.63824 1.45331,-0.95736 2.51842,-0.95737 0.34554,1e-5 0.68296,0.0366 1.01226,0.10976 0.32929,0.0691 0.64844,0.17481 0.95739,0.31709" + id="path4189" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 611.57934,195.52934 1.12204,0 0,6.82967 -1.12204,0 0,-6.82967 m 0,-2.65869 1.12204,0 0,1.42081 -1.12204,0 0,-1.42081" + id="path4191" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 620.72012,198.23682 0,4.12219 -1.122,0 0,-4.08561 c 0,-0.64637 -0.12603,-1.13014 -0.37805,-1.4513 -0.25207,-0.32115 -0.63016,-0.48173 -1.13425,-0.48174 -0.6057,1e-5 -1.08338,0.19311 -1.43301,0.57931 -0.34959,0.3862 -0.52439,0.91265 -0.52439,1.57936 l 0,3.85998 -1.12814,0 0,-6.82967 1.12814,0 0,1.06104 c 0.26828,-0.41059 0.58334,-0.71751 0.94518,-0.92078 0.36585,-0.20326 0.7866,-0.30489 1.26226,-0.3049 0.78458,1e-5 1.3781,0.24392 1.78058,0.73175 0.40244,0.48377 0.60368,1.19723 0.60368,2.14037" + id="path4193" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 627.46443,198.8649 c 0,-0.81305 -0.16873,-1.44317 -0.50611,-1.89035 -0.33338,-0.44718 -0.80289,-0.67077 -1.40863,-0.67077 -0.60165,0 -1.07121,0.22359 -1.40863,0.67077 -0.33334,0.44718 -0.5,1.0773 -0.5,1.89035 0,0.809 0.16666,1.43708 0.5,1.88426 0.33742,0.44718 0.80698,0.67077 1.40863,0.67077 0.60574,0 1.07525,-0.22359 1.40863,-0.67077 0.33738,-0.44718 0.50611,-1.07526 0.50611,-1.88426 m 1.12204,2.6465 c -5e-5,1.16266 -0.25817,2.02654 -0.77447,2.59161 -0.5163,0.56914 -1.30698,0.85371 -2.37209,0.85371 -0.39431,0 -0.7663,-0.0305 -1.11589,-0.0915 -0.34963,-0.0569 -0.68907,-0.14635 -1.01836,-0.26831 l 0,-1.09152 c 0.32929,0.17887 0.6545,0.31099 0.97566,0.39636 0.32117,0.0854 0.6484,0.12806 0.98178,0.12806 0.73581,0 1.28664,-0.19311 1.65252,-0.57931 0.36589,-0.38213 0.54881,-0.96143 0.54881,-1.7379 l 0,-0.55491 c -0.23173,0.40246 -0.52851,0.70329 -0.89031,0.90249 -0.3618,0.1992 -0.79477,0.2988 -1.29886,0.2988 -0.83742,0 -1.51226,-0.31912 -2.02447,-0.95738 -0.51226,-0.63824 -0.76837,-1.48382 -0.76837,-2.53673 0,-1.05696 0.25611,-1.90457 0.76837,-2.54283 0.51221,-0.63824 1.18705,-0.95736 2.02447,-0.95737 0.50409,1e-5 0.93706,0.0996 1.29886,0.29879 0.3618,0.19921 0.65858,0.50004 0.89031,0.9025 l 0,-1.03665 1.12204,0 0,5.98206" + id="path4195" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 631.18418,200.81014 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887 m 0,-4.90883 1.28664,0 0,1.54888 -1.28664,0 0,-1.54888" + id="path4197" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 642.18478,194.4683 -1.6708,4.53076 3.34775,0 -1.67695,-4.53076 m -0.69513,-1.21348 1.39642,0 3.4697,9.10419 -1.28054,0 -0.82934,-2.3355 -4.1039,0 -0.82929,2.3355 -1.29886,0 3.47581,-9.10419" + id="path4199" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 655.96,195.73057 0,1.06104 c -0.31713,-0.16261 -0.64637,-0.28456 -0.98788,-0.36587 -0.34146,-0.0813 -0.69518,-0.12196 -1.06102,-0.12196 -0.55698,0 -0.97567,0.0854 -1.2562,0.25611 -0.2764,0.17075 -0.41465,0.42686 -0.41465,0.76834 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19917,0.14635 0.59963,0.2866 1.20129,0.42075 l 0.38416,0.0854 c 0.79678,0.17074 1.36189,0.41262 1.69522,0.72564 0.33742,0.30897 0.50611,0.74192 0.50616,1.29886 -5e-5,0.63418 -0.25207,1.13625 -0.75616,1.50619 -0.50004,0.36994 -1.18912,0.55491 -2.06722,0.55491 -0.36584,0 -0.74798,-0.0366 -1.14637,-0.10977 -0.39435,-0.0691 -0.81107,-0.1748 -1.25009,-0.31708 l 0,-1.15861 c 0.41464,0.21546 0.82323,0.37807 1.22566,0.48783 0.40248,0.1057 0.80088,0.15855 1.19523,0.15855 0.52847,0 0.93499,-0.0894 1.21956,-0.26831 0.28457,-0.18294 0.42686,-0.43905 0.42686,-0.76834 0,-0.30489 -0.10367,-0.53864 -0.31097,-0.70126 -0.20331,-0.16261 -0.65253,-0.31912 -1.34766,-0.46954 l -0.39027,-0.0915 c -0.69518,-0.14634 -1.19725,-0.36993 -1.5062,-0.67077 -0.30895,-0.30489 -0.46345,-0.72158 -0.46341,-1.25007 -4e-5,-0.64231 0.22764,-1.13827 0.68297,-1.48789 0.45528,-0.34961 1.10165,-0.52441 1.93912,-0.52442 0.41465,1e-5 0.80491,0.0305 1.1708,0.0915 0.36589,0.061 0.70326,0.15245 1.01226,0.2744" + id="path4201" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 658.11868,195.52934 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.65869 1.12199,0 0,1.42081 -1.12199,0 0,-1.42081" + id="path4203" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 666.89963,196.8404 c 0.28054,-0.5041 0.61589,-0.87607 1.0062,-1.11592 0.39022,-0.23985 0.84964,-0.35977 1.3781,-0.35978 0.71144,1e-5 1.26024,0.25002 1.64647,0.75004 0.38618,0.49597 0.57925,1.20333 0.57929,2.12208 l 0,4.12219 -1.12814,0 0,-4.08561 c 0,-0.6545 -0.11584,-1.1403 -0.34757,-1.4574 -0.23173,-0.31708 -0.5854,-0.47563 -1.06102,-0.47564 -0.58136,1e-5 -1.04073,0.19311 -1.37815,0.57931 -0.33742,0.3862 -0.5061,0.91265 -0.5061,1.57936 l 0,3.85998 -1.12815,0 0,-4.08561 c 0,-0.65857 -0.11584,-1.14437 -0.34757,-1.4574 -0.23172,-0.31708 -0.58948,-0.47563 -1.07323,-0.47564 -0.57319,1e-5 -1.02851,0.19515 -1.36593,0.5854 -0.33742,0.38621 -0.50611,0.91063 -0.50611,1.57327 l 0,3.85998 -1.12815,0 0,-6.82967 1.12815,0 0,1.06104 c 0.25611,-0.41872 0.56304,-0.72768 0.92075,-0.92689 0.35776,-0.19919 0.78256,-0.29878 1.27448,-0.29879 0.49596,1e-5 0.91671,0.12603 1.26226,0.37807 0.34963,0.25205 0.60776,0.61793 0.77442,1.09763" + id="path4205" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 674.83912,201.33456 0,3.62216 -1.1281,0 0,-9.42738 1.1281,0 0,1.03665 c 0.23582,-0.40652 0.53256,-0.70735 0.89032,-0.9025 0.3618,-0.19919 0.7927,-0.29878 1.29274,-0.29879 0.82934,1e-5 1.50212,0.32929 2.01842,0.98786 0.52034,0.65858 0.78053,1.52448 0.78053,2.59771 0,1.07324 -0.26019,1.93914 -0.78053,2.59771 -0.5163,0.65858 -1.18908,0.98787 -2.01842,0.98787 -0.50004,0 -0.93094,-0.0976 -1.29274,-0.2927 -0.35776,-0.1992 -0.6545,-0.50207 -0.89032,-0.90859 m 3.81732,-2.38429 c 0,-0.82525 -0.17076,-1.47162 -0.51222,-1.93913 -0.33742,-0.47157 -0.80289,-0.70736 -1.39642,-0.70736 -0.59357,0 -1.06106,0.23579 -1.40252,0.70736 -0.33742,0.46751 -0.50616,1.11388 -0.50616,1.93913 0,0.82526 0.16874,1.47367 0.50616,1.94524 0.34146,0.46751 0.80895,0.70126 1.40252,0.70126 0.59353,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51222,-1.11998 0.51222,-1.94524" + id="path4207" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 681.681,192.87065 1.122,0 0,9.48836 -1.122,0 0,-9.48836" + id="path4209" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 690.98643,198.66367 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.7684 0.41874,0.40246 1.00005,0.60369 1.74404,0.60369 0.4309,0 0.84756,-0.0528 1.25004,-0.15854 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.8517,0.13415 -1.28664,0.13415 -1.08954,0 -1.9534,-0.31709 -2.59165,-0.95128 -0.63416,-0.63418 -0.95124,-1.49195 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00417 0.90248,-2.65869 0.60569,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29677 2.17696,0.8903 0.53659,0.58946 0.80491,1.39236 0.80491,2.40867 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33333,-0.36587 -0.77645,-0.54881 -1.32934,-0.54882 -0.62603,1e-5 -1.1281,0.17685 -1.50615,0.53052 -0.37402,0.35369 -0.58949,0.85168 -0.64642,1.49399 l 4.00023,-0.006" + id="path4211" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 701.29801,196.56599 0,-3.69534 1.12199,0 0,9.48836 -1.12199,0 0,-1.02445 c -0.23581,0.40652 -0.53462,0.70939 -0.89642,0.90859 -0.35772,0.19513 -0.78866,0.2927 -1.29275,0.2927 -0.82525,0 -1.49807,-0.32929 -2.01841,-0.98787 -0.5163,-0.65857 -0.77443,-1.52447 -0.77443,-2.59771 0,-1.07323 0.25813,-1.93913 0.77443,-2.59771 0.52034,-0.65857 1.19316,-0.98785 2.01841,-0.98786 0.50409,1e-5 0.93503,0.0996 1.29275,0.29879 0.3618,0.19515 0.66061,0.49598 0.89642,0.9025 m -3.82342,2.38428 c 0,0.82526 0.16873,1.47367 0.50615,1.94524 0.34146,0.46751 0.80896,0.70126 1.40253,0.70126 0.59352,0 1.06102,-0.23375 1.40248,-0.70126 0.3415,-0.47157 0.51226,-1.11998 0.51226,-1.94524 0,-0.82525 -0.17076,-1.47162 -0.51226,-1.93913 -0.34146,-0.47157 -0.80896,-0.70736 -1.40248,-0.70736 -0.59357,0 -1.06107,0.23579 -1.40253,0.70736 -0.33742,0.46751 -0.50615,1.11388 -0.50615,1.93913" + id="path4213" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 710.57295,198.66367 0,0.54881 -5.15887,0 c 0.0488,0.77241 0.28049,1.36187 0.69518,1.7684 0.41873,0.40246 1.00005,0.60369 1.74399,0.60369 0.4309,0 0.84761,-0.0528 1.25009,-0.15854 0.40652,-0.1057 0.80895,-0.26424 1.20739,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.8151,0.30083 -1.23788,0.39027 -0.42282,0.0894 -0.8517,0.13415 -1.28668,0.13415 -1.08949,0 -1.95336,-0.31709 -2.5916,-0.95128 -0.63421,-0.63418 -0.95129,-1.49195 -0.95129,-2.57332 0,-1.11795 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.42085,-0.98785 2.44527,-0.98786 0.91878,1e-5 1.6444,0.29677 2.17696,0.8903 0.53664,0.58946 0.80491,1.39236 0.80496,2.40867 m -1.12204,-0.32929 c -0.008,-0.61385 -0.1809,-1.10371 -0.51832,-1.46959 -0.33338,-0.36587 -0.7765,-0.54881 -1.32934,-0.54882 -0.62608,1e-5 -1.12815,0.17685 -1.5062,0.53052 -0.37402,0.35369 -0.58944,0.85168 -0.64638,1.49399 l 4.00024,-0.006" + id="path4215" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 716.76841,195.73057 0,1.06104 c -0.31708,-0.16261 -0.64638,-0.28456 -0.98788,-0.36587 -0.34146,-0.0813 -0.69514,-0.12196 -1.06102,-0.12196 -0.55694,0 -0.97567,0.0854 -1.25616,0.25611 -0.27644,0.17075 -0.41469,0.42686 -0.41469,0.76834 0,0.26018 0.0996,0.46548 0.29881,0.61589 0.19922,0.14635 0.59963,0.2866 1.20128,0.42075 l 0.38416,0.0854 c 0.79684,0.17074 1.3619,0.41262 1.69523,0.72564 0.33742,0.30897 0.50615,0.74192 0.50615,1.29886 0,0.63418 -0.25206,1.13625 -0.75615,1.50619 -0.50005,0.36994 -1.18907,0.55491 -2.06717,0.55491 -0.36589,0 -0.74803,-0.0366 -1.14642,-0.10977 -0.39436,-0.0691 -0.81102,-0.1748 -1.2501,-0.31708 l 0,-1.15861 c 0.4147,0.21546 0.82324,0.37807 1.22572,0.48783 0.40243,0.1057 0.80082,0.15855 1.19518,0.15855 0.52846,0 0.93498,-0.0894 1.21956,-0.26831 0.28457,-0.18294 0.42686,-0.43905 0.42686,-0.76834 0,-0.30489 -0.10368,-0.53864 -0.31098,-0.70126 -0.20326,-0.16261 -0.65248,-0.31912 -1.34766,-0.46954 l -0.39026,-0.0915 c -0.69514,-0.14634 -1.1972,-0.36993 -1.50616,-0.67077 -0.309,-0.30489 -0.46345,-0.72158 -0.46345,-1.25007 0,-0.64231 0.22764,-1.13827 0.68297,-1.48789 0.45528,-0.34961 1.1017,-0.52441 1.93912,-0.52442 0.41464,1e-5 0.80491,0.0305 1.1708,0.0915 0.36588,0.061 0.7033,0.15245 1.01226,0.2744" + id="path4217" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 718.92709,195.52934 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.65869 1.12199,0 0,1.42081 -1.12199,0 0,-1.42081" + id="path4219" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 726.88485,198.8649 c 0,-0.81305 -0.16873,-1.44317 -0.50615,-1.89035 -0.33333,-0.44718 -0.80289,-0.67077 -1.40859,-0.67077 -0.60165,0 -1.07121,0.22359 -1.40863,0.67077 -0.33333,0.44718 -0.50005,1.0773 -0.50005,1.89035 0,0.809 0.16672,1.43708 0.50005,1.88426 0.33742,0.44718 0.80698,0.67077 1.40863,0.67077 0.6057,0 1.07526,-0.22359 1.40859,-0.67077 0.33742,-0.44718 0.50615,-1.07526 0.50615,-1.88426 m 1.122,2.6465 c 0,1.16266 -0.25813,2.02654 -0.77443,2.59161 -0.5163,0.56914 -1.30698,0.85371 -2.37209,0.85371 -0.3943,0 -0.7663,-0.0305 -1.11593,-0.0915 -0.34959,-0.0569 -0.68903,-0.14635 -1.01832,-0.26831 l 0,-1.09152 c 0.32929,0.17887 0.6545,0.31099 0.97567,0.39636 0.32116,0.0854 0.64839,0.12806 0.98177,0.12806 0.73581,0 1.28664,-0.19311 1.65253,-0.57931 0.36584,-0.38213 0.5488,-0.96143 0.5488,-1.7379 l 0,-0.55491 c -0.23172,0.40246 -0.52851,0.70329 -0.89031,0.90249 -0.3618,0.1992 -0.79477,0.2988 -1.29885,0.2988 -0.83742,0 -1.51226,-0.31912 -2.02452,-0.95738 -0.51222,-0.63824 -0.76832,-1.48382 -0.76832,-2.53673 0,-1.05696 0.2561,-1.90457 0.76832,-2.54283 0.51226,-0.63824 1.1871,-0.95736 2.02452,-0.95737 0.50408,1e-5 0.93705,0.0996 1.29885,0.29879 0.3618,0.19921 0.65859,0.50004 0.89031,0.9025 l 0,-1.03665 1.122,0 0,5.98206" + id="path4221" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 735.99514,198.23682 0,4.12219 -1.12204,0 0,-4.08561 c 0,-0.64637 -0.12603,-1.13014 -0.37805,-1.4513 -0.25207,-0.32115 -0.63012,-0.48173 -1.13421,-0.48174 -0.60574,1e-5 -1.08342,0.19311 -1.43301,0.57931 -0.34963,0.3862 -0.52443,0.91265 -0.52443,1.57936 l 0,3.85998 -1.1281,0 0,-6.82967 1.1281,0 0,1.06104 c 0.26832,-0.41059 0.58338,-0.71751 0.94518,-0.92078 0.36589,-0.20326 0.78664,-0.30489 1.26226,-0.3049 0.78462,1e-5 1.37815,0.24392 1.78058,0.73175 0.40248,0.48377 0.60372,1.19723 0.60372,2.14037" + id="path4223" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 742.36746,196.68794 7.81755,0 0,1.02445 -7.81755,0 0,-1.02445 m 0,2.48795 7.81755,0 0,1.03665 -7.81755,0 0,-1.03665" + id="path4225" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 756.66096,192.87065 1.12203,0 0,9.48836 -1.12203,0 0,-9.48836" + id="path4227" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 762.77111,196.31597 c -0.6017,1e-5 -1.07732,0.23579 -1.42696,0.70736 -0.34958,0.46751 -0.52438,1.10983 -0.52438,1.92694 0,0.81713 0.17278,1.46147 0.51832,1.93304 0.34959,0.46751 0.82728,0.70126 1.43302,0.70126 0.59756,0 1.07116,-0.23578 1.4208,-0.70736 0.34958,-0.47157 0.52442,-1.11388 0.52442,-1.92694 0,-0.80898 -0.17484,-1.44926 -0.52442,-1.92084 -0.34964,-0.47563 -0.82324,-0.71345 -1.4208,-0.71346 m 0,-0.95127 c 0.97566,1e-5 1.74196,0.3171 2.2989,0.95127 0.55693,0.63419 0.8354,1.51229 0.8354,2.6343 0,1.11796 -0.27847,1.99606 -0.8354,2.6343 -0.55694,0.63419 -1.32324,0.95128 -2.2989,0.95128 -0.97976,0 -1.74808,-0.31709 -2.30506,-0.95128 -0.55284,-0.63824 -0.82929,-1.51634 -0.82929,-2.6343 0,-1.12201 0.27645,-2.00011 0.82929,-2.6343 0.55698,-0.63417 1.3253,-0.95126 2.30506,-0.95127" + id="path4229" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 767.10669,195.52934 1.12204,0 1.40253,5.32958 1.39642,-5.32958 1.32323,0 1.40253,5.32958 1.39642,-5.32958 1.12204,0 -1.78669,6.82967 -1.32328,0 -1.4696,-5.59789 -1.47567,5.59789 -1.32323,0 -1.78674,-6.82967" + id="path4231" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 783.04055,201.33456 0,3.62216 -1.1281,0 0,-9.42738 1.1281,0 0,1.03665 c 0.23581,-0.40652 0.53255,-0.70735 0.89031,-0.9025 0.3618,-0.19919 0.79274,-0.29878 1.29274,-0.29879 0.82934,1e-5 1.50212,0.32929 2.01842,0.98786 0.52034,0.65858 0.78053,1.52448 0.78053,2.59771 0,1.07324 -0.26019,1.93914 -0.78053,2.59771 -0.5163,0.65858 -1.18908,0.98787 -2.01842,0.98787 -0.5,0 -0.93094,-0.0976 -1.29274,-0.2927 -0.35776,-0.1992 -0.6545,-0.50207 -0.89031,-0.90859 m 3.81731,-2.38429 c 0,-0.82525 -0.17076,-1.47162 -0.51222,-1.93913 -0.33742,-0.47157 -0.80289,-0.70736 -1.39642,-0.70736 -0.59352,0 -1.06106,0.23579 -1.40252,0.70736 -0.33742,0.46751 -0.50615,1.11388 -0.50615,1.93913 0,0.82526 0.16873,1.47367 0.50615,1.94524 0.34146,0.46751 0.809,0.70126 1.40252,0.70126 0.59353,0 1.059,-0.23375 1.39642,-0.70126 0.34146,-0.47157 0.51222,-1.11998 0.51222,-1.94524" + id="path4233" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 793.83996,196.57818 c -0.12604,-0.0732 -0.26424,-0.12601 -0.41465,-0.15854 -0.14637,-0.0366 -0.30895,-0.0549 -0.48783,-0.0549 -0.63421,0 -1.12204,0.20733 -1.4635,0.62199 -0.33742,0.41059 -0.50611,1.00209 -0.50611,1.77449 l 0,3.59777 -1.12815,0 0,-6.82967 1.12815,0 0,1.06104 c 0.23577,-0.41465 0.5427,-0.72158 0.92075,-0.92078 0.3781,-0.20326 0.83747,-0.30489 1.37815,-0.3049 0.0772,1e-5 0.16258,0.006 0.25611,0.0183 0.0935,0.008 0.19715,0.0224 0.31097,0.0427 l 0.006,1.1525" + id="path4235" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 795.02908,195.52934 1.12199,0 0,6.82967 -1.12199,0 0,-6.82967 m 0,-2.65869 1.12199,0 0,1.42081 -1.12199,0 0,-1.42081" + id="path4237" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 803.4076,195.79155 0,1.04885 c -0.31708,-0.17481 -0.63623,-0.30489 -0.95735,-0.39027 -0.31713,-0.0894 -0.63825,-0.13415 -0.9635,-0.13416 -0.72769,1e-5 -1.29275,0.23173 -1.69523,0.69517 -0.40243,0.45938 -0.60367,1.10575 -0.60367,1.93913 0,0.83339 0.20124,1.4818 0.60367,1.94524 0.40248,0.45938 0.96754,0.68906 1.69523,0.68906 0.32525,0 0.64637,-0.0427 0.9635,-0.12805 0.32112,-0.0894 0.64027,-0.22156 0.95735,-0.39637 l 0,1.03665 c -0.31304,0.14635 -0.63825,0.25611 -0.97567,0.32928 -0.33333,0.0732 -0.68907,0.10977 -1.06713,0.10977 -1.02851,0 -1.84564,-0.32319 -2.45138,-0.96957 -0.60569,-0.64638 -0.90858,-1.51838 -0.90858,-2.61601 0,-1.11388 0.30491,-1.98994 0.91469,-2.6282 0.61387,-0.63824 1.45335,-0.95736 2.51846,-0.95737 0.34555,1e-5 0.68297,0.0366 1.01226,0.10976 0.32925,0.0691 0.64839,0.17481 0.95735,0.31709" + id="path4239" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 811.21293,198.66367 0,0.54881 -5.15882,0 c 0.0488,0.77241 0.28049,1.36187 0.69513,1.7684 0.41874,0.40246 1.0001,0.60369 1.74404,0.60369 0.4309,0 0.84761,-0.0528 1.25004,-0.15854 0.40652,-0.1057 0.809,-0.26424 1.2074,-0.47564 l 0,1.06104 c -0.40248,0.17074 -0.81511,0.30083 -1.23788,0.39027 -0.42278,0.0894 -0.85166,0.13415 -1.28664,0.13415 -1.08949,0 -1.9534,-0.31709 -2.59165,-0.95128 -0.63416,-0.63418 -0.95124,-1.49195 -0.95124,-2.57332 0,-1.11795 0.30083,-2.00417 0.90248,-2.65869 0.60574,-0.65857 1.4208,-0.98785 2.44527,-0.98786 0.91874,1e-5 1.6444,0.29677 2.17695,0.8903 0.5366,0.58946 0.80492,1.39236 0.80492,2.40867 m -1.122,-0.32929 c -0.008,-0.61385 -0.18094,-1.10371 -0.51832,-1.46959 -0.33337,-0.36587 -0.77649,-0.54881 -1.32938,-0.54882 -0.62603,1e-5 -1.1281,0.17685 -1.50615,0.53052 -0.37402,0.35369 -0.58949,0.85168 -0.64638,1.49399 l 4.00023,-0.006" + id="path4241" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path + d="m 813.21307,200.81014 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" + id="path4243" + inkscape:connector-curvature="0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /></g></g><g + inkscape:groupmode="layer" + id="layer1" + inkscape:label="DELETE bird before uploading" + style="display:inline" /><g + inkscape:groupmode="layer" + id="layer9" + inkscape:label="Your Design"><g + id="g21" + inkscape:label="0" + transform="matrix(0.8,0,0,0.8,-113.89464,-481.88053)" + style="stroke:#0000ff;stroke-opacity:1;stroke-width:0.03543307;stroke-miterlimit:4;stroke-dasharray:none"><path + inkscape:connector-curvature="0" + id="path23" + d="m 240.31326,720.37047 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path25" + d="m 240.31326,853.86055 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path27" + d="m 507.29378,853.86055 a 5.25588,5.25588 0 1 0 -10.51176,0 5.25588,5.25588 0 1 0 10.51176,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path29" + d="m 521.39659,648.5468 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + inkscape:connector-curvature="0" + id="path31" + d="m 568.78387,625.5946 0.55008,0.0196" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path33" + d="m 569.33395,625.61422 0.54307,0.062" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path35" + d="m 569.87702,625.67624 0.54307,0.11107" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path37" + d="m 570.42009,625.78731 0.53256,0.1447" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path39" + d="m 570.95265,625.93201 0.51504,0.1941" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path41" + d="m 571.46769,626.12611 0.49753,0.2309" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path43" + d="m 571.96522,626.35701 0.4765,0.26593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path45" + d="m 572.44172,626.62294 0.45898,0.30902" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path47" + d="m 572.9007,626.93196 0.43446,0.34231" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path49" + d="m 573.33516,627.27427 0.40642,0.37209" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path51" + d="m 573.74158,627.64636 0.37139,0.40538" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path53" + d="m 574.11297,628.05174 0.34337,0.43025" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path55" + d="m 574.45634,628.48199 0.30482,0.45828" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path57" + d="m 574.76116,628.94027 0.26978,0.47861" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path59" + d="m 575.03094,629.41888 0.22774,0.50173" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path61" + d="m 575.25868,629.92061 0.1927,0.51153" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path63" + d="m 575.45138,630.43214 0.14365,0.53151" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path65" + d="m 575.59503,630.96365 0.11212,0.54027" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path67" + d="m 575.70715,631.50392 0.0631,0.54623" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path69" + d="m 575.77022,632.05015 0.0175,0.55007" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path71" + d="m 575.78774,632.60022 0,288.00768" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path73" + d="m 575.78774,920.6079 -0.0175,0.54559" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path75" + d="m 575.77022,921.15349 -0.0631,0.55043" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path77" + d="m 575.70715,921.70392 -0.11212,0.53593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path79" + d="m 575.59503,922.23985 -0.14365,0.53592" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path81" + d="m 575.45138,922.77577 -0.1927,0.51182" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path83" + d="m 575.25868,923.28759 -0.22774,0.49731" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path85" + d="m 575.03094,923.7849 -0.26978,0.48281" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path87" + d="m 574.76116,924.26771 -0.30482,0.45868" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path89" + d="m 574.45634,924.72639 -0.34337,0.42971" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path91" + d="m 574.11297,925.1561 -0.37139,0.40557" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path93" + d="m 573.74158,925.56167 -0.40642,0.37177" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path95" + d="m 573.33516,925.93344 -0.43446,0.3428" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path97" + d="m 572.9007,926.27624 -0.45898,0.30418" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path99" + d="m 572.44172,926.58042 -0.4765,0.27038" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path101" + d="m 571.96522,926.8508 -0.49753,0.22693" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path103" + d="m 571.46769,927.07773 -0.51504,0.19312" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path105" + d="m 570.95265,927.27085 -0.53256,0.14968" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path107" + d="m 570.42009,927.42053 -0.54307,0.10622" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path109" + d="m 569.87702,927.52675 -0.54307,0.0628" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path111" + d="m 569.33395,927.58952 -0.54658,0.0241" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path113" + d="m 568.78737,927.61366 -393.47009,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path115" + d="m 175.31728,927.61366 -0.55043,-0.0241" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path117" + d="m 174.76685,927.58952 -0.54556,-0.0628" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path119" + d="m 174.22129,927.52675 -0.54076,-0.10622" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path121" + d="m 173.68053,927.42053 -0.53112,-0.14968" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path123" + d="m 173.14941,927.27085 -0.51179,-0.19312" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path125" + d="m 172.63762,927.07773 -0.50214,-0.22693" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path127" + d="m 172.13548,926.8508 -0.47798,-0.27038" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path129" + d="m 171.6575,926.58042 -0.45869,-0.30418" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path131" + d="m 171.19881,926.27624 -0.42971,-0.3428" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path133" + d="m 170.7691,925.93344 -0.40557,-0.37177" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path135" + d="m 170.36353,925.56167 -0.37177,-0.40557" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path137" + d="m 169.99176,925.1561 -0.3428,-0.42971" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path139" + d="m 169.64896,924.72639 -0.30901,-0.45868" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path141" + d="M 169.33995,924.26771 169.0744,923.7849" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path143" + d="m 169.0744,923.7849 -0.23175,-0.49731" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path145" + d="m 168.84265,923.28759 -0.19314,-0.51182" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path147" + d="m 168.64951,922.77577 -0.14484,-0.53592" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path149" + d="m 168.50467,922.23985 -0.11105,-0.53593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path151" + d="m 168.39362,921.70392 -0.0628,-0.55043" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path153" + d="m 168.33085,921.15349 -0.0241,-0.54559" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path155" + d="m 168.30671,920.6079 0.005,-288.00768" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path157" + d="m 168.31154,632.60022 0.0193,-0.55007" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path159" + d="m 168.33085,632.05015 0.0628,-0.54623" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path161" + d="m 168.39362,631.50392 0.11105,-0.54027" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path163" + d="m 168.50467,630.96365 0.14484,-0.53151" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path165" + d="m 168.64951,630.43214 0.19314,-0.51153" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path167" + d="m 168.84265,629.92061 0.23175,-0.50173" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path169" + d="m 169.0744,629.41888 0.26555,-0.47861" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path171" + d="m 169.33995,628.94027 0.30901,-0.45828" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path173" + d="m 169.64896,628.48199 0.3428,-0.43025" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path175" + d="m 169.99176,628.05174 0.37177,-0.40538" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path177" + d="m 170.36353,627.64636 0.40557,-0.37209" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path179" + d="m 170.7691,627.27427 0.42971,-0.34231" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path181" + d="m 171.19881,626.93196 0.45869,-0.30902" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path183" + d="m 171.6575,626.62294 0.47798,-0.26593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path185" + d="m 172.13548,626.35701 0.50214,-0.2309" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path187" + d="m 172.63762,626.12611 0.51179,-0.1941" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path189" + d="m 173.14941,625.93201 0.53112,-0.1447" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path191" + d="m 173.68053,625.78731 0.54076,-0.11107" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path193" + d="m 174.22129,625.67624 0.54556,-0.062" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path195" + d="m 174.76685,625.61422 0.55043,-0.0245" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path197" + d="m 175.31728,625.5897 393.46659,0.005" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path199" + d="m 177.15682,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path201" + d="m 177.15682,864.8035 -2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path203" + d="m 174.35646,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path205" + d="m 174.35646,909.65748 2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path207" + d="m 177.15682,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path209" + d="m 177.15682,911.75784 49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path211" + d="m 226.21168,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path213" + d="m 226.21168,909.65748 2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path215" + d="m 229.01183,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path217" + d="m 229.01183,864.8035 -2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path219" + d="m 226.21168,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path221" + d="m 226.21168,862.70795 -49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path223" + d="m 243.90214,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path225" + d="m 243.90214,864.8035 -2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path227" + d="m 241.10164,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path229" + d="m 241.10164,909.65748 2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path231" + d="m 243.90214,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path233" + d="m 243.90214,911.75784 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path235" + d="m 292.9562,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path237" + d="m 292.9562,909.65748 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path239" + d="m 295.75704,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path241" + d="m 295.75704,864.8035 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path243" + d="m 292.9562,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path245" + d="m 292.9562,862.70795 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path247" + d="m 310.64736,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path249" + d="m 310.64736,864.8035 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path251" + d="m 307.84651,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path253" + d="m 307.84651,909.65748 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path255" + d="m 310.64736,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path257" + d="m 310.64736,911.75784 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path259" + d="m 359.70141,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path261" + d="m 359.70141,909.65748 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path263" + d="m 362.50226,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path265" + d="m 362.50226,864.8035 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path267" + d="m 359.70141,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path269" + d="m 359.70141,862.70795 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path271" + d="m 377.39257,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path273" + d="m 377.39257,864.8035 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path275" + d="m 374.59173,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path277" + d="m 374.59173,909.65748 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path279" + d="m 377.39257,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path281" + d="m 377.39257,911.75784 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path283" + d="m 426.44663,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path285" + d="m 426.44663,909.65748 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path287" + d="m 429.24747,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path289" + d="m 429.24747,864.8035 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path291" + d="m 426.44663,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path293" + d="m 426.44663,862.70795 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path295" + d="m 444.13779,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path297" + d="m 444.13779,864.8035 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path299" + d="m 441.33694,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path301" + d="m 441.33694,909.65748 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path303" + d="m 444.13779,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path305" + d="m 444.13779,911.75784 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path307" + d="m 493.19184,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path309" + d="m 493.19184,909.65748 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path311" + d="m 495.99269,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path313" + d="m 495.99269,864.8035 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path315" + d="m 493.19184,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path317" + d="m 493.19184,862.70795 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path319" + d="m 510.88301,862.70795 0,2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path321" + d="m 510.88301,864.8035 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path323" + d="m 508.08216,864.8035 0,44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path325" + d="m 508.08216,909.65748 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path327" + d="m 510.88301,909.65748 0,2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path329" + d="m 510.88301,911.75784 49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path331" + d="m 559.93356,911.75784 0,-2.10036" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path333" + d="m 559.93356,909.65748 2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path335" + d="m 562.73651,909.65748 0,-44.85398" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path337" + d="m 562.73651,864.8035 -2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path339" + d="m 559.93356,864.8035 0,-2.09555" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path341" + d="m 559.93356,862.70795 -49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path343" + d="m 177.15682,795.96308 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path345" + d="m 177.15682,798.06284 -2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path347" + d="m 174.35646,798.06284 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path349" + d="m 174.35646,842.91212 2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path351" + d="m 177.15682,842.91212 0,2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path353" + d="m 177.15682,845.01258 49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path355" + d="m 226.21168,845.01258 0,-2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path357" + d="m 226.21168,842.91212 2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path359" + d="m 229.01183,842.91212 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path361" + d="m 229.01183,798.06284 -2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path363" + d="m 226.21168,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path365" + d="m 226.21168,795.96308 -49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path367" + d="m 243.90214,795.96308 0,2.57589" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path369" + d="m 243.90214,798.53897 -2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path371" + d="m 241.10164,798.53897 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path373" + d="m 241.10164,843.38825 2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path375" + d="m 243.90214,843.38825 0,1.62969" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path377" + d="m 243.90214,845.01794 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path379" + d="m 292.9562,845.01794 0,-2.10045" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path381" + d="m 292.9562,842.91749 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path383" + d="m 295.75704,842.91749 0,-44.85465" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path385" + d="m 295.75704,798.06284 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path387" + d="m 292.9562,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path389" + d="m 292.9562,795.96308 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path391" + d="m 310.64736,795.96308 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path393" + d="m 310.64736,798.06284 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path395" + d="m 307.84651,798.06284 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path397" + d="m 307.84651,842.91212 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path399" + d="m 310.64736,842.91212 0,2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path401" + d="m 310.64736,845.01258 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path403" + d="m 359.70141,845.01258 0,-2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path405" + d="m 359.70141,842.91212 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path407" + d="m 362.50226,842.91212 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path409" + d="m 362.50226,798.06284 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path411" + d="m 359.70141,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path413" + d="m 359.70141,795.96308 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path415" + d="m 377.39257,795.96308 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path417" + d="m 377.39257,798.06284 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path419" + d="m 374.59173,798.06284 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path421" + d="m 374.59173,842.91212 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path423" + d="m 377.39257,842.91212 0,2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path425" + d="m 377.39257,845.01258 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path427" + d="m 426.44663,845.01258 0,-2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path429" + d="m 426.44663,842.91212 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path431" + d="m 429.24747,842.91212 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path433" + d="m 429.24747,798.06284 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path435" + d="m 426.44663,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path437" + d="m 426.44663,795.96308 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path439" + d="m 444.13779,795.96308 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path441" + d="m 444.13779,798.06284 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path443" + d="m 441.33694,798.06284 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path445" + d="m 441.33694,842.91212 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path447" + d="m 444.13779,842.91212 0,2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path449" + d="m 444.13779,845.01258 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path451" + d="m 493.19184,845.01258 0,-2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path453" + d="m 493.19184,842.91212 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path455" + d="m 495.99269,842.91212 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path457" + d="m 495.99269,798.06284 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path459" + d="m 493.19184,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path461" + d="m 493.19184,795.96308 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path463" + d="m 510.88301,795.96308 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path465" + d="m 510.88301,798.06284 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path467" + d="m 508.08216,798.06284 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path469" + d="m 508.08216,842.91212 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path471" + d="m 510.88301,842.91212 0,2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path473" + d="m 510.88301,845.01258 49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path475" + d="m 559.93356,845.01258 0,-2.10046" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path477" + d="m 559.93356,842.91212 2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path479" + d="m 562.73651,842.91212 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path481" + d="m 562.73651,798.06284 -2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path483" + d="m 559.93356,798.06284 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path485" + d="m 559.93356,795.96308 -49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path487" + d="m 177.15682,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path489" + d="m 177.15682,731.31763 -2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path491" + d="m 174.35646,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path493" + d="m 174.35646,776.16691 2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path495" + d="m 177.15682,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path497" + d="m 177.15682,778.26667 49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path499" + d="m 226.21168,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path501" + d="m 226.21168,776.16691 2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path503" + d="m 229.01183,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path505" + d="m 229.01183,731.31763 -2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path507" + d="m 226.21168,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path509" + d="m 226.21168,729.21787 -49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path511" + d="m 243.90214,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path513" + d="m 243.90214,731.31763 -2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path515" + d="m 241.10164,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path517" + d="m 241.10164,776.16691 2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path519" + d="m 243.90214,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path521" + d="m 243.90214,778.26667 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path523" + d="m 292.9562,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path525" + d="m 292.9562,776.16691 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path527" + d="m 295.75704,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path529" + d="m 295.75704,731.31763 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path531" + d="m 292.9562,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path533" + d="m 292.9562,729.21787 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path535" + d="m 310.64736,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path537" + d="m 310.64736,731.31763 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path539" + d="m 307.84651,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path541" + d="m 307.84651,776.16691 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path543" + d="m 310.64736,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path545" + d="m 310.64736,778.26667 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path547" + d="m 359.70141,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path549" + d="m 359.70141,776.16691 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path551" + d="m 362.50226,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path553" + d="m 362.50226,731.31763 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path555" + d="m 359.70141,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path557" + d="m 359.70141,729.21787 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path559" + d="m 377.39257,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path561" + d="m 377.39257,731.31763 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path563" + d="m 374.59173,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path565" + d="m 374.59173,776.16691 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path567" + d="m 377.39257,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path569" + d="m 377.39257,778.26667 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path571" + d="m 426.44663,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path573" + d="m 426.44663,776.16691 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path575" + d="m 429.24747,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path577" + d="m 429.24747,731.31763 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path579" + d="m 426.44663,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path581" + d="m 426.44663,729.21787 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path583" + d="m 444.13779,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path585" + d="m 444.13779,731.31763 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path587" + d="m 441.33694,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path589" + d="m 441.33694,776.16691 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path591" + d="m 444.13779,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path593" + d="m 444.13779,778.26667 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path595" + d="m 493.19184,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path597" + d="m 493.19184,776.16691 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path599" + d="m 495.99269,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path601" + d="m 495.99269,731.31763 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path603" + d="m 493.19184,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path605" + d="m 493.19184,729.21787 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path607" + d="m 510.88301,729.21787 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path609" + d="m 510.88301,731.31763 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path611" + d="m 508.08216,731.31763 0,44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path613" + d="m 508.08216,776.16691 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path615" + d="m 510.88301,776.16691 0,2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path617" + d="m 510.88301,778.26667 49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path619" + d="m 559.93356,778.26667 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path621" + d="m 559.93356,776.16691 2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path623" + d="m 562.73651,776.16691 0,-44.84928" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path625" + d="m 562.73651,731.31763 -2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path627" + d="m 559.93356,731.31763 0,-2.09976" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path629" + d="m 559.93356,729.21787 -49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path631" + d="m 177.15682,662.46659 0,2.10582" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path633" + d="m 177.15682,664.57241 -2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path635" + d="m 174.35646,664.57241 0,44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path637" + d="m 174.35646,709.41679 2.80036,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path639" + d="m 177.15682,709.41679 0,2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path641" + d="m 177.15682,711.52145 49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path643" + d="m 226.21168,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path645" + d="m 226.21168,709.41679 2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path647" + d="m 229.01183,709.41679 0,-44.84519" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path649" + d="m 229.01183,664.5716 -2.80015,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path651" + d="m 226.21168,664.5716 0,-2.10501" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path653" + d="m 226.21168,662.46659 -49.05486,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path655" + d="m 243.90214,662.46659 0,2.58538" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path657" + d="m 243.90214,665.05197 -2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path659" + d="m 241.10164,665.05197 0,44.84437" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path661" + d="m 241.10164,709.89634 2.8005,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path663" + d="m 243.90214,709.89634 0,1.62511" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path665" + d="m 243.90214,711.52145 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path667" + d="m 292.9562,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path669" + d="m 292.9562,709.41679 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path671" + d="m 295.75704,709.41679 0,-44.84519" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path673" + d="m 295.75704,664.5716 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path675" + d="m 292.9562,664.5716 0,-2.10501" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path677" + d="m 292.9562,662.46659 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path679" + d="m 310.64736,662.46739 0,2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path681" + d="m 310.64736,664.57241 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path683" + d="m 307.84651,664.57241 0,44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path685" + d="m 307.84651,709.41679 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path687" + d="m 310.64736,709.41679 0,2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path689" + d="m 310.64736,711.52145 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path691" + d="m 359.70141,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path693" + d="m 359.70141,709.41679 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path695" + d="m 362.50226,709.41679 0,-44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path697" + d="m 362.50226,664.57241 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path699" + d="m 359.70141,664.57241 0,-2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path701" + d="m 359.70141,662.46739 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path703" + d="m 377.39257,662.46739 0,2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path705" + d="m 377.39257,664.57241 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path707" + d="m 374.59173,664.57241 0,44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path709" + d="m 374.59173,709.41679 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path711" + d="m 377.39257,709.41679 0,2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path713" + d="m 377.39257,711.52145 49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path715" + d="m 426.44663,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path717" + d="m 426.44663,709.41679 2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path719" + d="m 429.24747,709.41679 0,-44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path721" + d="m 429.24747,664.57241 -2.80084,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path723" + d="m 426.44663,664.57241 0,-2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path725" + d="m 426.44663,662.46739 -49.05406,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path727" + d="m 444.13779,662.46739 0,2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path729" + d="m 444.13779,664.57241 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path731" + d="m 441.33694,664.57241 0,44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path733" + d="m 441.33694,709.41679 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path735" + d="m 444.13779,709.41679 0,2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path737" + d="m 444.13779,711.52145 49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path739" + d="m 493.19184,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path741" + d="m 493.19184,709.41679 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path743" + d="m 495.99269,709.41679 0,-44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path745" + d="m 495.99269,664.57241 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path747" + d="m 493.19184,664.57241 0,-2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path749" + d="m 493.19184,662.46739 -49.05405,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path751" + d="m 510.88206,662.46739 0,2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path753" + d="m 510.88206,664.57241 -2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path755" + d="m 508.08121,664.57241 0,44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path757" + d="m 508.08121,709.41679 2.80085,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path759" + d="m 510.88206,709.41679 0,2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path761" + d="m 510.88206,711.52145 49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path763" + d="m 559.93261,711.52145 0,-2.10466" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path765" + d="m 559.93261,709.41679 2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path767" + d="m 562.73556,709.41679 0,-44.84438" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path769" + d="m 562.73556,664.57241 -2.80295,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path771" + d="m 559.93261,664.57241 0,-2.10502" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path773" + d="m 559.93261,662.46739 -49.05055,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path27-0" + d="m 306.39384,853.88036 a 5.25588,5.25588 0 1 0 -10.51176,0 5.25588,5.25588 0 0 0 10.51176,0 z" + style="display:inline;fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g><g + id="g21-5" + inkscape:label="0" + transform="matrix(0.8,0,0,0.8,-113.89463,-231.54592)" + style="stroke:#0000ff;stroke-opacity:1;stroke-width:0.35433071;stroke-miterlimit:4;stroke-dasharray:none"><path + inkscape:connector-curvature="0" + id="path23-4" + d="m 240.31326,720.37047 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path25-4" + d="m 240.31326,853.86055 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path27-4" + d="m 507.29378,853.86055 a 5.25588,5.25588 0 1 0 -10.51176,0 5.25588,5.25588 0 1 0 10.51176,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path29-1" + d="m 523.39658,648.54862 a 5.2558782,5.2558782 0 1 0 -10.51175,0 5.2558782,5.2558782 0 1 0 10.51175,0 z" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + inkscape:connector-curvature="0" + id="path31-6" + d="m 568.78387,625.5946 0.55008,0.0196" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path33-2" + d="m 569.33395,625.61422 0.54307,0.062" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path35-0" + d="m 569.87702,625.67624 0.54307,0.11107" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path37-1" + d="m 570.42009,625.78731 0.53256,0.1447" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path39-6" + d="m 570.95265,625.93201 0.51504,0.1941" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path41-9" + d="m 571.46769,626.12611 0.49753,0.2309" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path43-3" + d="m 571.96522,626.35701 0.4765,0.26593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path45-8" + d="m 572.44172,626.62294 0.45898,0.30902" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path47-2" + d="m 572.9007,626.93196 0.43446,0.34231" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path49-0" + d="m 573.33516,627.27427 0.40642,0.37209" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path51-9" + d="m 573.74158,627.64636 0.37139,0.40538" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path53-1" + d="m 574.11297,628.05174 0.34337,0.43025" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path55-7" + d="m 574.45634,628.48199 0.30482,0.45828" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path57-9" + d="m 574.76116,628.94027 0.26978,0.47861" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path59-0" + d="m 575.03094,629.41888 0.22774,0.50173" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path61-7" + d="m 575.25868,629.92061 0.1927,0.51153" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path63-1" + d="m 575.45138,630.43214 0.14365,0.53151" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path65-6" + d="m 575.59503,630.96365 0.11212,0.54027" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path67-0" + d="m 575.70715,631.50392 0.0631,0.54623" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path69-9" + d="m 575.77022,632.05015 0.0175,0.55007" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path71-2" + d="m 575.78774,632.60022 0,288.00768" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path73-7" + d="m 575.78774,920.6079 -0.0175,0.54559" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path75-4" + d="m 575.77022,921.15349 -0.0631,0.55043" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path77-6" + d="m 575.70715,921.70392 -0.11212,0.53593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path79-8" + d="m 575.59503,922.23985 -0.14365,0.53592" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path81-0" + d="m 575.45138,922.77577 -0.1927,0.51182" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path83-9" + d="m 575.25868,923.28759 -0.22774,0.49731" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path85-7" + d="m 575.03094,923.7849 -0.26978,0.48281" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path87-0" + d="m 574.76116,924.26771 -0.30482,0.45868" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path89-8" + d="m 574.45634,924.72639 -0.34337,0.42971" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path91-1" + d="m 574.11297,925.1561 -0.37139,0.40557" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path93-3" + d="m 573.74158,925.56167 -0.40642,0.37177" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path95-0" + d="m 573.33516,925.93344 -0.43446,0.3428" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path97-2" + d="m 572.9007,926.27624 -0.45898,0.30418" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path99-9" + d="m 572.44172,926.58042 -0.4765,0.27038" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path101-0" + d="m 571.96522,926.8508 -0.49753,0.22693" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path103-6" + d="m 571.46769,927.07773 -0.51504,0.19312" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path105-0" + d="m 570.95265,927.27085 -0.53256,0.14968" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path107-6" + d="m 570.42009,927.42053 -0.54307,0.10622" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path109-4" + d="m 569.87702,927.52675 -0.54307,0.0628" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path111-4" + d="m 569.33395,927.58952 -0.54658,0.0241" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path113-0" + d="m 568.78737,927.61366 -393.47009,0" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path115-3" + d="m 175.31728,927.61366 -0.55043,-0.0241" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path117-5" + d="m 174.76685,927.58952 -0.54556,-0.0628" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path119-9" + d="m 174.22129,927.52675 -0.54076,-0.10622" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path121-7" + d="m 173.68053,927.42053 -0.53112,-0.14968" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path123-5" + d="m 173.14941,927.27085 -0.51179,-0.19312" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path125-6" + d="m 172.63762,927.07773 -0.50214,-0.22693" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path127-2" + d="m 172.13548,926.8508 -0.47798,-0.27038" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path129-0" + d="m 171.6575,926.58042 -0.45869,-0.30418" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path131-4" + d="m 171.19881,926.27624 -0.42971,-0.3428" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path133-8" + d="m 170.7691,925.93344 -0.40557,-0.37177" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path135-3" + d="m 170.36353,925.56167 -0.37177,-0.40557" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path137-2" + d="m 169.99176,925.1561 -0.3428,-0.42971" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path139-1" + d="m 169.64896,924.72639 -0.30901,-0.45868" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path141-6" + d="M 169.33995,924.26771 169.0744,923.7849" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path143-7" + d="m 169.0744,923.7849 -0.23175,-0.49731" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path145-9" + d="m 168.84265,923.28759 -0.19314,-0.51182" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path147-5" + d="m 168.64951,922.77577 -0.14484,-0.53592" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path149-8" + d="m 168.50467,922.23985 -0.11105,-0.53593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path151-7" + d="m 168.39362,921.70392 -0.0628,-0.55043" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path153-0" + d="m 168.33085,921.15349 -0.0241,-0.54559" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path155-2" + d="m 168.30671,920.6079 0.005,-288.00768" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path157-8" + d="m 168.31154,632.60022 0.0193,-0.55007" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path159-7" + d="m 168.33085,632.05015 0.0628,-0.54623" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path161-9" + d="m 168.39362,631.50392 0.11105,-0.54027" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path163-8" + d="m 168.50467,630.96365 0.14484,-0.53151" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path165-3" + d="m 168.64951,630.43214 0.19314,-0.51153" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path167-0" + d="m 168.84265,629.92061 0.23175,-0.50173" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path169-2" + d="m 169.0744,629.41888 0.26555,-0.47861" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path171-4" + d="m 169.33995,628.94027 0.30901,-0.45828" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path173-2" + d="m 169.64896,628.48199 0.3428,-0.43025" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path175-2" + d="m 169.99176,628.05174 0.37177,-0.40538" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path177-8" + d="m 170.36353,627.64636 0.40557,-0.37209" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path179-1" + d="m 170.7691,627.27427 0.42971,-0.34231" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path181-5" + d="m 171.19881,626.93196 0.45869,-0.30902" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path183-8" + d="m 171.6575,626.62294 0.47798,-0.26593" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path185-5" + d="m 172.13548,626.35701 0.50214,-0.2309" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path187-6" + d="m 172.63762,626.12611 0.51179,-0.1941" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path189-8" + d="m 173.14941,625.93201 0.53112,-0.1447" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path191-8" + d="m 173.68053,625.78731 0.54076,-0.11107" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path193-7" + d="m 174.22129,625.67624 0.54556,-0.062" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path195-9" + d="m 174.76685,625.61422 0.55043,-0.0245" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path197-7" + d="m 175.31728,625.5897 393.46659,0.005" + style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path + inkscape:connector-curvature="0" + id="path27-4-7" + d="m 304.74973,853.92004 a 5.25588,5.25588 0 1 0 -10.51176,0 5.25588,5.25588 0 0 0 10.51176,0 z" + style="display:inline;fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></svg>
\ No newline at end of file diff --git a/keyboards/maxipad/Makefile b/keyboards/maxipad/Makefile index 57b2ef62e5..4e2a6f00fd 100644 --- a/keyboards/maxipad/Makefile +++ b/keyboards/maxipad/Makefile @@ -1,3 +1,3 @@ ifndef MAKEFILE_INCLUDED include ../../Makefile -endif +endif
\ No newline at end of file diff --git a/keyboards/maxipad/config.h b/keyboards/maxipad/config.h index fc5ab77617..d7a5ef5646 100644 --- a/keyboards/maxipad/config.h +++ b/keyboards/maxipad/config.h @@ -24,11 +24,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define VENDOR_ID 0xFEED #define PRODUCT_ID 0x6060 #define DEVICE_VER 0x0001 -#define MANUFACTURER Wootpatoot +#define MANUFACTURER wootpatoot #define PRODUCT maxipad #define DESCRIPTION A custom keyboard - /* key matrix size */ #define MATRIX_ROWS 5 #define MATRIX_COLS 6 @@ -55,99 +54,26 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION COL2ROW - -// #define BACKLIGHT_PIN B7 -// #define BACKLIGHT_BREATHING -// #define BACKLIGHT_LEVELS 3 - - -/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ -#define DEBOUNCING_DELAY 5 -/* define if matrix has ghost (lacks anti-ghosting diodes) */ +/* define if matrix has ghost */ //#define MATRIX_HAS_GHOST /* number of backlight levels */ +#define BACKLIGHT_LEVELS 3 + +/* Set 0 if debouncing isn't needed */ +#define DEBOUNCING_DELAY 5 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ #define LOCKING_SUPPORT_ENABLE /* Locking resynchronize hack */ #define LOCKING_RESYNC_ENABLE -/* - * Force NKRO - * - * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved - * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the - * makefile for this to work.) - * - * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) - * until the next keyboard reset. - * - * NKRO may prevent your keystrokes from being detected in the BIOS, but it is - * fully operational during normal computer usage. - * - * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) - * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by - * bootmagic, NKRO mode will always be enabled until it is toggled again during a - * power-up. - * - */ -//#define FORCE_NKRO - -/* - * Magic Key Options - * - * Magic keys are hotkey commands that allow control over firmware functions of - * the keyboard. They are best used in combination with the HID Listen program, - * found here: https://www.pjrc.com/teensy/hid_listen.html - * - * The options below allow the magic key functionality to be changed. This is - * useful if your keyboard/keypad is missing keys and you want magic key support. - * - */ - -/* key combination for magic key command */ +/* key combination for command */ #define IS_COMMAND() ( \ keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ ) -/* control how magic key switches layers */ -//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true -//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true -//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false - -/* override magic key keymap */ -//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS -//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS -//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM -//#define MAGIC_KEY_HELP1 H -//#define MAGIC_KEY_HELP2 SLASH -//#define MAGIC_KEY_DEBUG D -//#define MAGIC_KEY_DEBUG_MATRIX X -//#define MAGIC_KEY_DEBUG_KBD K -//#define MAGIC_KEY_DEBUG_MOUSE M -//#define MAGIC_KEY_VERSION V -//#define MAGIC_KEY_STATUS S -//#define MAGIC_KEY_CONSOLE C -//#define MAGIC_KEY_LAYER0_ALT1 ESC -//#define MAGIC_KEY_LAYER0_ALT2 GRAVE -//#define MAGIC_KEY_LAYER0 0 -//#define MAGIC_KEY_LAYER1 1 -//#define MAGIC_KEY_LAYER2 2 -//#define MAGIC_KEY_LAYER3 3 -//#define MAGIC_KEY_LAYER4 4 -//#define MAGIC_KEY_LAYER5 5 -//#define MAGIC_KEY_LAYER6 6 -//#define MAGIC_KEY_LAYER7 7 -//#define MAGIC_KEY_LAYER8 8 -//#define MAGIC_KEY_LAYER9 9 -//#define MAGIC_KEY_BOOTLOADER PAUSE -//#define MAGIC_KEY_LOCK CAPS -//#define MAGIC_KEY_EEPROM E -//#define MAGIC_KEY_NKRO N -//#define MAGIC_KEY_SLEEP_LED Z - /* * Feature disable options * These options are also useful to firmware size reduction. diff --git a/keyboards/maxipad/keymaps/default/keymap.c b/keyboards/maxipad/keymaps/default/keymap.c index 43ace32419..227cef7d86 100644 --- a/keyboards/maxipad/keymaps/default/keymap.c +++ b/keyboards/maxipad/keymaps/default/keymap.c @@ -1,5 +1,5 @@ #include "maxipad.h" - + const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [0] = KEYMAP( /* Base */ KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, \ @@ -13,42 +13,14 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, \ KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_TRNS, KC_TRNS, \ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, \ - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS \ + KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_SPC \ ), }; - + const uint16_t PROGMEM fn_actions[] = { - }; - -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) + +const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // MACRODOWN only works in this function { - // MACRODOWN only works in this function - switch(id) { - case 0: - if (record->event.pressed) { - register_code(KC_RSFT); - } else { - unregister_code(KC_RSFT); - } - break; - } return MACRO_NONE; -}; - - -void matrix_init_user(void) { - -} - -void matrix_scan_user(void) { - -} - -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - return true; -} - -void led_set_user(uint8_t usb_led) { - -}
\ No newline at end of file +};
\ No newline at end of file diff --git a/keyboards/maxipad/keymaps/default/readme.md b/keyboards/maxipad/keymaps/default/readme.md deleted file mode 100644 index a6c0d4a3f0..0000000000 --- a/keyboards/maxipad/keymaps/default/readme.md +++ /dev/null @@ -1 +0,0 @@ -# The default keymap for maxipad
\ No newline at end of file diff --git a/keyboards/maxipad/maxipad.c b/keyboards/maxipad/maxipad.c index 879ae86a76..a193b112b9 100644 --- a/keyboards/maxipad/maxipad.c +++ b/keyboards/maxipad/maxipad.c @@ -1,28 +1 @@ -#include "maxipad.h" - -void matrix_init_kb(void) { - // put your keyboard start-up code here - // runs once when the firmware starts up - - matrix_init_user(); -} - -void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) - - matrix_scan_user(); -} - -bool process_record_kb(uint16_t keycode, keyrecord_t *record) { - // put your per-action keyboard code here - // runs for every action, just before processing by the firmware - - return process_record_user(keycode, record); -} - -void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - - led_set_user(usb_led); -} +#include "maxipad.h"
\ No newline at end of file diff --git a/keyboards/maxipad/maxipad.h b/keyboards/maxipad/maxipad.h index eee1309ddc..4d8c6428d2 100644 --- a/keyboards/maxipad/maxipad.h +++ b/keyboards/maxipad/maxipad.h @@ -8,18 +8,18 @@ // The first section contains all of the arguements // The second converts the arguments into a two-dimensional array #define KEYMAP( \ - k00, k01, k02, k03, k04, k05, \ - k10, k11, k12, k13, k14, k15, \ - k20, k21, k22, k23, k24, k25, \ - k30, k31, k32, k33, k34, k35, \ - k40, k41, k42, k43, k44, k45 \ + k00, k01, k02, k03, k04, k05, \ + k10, k11, k12, k13, k14, k15, \ + k20, k21, k22, k23, k24, k25, \ + k30, k31, k32, k33, k34, k35, \ + k40, k41, k42, k43, k44, k45 \ ) \ { \ { k00, k01, k02, k03, k04, k05 }, \ { k10, k11, k12, k13, k14, k15 }, \ { k20, k21, k22, k23, k24, k25 }, \ { k30, k31, k32, k33, k34, k35 }, \ - { k40, k41, k42, k43, k44, k45} \ + { k40, k41, k42, k43, k44, k45 } \ } #endif diff --git a/keyboards/maxipad/readme.md b/keyboards/maxipad/readme.md index de2265d111..861ea2b078 100644 --- a/keyboards/maxipad/readme.md +++ b/keyboards/maxipad/readme.md @@ -1,10 +1,10 @@ -## Quantum MK Firmware - -For the full Quantum feature list, see [the parent readme](/). +Maxipad keyboard firmware +## Quantum MK Firmware -## Building +For the full Quantum feature list, see [the parent readme.md](/readme.md). +If you are using a pro micro then make sure to enable USE_PRO_MICRO in the makefile Change the config.h pinout to match your mcu!! Download or clone the whole firmware and navigate to the keyboards/maxipad folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file. @@ -17,8 +17,8 @@ To build with the default keymap, simply run `make`. ### Other Keymaps +Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create file named `<name>.c` and see keymap document (you can find in top readme.md) and existent keymap files. -Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder, and see keymap documentation (you can find in top readme.md) and existant keymap files. To build the firmware binary hex file with a keymap just do `make` with a keymap like this: @@ -27,4 +27,3 @@ $ make [default|jack|<name>] ``` Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder. - diff --git a/keyboards/maxipad/rules.mk b/keyboards/maxipad/rules.mk index 56b2042efa..a5c7391523 100644 --- a/keyboards/maxipad/rules.mk +++ b/keyboards/maxipad/rules.mk @@ -1,3 +1,5 @@ + + # MCU name #MCU = at90usb1287 MCU = atmega32u4 @@ -49,14 +51,21 @@ OPT_DEFS += -DBOOTLOADER_SIZE=512 # Build Options -# change yes to no to disable +# comment out to disable the options. # -BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) -MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) -EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) -CONSOLE_ENABLE ?= yes # Console for debug(+400) -COMMAND_ENABLE ?= yes # Commands for debug and configuration +BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= yes # Console for debug(+400) +COMMAND_ENABLE ?= yes # Commands for debug and configuration # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +# SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend +# NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +# BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality +# MIDI_ENABLE ?= YES # MIDI controls +# UNICODE_ENABLE ?= YES # Unicode +# BLUETOOTH_ENABLE ?= yes # Enable Bluetooth with the Adafruit EZ-Key HID +USE_PRO_MICRO ?= yes SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work NKRO_ENABLE ?= no # USB Nkey Rollover @@ -64,4 +73,4 @@ BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by MIDI_ENABLE ?= no # MIDI controls UNICODE_ENABLE ?= no # Unicode BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID -AUDIO_ENABLE ?= no # Audio output on port C6
\ No newline at end of file +AUDIO_ENABLE ?= no # Audio output on port C6 diff --git a/keyboards/planck/keymaps/default/Makefile b/keyboards/planck/keymaps/default/Makefile index 267a087ea9..17487ebbfc 100644 --- a/keyboards/planck/keymaps/default/Makefile +++ b/keyboards/planck/keymaps/default/Makefile @@ -10,7 +10,7 @@ EXTRAKEY_ENABLE = yes # Audio control and System control(+450) CONSOLE_ENABLE = no # Console for debug(+400) COMMAND_ENABLE = no # Commands for debug and configuration NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality MIDI_ENABLE = yes # MIDI controls AUDIO_ENABLE = yes # Audio output on port C6 UNICODE_ENABLE = no # Unicode diff --git a/keyboards/planck/keymaps/priyadi/Makefile b/keyboards/planck/keymaps/priyadi/Makefile index f113f496c2..d9d4f3d1d7 100644 --- a/keyboards/planck/keymaps/priyadi/Makefile +++ b/keyboards/planck/keymaps/priyadi/Makefile @@ -1,8 +1,3 @@ -# Please remove if no longer applicable -$(warning THIS FILE MAY BE TOO LARGE FOR YOUR KEYBOARD) -$(warning Please disable some options in the Makefile to resolve) - - # Build Options # change to "no" to disable the options, or define them in the Makefile in # the appropriate keymap folder that will get included automatically @@ -11,7 +6,7 @@ BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) MOUSEKEY_ENABLE = no # Mouse keys(+4700) EXTRAKEY_ENABLE = yes # Audio control and System control(+450) CONSOLE_ENABLE = no # Console for debug(+400) -COMMAND_ENABLE = yes # Commands for debug and configuration +COMMAND_ENABLE = no # Commands for debug and configuration NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality MIDI_ENABLE = no # MIDI controls @@ -20,6 +15,7 @@ UNICODE_ENABLE = no # Unicode UNICODEMAP_ENABLE = yes # Unicode map BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. +API_SYSEX_ENABLE = no # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend diff --git a/keyboards/planck/keymaps/priyadi/keymap.c b/keyboards/planck/keymaps/priyadi/keymap.c index 6e7f4e7355..f0dafebf3f 100644 --- a/keyboards/planck/keymaps/priyadi/keymap.c +++ b/keyboards/planck/keymaps/priyadi/keymap.c @@ -179,7 +179,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { */ [_QWERTY] = { {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC}, - {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT }, + {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_ENT }, {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} }, @@ -196,10 +196,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * `-----------------------------------------------------------------------------------' */ [_COLEMAK] = { - {KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC}, - {KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_ENT }, - {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, - {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} + {_______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_QUOT, _______}, + {_______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, _______}, + {_______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______}, + {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} }, /* Workman @@ -214,10 +214,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * `-----------------------------------------------------------------------------------' */ [_WORKMAN] = { - {KC_TAB, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC}, - {KC_ESC, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_ENT }, - {KC_LSFT, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, - {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} + {_______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_QUOT, _______}, + {_______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, _______}, + {_______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______}, + {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} }, /* Punc @@ -322,6 +322,7 @@ float tone_linux[][2] = SONG(CAPS_LOCK_ON_SOUND); float tone_windows[][2] = SONG(SCROLL_LOCK_ON_SOUND); float tone_osx[][2] = SONG(NUM_LOCK_ON_SOUND); float tone_click[][2] = SONG(MUSICAL_NOTE(_F3, 2)); +float tone_release[][2] = SONG(MUSICAL_NOTE(_A3, 2)); #endif void persistant_default_layer_set(uint16_t default_layer) { @@ -331,9 +332,49 @@ void persistant_default_layer_set(uint16_t default_layer) { bool process_record_user(uint16_t keycode, keyrecord_t *record) { // faux clicky - if (record->event.pressed) PLAY_NOTE_ARRAY(tone_click, false, 0); + // if (record->event.pressed) PLAY_NOTE_ARRAY(tone_click, false, 0); + #ifdef AUDIO_ENABLE + if (record->event.pressed) { + PLAY_NOTE_ARRAY(tone_click, false, 0); + } else { + PLAY_NOTE_ARRAY(tone_release, false, 0); + } + #endif switch (keycode) { + // QWERTZ style comma and dot: semicolon and colon when shifted + case KC_COMM: + if (record->event.pressed) { + bool lshifted = keyboard_report->mods & MOD_BIT(KC_LSFT); + bool rshifted = keyboard_report->mods & MOD_BIT(KC_RSFT); + if (lshifted || rshifted) { + if (lshifted) unregister_code(KC_LSFT); + if (rshifted) unregister_code(KC_RSFT); + register_code(KC_SCLN); + unregister_code(KC_SCLN); + if (lshifted) register_code(KC_LSFT); + if (rshifted) register_code(KC_RSFT); + } else { + register_code(KC_COMM); + unregister_code(KC_COMM); + } + } + return false; + break; + case KC_DOT: + if (record->event.pressed) { + if ((keyboard_report->mods & MOD_BIT(KC_LSFT)) || (keyboard_report->mods & MOD_BIT(KC_RSFT))) { + register_code(KC_SCLN); + unregister_code(KC_SCLN); + } else { + register_code(KC_DOT); + unregister_code(KC_DOT); + } + } + return false; + break; + + // layout switcher case QWERTY: if (record->event.pressed) { #ifdef AUDIO_ENABLE @@ -361,6 +402,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } return false; break; + + // layer switchers case PUNC: if (record->event.pressed) { layer_on(_PUNC); @@ -397,6 +440,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } return false; break; + + // OS switchers case LINUX: set_unicode_input_mode(UC_LNX); #ifdef AUDIO_ENABLE diff --git a/keyboards/planck/keymaps/sgoodwin/Makefile b/keyboards/planck/keymaps/sgoodwin/Makefile index b2ca419445..9081c6d3ec 100644 --- a/keyboards/planck/keymaps/sgoodwin/Makefile +++ b/keyboards/planck/keymaps/sgoodwin/Makefile @@ -19,6 +19,7 @@ AUDIO_ENABLE = yes # Audio output on port C6 UNICODE_ENABLE = no # Unicode BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. +API_SYSEX_ENABLE = no # Disable extra stuff for ergodoxen # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend diff --git a/keyboards/planck/planck.c b/keyboards/planck/planck.c index 645b450d1d..3980b02f50 100644 --- a/keyboards/planck/planck.c +++ b/keyboards/planck/planck.c @@ -16,4 +16,4 @@ void matrix_init_kb(void) { PORTE |= (1<<6); matrix_init_user(); -}
\ No newline at end of file +} diff --git a/keyboards/planck/rules.mk b/keyboards/planck/rules.mk index ccee972715..fb24e82354 100644 --- a/keyboards/planck/rules.mk +++ b/keyboards/planck/rules.mk @@ -65,4 +65,4 @@ RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this API_SYSEX_ENABLE = yes # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE -SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend
\ No newline at end of file +SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend diff --git a/keyboards/preonic/rules.mk b/keyboards/preonic/rules.mk index c4ce2aacca..071bfdc7fe 100644 --- a/keyboards/preonic/rules.mk +++ b/keyboards/preonic/rules.mk @@ -56,11 +56,11 @@ BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) MOUSEKEY_ENABLE ?= no # Mouse keys(+4700) EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) CONSOLE_ENABLE ?= no # Console for debug(+400) -COMMAND_ENABLE ?= yes # Commands for debug and configuration +COMMAND_ENABLE ?= no # Commands for debug and configuration NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality -MIDI_ENABLE ?= no # MIDI controls -AUDIO_ENABLE ?= no # Audio output on port C6 +MIDI_ENABLE ?= yes # MIDI controls +AUDIO_ENABLE ?= yes # Audio output on port C6 UNICODE_ENABLE ?= no # Unicode BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c index 6d4172a06c..19f7b646ef 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c @@ -18,7 +18,7 @@ void voice_iterate() { } void voice_deiterate() { - voice = (voice - 1) % number_of_voices; + voice = (voice - 1 + number_of_voices) % number_of_voices; } float voice_envelope(float frequency) { @@ -31,6 +31,27 @@ float voice_envelope(float frequency) { polyphony_rate = 0; break; + case something: + polyphony_rate = 0; + switch (compensated_index) { + case 0 ... 9: + note_timbre = TIMBRE_12; + break; + + case 10 ... 19: + note_timbre = TIMBRE_25; + break; + + case 20 ... 200: + note_timbre = .25 + .125 + pow(((float)compensated_index - 20) / (200 - 20), 2)*.125; + break; + + default: + note_timbre = .25; + break; + } + break; + case butts_fader: polyphony_rate = 0; switch (compensated_index) { diff --git a/quantum/audio/voices.h b/quantum/audio/voices.h index b2495b23b5..b43def3d7d 100644 --- a/quantum/audio/voices.h +++ b/quantum/audio/voices.h @@ -11,6 +11,7 @@ float voice_envelope(float frequency); typedef enum { default_voice, + something, butts_fader, octave_crunch, duty_osc, diff --git a/quantum/process_keycode/process_music.c b/quantum/process_keycode/process_music.c index 2d52e47a72..bae43943e0 100644 --- a/quantum/process_keycode/process_music.c +++ b/quantum/process_keycode/process_music.c @@ -1,8 +1,8 @@ #include "process_music.h" bool music_activated = false; -uint8_t starting_note = 0x0C; -int offset = 7; +uint8_t music_starting_note = 0x0C; +int music_offset = 7; // music sequencer static bool music_sequence_recording = false; @@ -115,7 +115,7 @@ bool process_music(uint16_t keycode, keyrecord_t *record) { return false; } - float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(starting_note + SCALE[record->event.key.col + offset])/12.0+(MATRIX_ROWS - record->event.key.row)); + float freq = ((float)220.0)*pow(2.0, -5.0)*pow(2.0,(music_starting_note + SCALE[record->event.key.col + music_offset])/12.0+(MATRIX_ROWS - record->event.key.row)); if (record->event.pressed) { play_note(freq, 0xF); if (music_sequence_recording) { @@ -4,7 +4,7 @@ This is a keyboard firmware based on the [tmk_keyboard firmware](http://github.com/tmk/tmk_keyboard) with some useful features for Atmel AVR controllers, and more specifically, the [OLKB product line](http://olkb.com), the [ErgoDox EZ](http://www.ergodox-ez.com) keyboard, and the [Clueboard product line](http://clueboard.co/). -## Official website +## Official website (currently under construction with the move to the wiki) For an easy-to-read version of this document and the repository, check out [http://qmk.fm](http://qmk.fm). Nicely formatted keyboard and keymap listings are also available there, along with the ability to download .hex files instead of having to setup a build environment and compile them. @@ -31,1564 +31,9 @@ The OLKB product firmwares are maintained by [Jack Humbert](https://github.com/j This is not a tiny project. While this is the main readme, there are many other files you might want to consult. Here are some points of interest: +* [**The Wiki**](https://github.com/jackhumbert/qmk_firmware/wiki) - the entirity of the readme has been moved here * The readme for your own keyboard: This is found under `keyboards/<your keyboards's name>/`. So for the ErgoDox EZ, it's [here](keyboards/ergodox/ez/); for the Planck, it's [here](keyboards/planck/) and so on. * The list of possible keycodes you can use in your keymap is actually spread out in a few different places: * [doc/keycode.txt](doc/keycode.txt) - an explanation of those same keycodes. * [quantum/keymap.h](quantum/keymap.h) - this is where the QMK-specific aliases are all set up. Things like the Hyper and Meh key, the Leader key, and all of the other QMK innovations. These are also explained and documented below, but `keymap.h` is where they're actually defined. * The [TMK documentation](doc/TMK_README.md). QMK is based on TMK, and this explains how it works internally. - -# Getting started - -Before you are able to compile, you'll need to install an environment for AVR development. You'll find the instructions for any OS below. If you find another/better way to set things up from scratch, please consider [making a pull request](https://github.com/jackhumbert/qmk_firmware/pulls) with your changes! - -## Build Environment Setup - -### Windows 10 - -Due to some issues with the "Windows (Vista and later)" instructions below, we now recommend following these instructions if you use Windows, which will allow you to use the Windows Subsystem for Linux to compile the firmware. If you are not using Windows 10 with the Anniversary Update installed (which came out in July 2016), you will need to use one of the other methods, such as Docker, Vagrant, or the instructions for Vista and later. - -If you use this method, you will need to use a standalone tool to flash the firmware to the keyboard after you compile it. We recommend the official [QMK Firmware Flasher](https://github.com/jackhumbert/qmk_firmware_flasher/releases). This is because the Windows 10 Subsystem for Linux lacks [libUSB support](https://wpdev.uservoice.com/forums/266908-command-prompt-console-bash-on-ubuntu-on-windo/suggestions/13355724-unable-to-access-usb-devices-from-bash), so it can't access the keyboard's microcontroller. Please add your vote for Microsoft to fix this issue using the link! - -Here are the steps - -1. Install the Windows 10 subsystem for Linux, following [these instructions](http://www.howtogeek.com/249966/how-to-install-and-use-the-linux-bash-shell-on-windows-10/). -2. If you have cloned the repository using git before August 20, 2016, clean up the line endings from wherever you currently access git: - 1. Make sure that you have no changes you haven't committed by running `git status`. ANY UNCOMMITTED CHANGES WILL BE PERMANENTLY LOST. - 2. Run `git rm --cached -r .` - 3. Run `git reset --hard` -3. Open "Bash On Ubuntu On Windows" from the start menu -4. With the bash window open, navigate to your copy of the [qmk_firmware repository](https://github.com/jackhumbert/qmk_firmware) using the `cd` command. The harddisks can be accessed from `/mnt/<driveletter>`. For example, your main hard drive (C:) can be accessed by executiing the command `cd /mnt/c`. If your username is John and the qmk_firmware folder is in your Downloads folder, you can move to it with the command `cd /mnt/c/Users/John/Downloads/qmk_firmware`. You can use the Tab key as you go to help you autocomplete the folder names. -5. Run `sudo util/install_dependencies.sh`. -6. After a while the installation will finish, and you are good to go - -**Note** From time to time, the dependencies might change, so just run `install_dependencies.sh` again if things are not working. - -**Warning:** If you edit Makefiles or shell scripts, make sure you are using an editor that saves the files with Unix line endings. Otherwise the compilation might not work. - - -### Windows (Vista and later) -1. If you have ever installed WinAVR, uninstall it. -2. Install [MHV AVR Tools](https://infernoembedded.com/sites/default/files/project/MHV_AVR_Tools_20131101.exe). Disable smatch, but **be sure to leave the option to add the tools to the PATH checked**. -3. If you are going to flash Infinity based keyboards you will need to install dfu-util, refer to the instructions by [Input Club](https://github.com/kiibohd/controller/wiki/Loading-DFU-Firmware). -4. Install [MinGW](https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download). During installation, uncheck the option to install a graphical user interface. **DO NOT change the default installation folder.** The scripts depend on the default location. -5. Clone this repository. [This link will download it as a zip file, which you'll need to extract.](https://github.com/jackhumbert/qmk_firmware/archive/master.zip) Open the extracted folder in Windows Explorer. -6. Open the `\util` folder. -7. Double-click on the `1-setup-path-win` batch script to run it. You'll need to accept a User Account Control prompt. Press the spacebar to dismiss the success message in the command prompt that pops up. -8. Right-click on the `2-setup-environment-win` batch script, select "Run as administrator", and accept the User Account Control prompt. This part may take a couple of minutes, and you'll need to approve a driver installation, but once it finishes, your environment is complete! - -If you have trouble and want to ask for help, it is useful to generate a *Win_Check_Output.txt* file by running `Win_Check.bat` in the `\util` folder. - -### Mac -If you're using [homebrew,](http://brew.sh/) you can use the following commands: - - brew tap osx-cross/avr - brew install avr-libc - brew install dfu-programmer - -This is the recommended method. If you don't have homebrew, [install it!](http://brew.sh/) It's very much worth it for anyone who works in the command line. - -You can also try these instructions: - -1. Install Xcode from the App Store. -2. Install the Command Line Tools from `Xcode->Preferences->Downloads`. -3. Install [DFU-Programmer][dfu-prog]. - -If you are going to flash Infinity based keyboards you will also need dfu-util - - brew install dfu-util - -### Linux - -To ensure you are always up to date, you can just run `sudo util/install_dependencies.sh`. That should always install all the dependencies needed. - -You can also install things manually, but this documentation might not be always up to date with all requirements. - -The current requirements are the following, but not all might be needed depending on what you do. Also note that some systems might not have all the dependencies available as packages, or they might be named differently. - -``` -build-essential -gcc -unzip -wget -zip -gcc-avr -binutils-avr -avr-libc -dfu-programmer -dfu-util -gcc-arm-none-eabi -binutils-arm-none-eabi -libnewlib-arm-none-eabi -git -``` - -Install the dependencies with your favorite package manager. - -Debian/Ubuntu example: - - sudo apt-get update - sudo apt-get install gcc unzip wget zip gcc-avr binutils-avr avr-libc dfu-programmer dfu-util gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi - -### Docker - -If this is a bit complex for you, Docker might be the turn-key solution you need. After installing [Docker](https://www.docker.com/products/docker), run the following command at the root of the QMK folder to build a keyboard/keymap: - -```bash -# You'll run this every time you want to build a keymap -# modify the keymap and keyboard assigment to compile what you want -# defaults are ergodox/default - -docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware - -# On windows docker seems to have issue with VOLUME tag in Dockerfile, and $('pwd') won't print a windows compliant path, use full path instead like this -docker run -e keymap=default -e keyboard=ergobop --rm -v D:/Users/Sacapuces/Documents/Repositories/qmk:/qmk:rw edasque/qmk_firmware - -``` - -This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. - -### Vagrant -If you have any problems building the firmware, you can try using a tool called Vagrant. It will set up a virtual computer with a known configuration that's ready-to-go for firmware building. OLKB does NOT host the files for this virtual computer. Details on how to set up Vagrant are in the [VAGRANT_GUIDE file](doc/VAGRANT_GUIDE.md). - -## Verify Your Installation -1. If you haven't already, obtain this repository ([https://github.com/jackhumbert/qmk_firmware](https://github.com/jackhumbert/qmk_firmware)). You can either download it as a zip file and extract it, or clone it using the command line tool git or the Github Desktop application. -2. Open up a terminal or command prompt and navigate to the `qmk_firmware` folder using the `cd` command. The command prompt will typically open to your home directory. If, for example, you cloned the repository to your Documents folder, then you would type `cd Documents/qmk_firmware`. If you extracted the file from a zip, then it may be named `qmk_firmware-master` instead. -3. To confirm that you're in the correct location, you can display the contents of your current folder using the `dir` command on Windows, or the `ls` command on Linux or Mac. You should see several files, including `readme.md` and a `quantum` folder. From here, you need to navigate to the appropriate folder under `keyboards/`. For example, if you're building for a Planck, run `cd keyboards/planck`. -4. Once you're in the correct keyboard-specific folder, run the `make` command. This should output a lot of information about the build process. More information about the `make` command can be found below. - -# Customizing your keymap - -In every keymap folder, the following files are recommended: - -* `config.h` - the options to configure your keymap -* `keymap.c` - all of your keymap code, required -* `Makefile` - the features of QMK that are enabled, required to run `make` in your keymap folder -* `readme.md` - a description of your keymap, how others might use it, and explanations of features - -## The `make` command - -The `make` command is how you compile the firmware into a .hex file, which can be loaded by a dfu programmer (like dfu-progammer via `make dfu`) or the [Teensy loader](https://www.pjrc.com/teensy/loader.html) (only used with Teensys). - -**NOTE:** To abort a make command press `Ctrl-c` - -The following instruction refers to these folders. - -* The `root` (`/`) folder is the qmk_firmware folder, in which are `doc`, `keyboard`, `quantum`, etc. -* The `keyboard` folder is any keyboard project's folder, like `/keyboards/planck`. -* The `keymap` folder is any keymap's folder, like `/keyboards/planck/keymaps/default`. -* The `subproject` folder is the subproject folder of a keyboard, like `/keyboards/ergodox/ez` - -### Simple instructions for building and uploading a keyboard - -**Most keyboards have more specific instructions in the keyboard specific readme.md file, so please check that first** - -If the `keymap` folder contains a file name `Makefile` - -1. Change the directory to the `keymap` folder -2. Run `make <subproject>-<programmer>` - -Otherwise, if there's no `Makefile` in the `keymap` folder - -1. Enter the `keyboard` folder -2. Run `make <subproject>-<keymap>-<programmer>` - -In the above commands, replace: - -* `<keymap>` with the name of your keymap -* `<subproject>` with the name of the subproject (revision or sub-model of your keyboard). For example, for Ergodox it can be `ez` or `infinity`, and for Planck `rev3` or `rev4`. - * If the keyboard doesn't have a subproject, or if you are happy with the default (defined in `rules.mk` file of the `keyboard` folder), you can leave it out. But remember to also remove the dash (`-`) from the command. -* `<programmer>` The programmer to use. Most keyboards use `dfu`, but some use `teensy`. Infinity keyboards use `dfu-util`. Check the readme file in the keyboard folder to find out which programmer to use. - * If you don't add `-<programmer` to the command line, the firmware will be still be compiled into a hex file, but the upload will be skipped. - -**NOTE:** Some operating systems will refuse to program unless you run the make command as root for example `sudo make dfu` - -### More detailed make instruction - -The full syntax of the `make` command is the following, but parts of the command can be left out if you run it from other directories than the `root` (as you might already have noticed by reading the simple instructions). - -`<keyboard>-<subproject>-<keymap>-<target>`, where: - -* `<keyboard>` is the name of the keyboard, for example `planck` - * Use `allkb` to compile all keyboards -* `<subproject>` is the name of the subproject (revision or sub-model of the keyboard). For example, for Ergodox it can be `ez` or `infinity`, and for Planck `rev3` or `rev4`. - * If the keyboard doesn't have any subprojects, it can be left out - * To compile the default subproject, you can leave it out, or specify `defaultsp` - * Use `allsp` to compile all subprojects -* `<keymap>` is the name of the keymap, for example `algernon` - * Use `allkm` to compile all keymaps -* `<target>` will be explained in more detail below. - -**Note:** When you leave some parts of the command out, you should also remove the dash (`-`). - -As mentioned above, there are some shortcuts, when you are in a: - -* `keyboard` folder, the command will automatically fill the `<keyboard>` part. So you only need to type `<subproject>-<keymap>-<target>` -* `subproject` folder, it will fill in both `<keyboard>` and `<subproject>` -* `keymap` folder, then `<keyboard>` and `<keymap>` will be filled in. If you need to specify the `<subproject>` use the following syntax `<subproject>-<target>` - * Note in order to support this shortcut, the keymap needs its own Makefile (see the example [here](/doc/keymap_makefile_example.mk)) -* `keymap` folder of a `subproject`, then everything except the `<target>` will be filled in - -The `<target>` means the following -* If no target is given, then it's the same as `all` below -* `all` compiles the keyboard and generates a `<keyboard>_<keymap>.hex` file in whichever folder you run `make` from. These files are ignored by git, so don't worry about deleting them when committing/creating pull requests. -* `dfu`, `teensy` or `dfu-util`, compile and upload the firmware to the keyboard. If the compilation fails, then nothing will be uploaded. The programmer to use depends on the keyboard. For most keyboards it's `dfu`, but for Infinity keyboards you should use `dfu-util`, and `teensy` for standard Teensys. To find out which command you should use for your keyboard, check the keyboard specific readme. **Note** that some operating systems needs root access for these commands to work, so in that case you need to run for example `sudo make dfu`. -* `clean`, cleans the build output folders to make sure that everything is built from scratch. Run this before normal compilation if you have some unexplainable problems. - -Some other targets are supported but, but not important enough to be documented here. Check the source code of the make files for more information. - -You can also add extra options at the end of the make command line, after the target - -* `make COLOR=false` - turns off color output -* `make SILENT=true` - turns off output besides errors/warnings -* `make VERBOSE=true` - outputs all of the gcc stuff (not interesting, unless you need to debug) -* `make EXTRAFLAGS=-E` - Preprocess the code without doing any compiling (useful if you are trying to debug #define commands) - -The make command itself also has some additional options, type `make --help` for more information. The most useful is probably `-jx`, which specifies that you want to compile using more than one CPU, the `x` represents the number of CPUs that you want to use. Setting that can greatly reduce the compile times, especially if you are compiling many keyboards/keymaps. I usually set it to one less than the number of CPUs that I have, so that I have some left for doing other things while it's compiling. Note that not all operating systems and make versions supports that option. - -Here are some examples commands - -* `make allkb-allsp-allkm` builds everything (all keyboards, all subprojects, all keymaps). Running just `make` from the `root` will also run this. -* `make` from within a `keyboard` directory, is the same as `make keyboard-allsp-allkm`, which compiles all subprojects and keymaps of the keyboard. **NOTE** that this behaviour has changed. Previously it compiled just the default keymap. -* `make ergodox-infinity-algernon-clean` will clean the build output of the Ergodox Infinity keyboard. This example uses the full syntax and can be run from any folder with a `Makefile` -* `make dfu COLOR=false` from within a keymap folder, builds and uploads the keymap, but without color output. - -## The `Makefile` - -There are 5 different `make` and `Makefile` locations: - -* root (`/`) -* keyboard (`/keyboards/<keyboard>/`) -* keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`) -* subproject (`/keyboards/<keyboard>/<subproject>`) -* subproject keymap (`/keyboards/<keyboard>/<subproject>/keymaps/<keymap>`) - -The root contains the code used to automatically figure out which keymap or keymaps to compile based on your current directory and commandline arguments. It's considered stable, and shouldn't be modified. The keyboard one will contain the MCU set-up and default settings for your keyboard, and shouldn't be modified unless you are the producer of that keyboard. The keymap Makefile can be modified by users, and is optional. It is included automatically if it exists. You can see an example [here](/doc/keymap_makefile_example.mk) - the last few lines are the most important. The settings you set here will override any defaults set in the keyboard Makefile. **The file is required if you want to run `make` in the keymap folder.** - -For keyboards and subprojects, the make files are split in two parts `Makefile` and `rules.mk`. All settings can be found in the `rules.mk` file, while the `Makefile` is just there for support and including the root `Makefile`. Keymaps contain just one `Makefile` for simplicity. - -### Makefile options - -Set the variables to `no` to disable them, and `yes` to enable them. - -`BOOTMAGIC_ENABLE` - -This allows you to hold a key and the salt key (space by default) and have access to a various EEPROM settings that persist over power loss. It's advised you keep this disabled, as the settings are often changed by accident, and produce confusing results that makes it difficult to debug. It's one of the more common problems encountered in help sessions. - -`MOUSEKEY_ENABLE` - -This gives you control over cursor movements and clicks via keycodes/custom functions. - -`EXTRAKEY_ENABLE` - -This allows you to use the system and audio control key codes. - -`CONSOLE_ENABLE` - -This allows you to print messages that can be read using [`hid_listen`](https://www.pjrc.com/teensy/hid_listen.html). - -By default, all debug (*dprint*) print (*print*, *xprintf*), and user print (*uprint*) messages will be enabled. This will eat up a significant portion of the flash and may make the keyboard .hex file too big to program. - -To disable debug messages (*dprint*) and reduce the .hex file size, include `#define NO_DEBUG` in your `config.h` file. - -To disable print messages (*print*, *xprintf*) and user print messages (*uprint*) and reduce the .hex file size, include `#define NO_PRINT` in your `config.h` file. - -To disable print messages (*print*, *xprintf*) and **KEEP** user print messages (*uprint*), include `#define USER_PRINT` in your `config.h` file. - -To see the text, open `hid_listen` and enjoy looking at your printed messages. - -**NOTE:** Do not include *uprint* messages in anything other than your keymap code. It must not be used within the QMK system framework. Otherwise, you will bloat other people's .hex files. - -`COMMAND_ENABLE` - -This enables magic commands, typically fired with the default magic key combo `LSHIFT+RSHIFT+KEY`. Magic commands include turning on debugging messages (`MAGIC+D`) or temporarily toggling NKRO (`MAGIC+N`). - -`SLEEP_LED_ENABLE` - -Enables your LED to breath while your computer is sleeping. Timer1 is being used here. This feature is largely unused and untested, and needs updating/abstracting. - -`NKRO_ENABLE` - -This allows the keyboard to tell the host OS that up to 248 keys are held down at once (default without NKRO is 6). NKRO is off by default, even if `NKRO_ENABLE` is set. NKRO can be forced by adding `#define FORCE_NKRO` to your config.h or by binding `MAGIC_TOGGLE_NKRO` to a key and then hitting the key. - -`BACKLIGHT_ENABLE` - -This enables your backlight on Timer1 and ports B5, B6, or B7 (for now). You can specify your port by putting this in your `config.h`: - - #define BACKLIGHT_PIN B7 - -`MIDI_ENABLE` - -This enables MIDI sending and receiving with your keyboard. To enter MIDI send mode, you can use the keycode `MI_ON`, and `MI_OFF` to turn it off. This is a largely untested feature, but more information can be found in the `quantum/quantum.c` file. - -`UNICODE_ENABLE` - -This allows you to send unicode symbols via `UC(<unicode>)` in your keymap. Only codes up to 0x7FFF are currently supported. - -`UNICODEMAP_ENABLE` - -This allows sending unicode symbols using `X(<unicode>)` in your keymap. Codes -up to 0xFFFFFFFF are supported, including emojis. You will need to maintain -a separate mapping table in your keymap file. - -Known limitations: -- Under Mac OS, only codes up to 0xFFFF are supported. -- Under Linux ibus, only codes up to 0xFFFFF are supported (but anything important is still under this limit for now). - -Characters out of range supported by the OS will be ignored. - -`BLUETOOTH_ENABLE` - -This allows you to interface with a Bluefruit EZ-key to send keycodes wirelessly. It uses the D2 and D3 pins. - -`AUDIO_ENABLE` - -This allows you output audio on the C6 pin (needs abstracting). See the [audio section](#driving-a-speaker---audio-support) for more information. - -`VARIABLE_TRACE` - -Use this to debug changes to variable values, see the [tracing variables](#tracing-variables) section for more information. - -`API_SYSEX_ENABLE` - -This enables using the Quantum SYSEX API to send strings (somewhere?) - -### Customizing Makefile options on a per-keymap basis - -If your keymap directory has a file called `Makefile` (note the filename), any Makefile options you set in that file will take precedence over other Makefile options for your particular keyboard. - -So let's say your keyboard's makefile has `BACKLIGHT_ENABLE = yes` (or maybe doesn't even list the `BACKLIGHT_ENABLE` option, which would cause it to be off). You want your particular keymap to not have the debug console, so you make a file called `Makefile` and specify `BACKLIGHT_ENABLE = no`. - -You can use the `doc/keymap_makefile_example.md` as a template/starting point. - -## The `config.h` file - -There are 2 `config.h` locations: - -* keyboard (`/keyboards/<keyboard>/`) -* keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`) - -The keyboard `config.h` is included only if the keymap one doesn't exist. The format to use for your custom one [is here](/doc/keymap_config_h_example.h). If you want to override a setting from the parent `config.h` file, you need to do this: - -```c -#undef MY_SETTING -#define MY_SETTING 4 -``` - -For a value of `4` for this imaginary setting. So we `undef` it first, then `define` it. - -You can then override any settings, rather than having to copy and paste the whole thing. - -# Going beyond the keycodes - -Aside from the [basic keycodes](doc/keycode.txt), your keymap can include shortcuts to common operations. - -## Quick aliases to common actions - -Your keymap can include shortcuts to common operations (called "function actions" in tmk). - -These functions work the same way that their `ACTION_*` functions do - they're just quick aliases. To dig into all of the tmk `ACTION_*` functions, please see the [TMK documentation](https://github.com/jackhumbert/qmk_firmware/blob/master/doc/keymap.md#2-action). - -Instead of using `FNx` when defining `ACTION_*` functions, you can use `F(x)` - the benefit here is being able to use more than 32 function actions (up to 4096), if you happen to need them. - -### Switching and toggling layers - -`MO(layer)` - momentary switch to *layer*. As soon as you let go of the key, the layer is deactivated and you pop back out to the previous layer. When you apply this to a key, that same key must be set as `KC_TRNS` on the destination layer. Otherwise, you won't make it back to the original layer when you release the key (and you'll get a keycode sent). You can only switch to layers *above* your current layer. If you're on layer 0 and you use `MO(1)`, that will switch to layer 1 just fine. But if you include `MO(3)` on layer 5, that won't do anything for you -- because layer 3 is lower than layer 5 on the stack. - -`OSL(layer)` - momentary switch to *layer*, as a one-shot operation. So if you have a key that's defined as `OSL(1)`, and you tap that key, then only the very next keystroke would come from layer 1. You would drop back to layer zero immediately after that one keystroke. That's handy if you have a layer full of custom shortcuts -- for example, a dedicated key for closing a window. So you tap your one-shot layer mod, then tap that magic 'close window' key, and keep typing like a boss. Layer 1 would remain active as long as you hold that key down, too (so you can use it like a momentary toggle-layer key with extra powers). - -`LT(layer, kc)` - momentary switch to *layer* when held, and *kc* when tapped. Like `MO()`, this only works upwards in the layer stack (`layer` must be higher than the current layer). - -`TG(layer)` - toggles a layer on or off. As with `MO()`, you should set this key as `KC_TRNS` in the destination layer so that tapping it again actually toggles back to the original layer. Only works upwards in the layer stack. - -`TO(layer)` - Goes to a layer. This code is special, because it lets you go either up or down the stack -- just goes directly to the layer you want. So while other codes only let you go _up_ the stack (from layer 0 to layer 3, for example), `TO(2)` is going to get you to layer 2, no matter where you activate it from -- even if you're currently on layer 5. This gets activated on keydown (as soon as the key is pressed). - - -### Fun with modifier keys - -* `LSFT(kc)` - applies left Shift to *kc* (keycode) - `S(kc)` is an alias -* `RSFT(kc)` - applies right Shift to *kc* -* `LCTL(kc)` - applies left Control to *kc* -* `RCTL(kc)` - applies right Control to *kc* -* `LALT(kc)` - applies left Alt to *kc* -* `RALT(kc)` - applies right Alt to *kc* -* `LGUI(kc)` - applies left GUI (command/win) to *kc* -* `RGUI(kc)` - applies right GUI (command/win) to *kc* -* `HYPR(kc)` - applies Hyper (all modifiers) to *kc* -* `MEH(kc)` - applies Meh (all modifiers except Win/Cmd) to *kc* -* `LCAG(kc)` - applies CtrlAltGui to *kc* - -You can also chain these, like this: - - LALT(LCTL(KC_DEL)) -- this makes a key that sends Alt, Control, and Delete in a single keypress. - -The following shortcuts automatically add `LSFT()` to keycodes to get commonly used symbols. Their long names are also available and documented in `/quantum/keymap_common.h`. - - KC_TILD ~ - KC_EXLM ! - KC_AT @ - KC_HASH # - KC_DLR $ - KC_PERC % - KC_CIRC ^ - KC_AMPR & - KC_ASTR * - KC_LPRN ( - KC_RPRN ) - KC_UNDS _ - KC_PLUS + - KC_DQUO " - KC_LCBR { - KC_RCBR } - KC_LABK < - KC_RABK > - KC_PIPE | - KC_COLN : - -`OSM(mod)` - this is a "one shot" modifier. So let's say you have your left Shift key defined as `OSM(MOD_LSFT)`. Tap it, let go, and Shift is "on" -- but only for the next character you'll type. So to write "The", you don't need to hold down Shift -- you tap it, tap t, and move on with life. And if you hold down the left Shift key, it just works as a left Shift key, as you would expect (so you could type THE). There's also a magical, secret way to "lock" a modifier by tapping it multiple times. If you want to learn more about that, open an issue. :) - -`MT(mod, kc)` - is *mod* (modifier key - MOD_LCTL, MOD_LSFT) when held, and *kc* when tapped. In other words, you can have a key that sends Esc (or the letter O or whatever) when you tap it, but works as a Control key or a Shift key when you hold it down. - -These are the values you can use for the `mod` in `MT()` and `OSM()` (right-hand modifiers are not available for `MT()`): - - * MOD_LCTL - * MOD_LSFT - * MOD_LALT - * MOD_LGUI - * MOD_HYPR - * MOD_MEH - -These can also be combined like `MOD_LCTL | MOD_LSFT` e.g. `MT(MOD_LCTL | MOD_LSFT, KC_ESC)` which would activate Control and Shift when held, and send Escape when tapped. - -We've added shortcuts to make common modifier/tap (mod-tap) mappings more compact: - - * `CTL_T(kc)` - is LCTL when held and *kc* when tapped - * `SFT_T(kc)` - is LSFT when held and *kc* when tapped - * `ALT_T(kc)` - is LALT when held and *kc* when tapped - * `GUI_T(kc)` - is LGUI when held and *kc* when tapped - * `ALL_T(kc)` - is Hyper (all mods) when held and *kc* when tapped. To read more about what you can do with a Hyper key, see [this blog post by Brett Terpstra](http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/) - * `LCAG_T(kc)` - is CtrlAltGui when held and *kc* when tapped - * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift. - -## Space Cadet Shift: The future, built in - -Steve Losh [described](http://stevelosh.com/blog/2012/10/a-modern-space-cadet/) the Space Cadet Shift quite well. Essentially, you hit the left Shift on its own, and you get an opening parenthesis; hit the right Shift on its own, and you get the closing one. When hit with other keys, the Shift key keeps working as it always does. Yes, it's as cool as it sounds. - -To use it, use `KC_LSPO` (Left Shift, Parens Open) for your left Shift on your keymap, and `KC_RSPC` (Right Shift, Parens Close) for your right Shift. - -It's defaulted to work on US keyboards, but if your layout uses different keys for parenthesis, you can define those in your `config.h` like this: - - #define LSPO_KEY KC_9 - #define RSPC_KEY KC_0 - -You can also choose between different rollover behaviors of the shift keys by defining: - - #define DISABLE_SPACE_CADET_ROLLOVER - -in your `config.h`. Disabling rollover allows you to use the opposite shift key to cancel the space cadet state in the event of an erroneous press instead of emitting a pair of parentheses when the keys are released. - -The only other thing you're going to want to do is create a `Makefile` in your keymap directory and set the following: - -``` -COMMAND_ENABLE = no # Commands for debug and configuration -``` - -This is just to keep the keyboard from going into command mode when you hold both Shift keys at the same time. - -## The Leader key: A new kind of modifier - -If you've ever used Vim, you know what a Leader key is. If not, you're about to discover a wonderful concept. :) Instead of hitting Alt+Shift+W for example (holding down three keys at the same time), what if you could hit a _sequence_ of keys instead? So you'd hit our special modifier (the Leader key), followed by W and then C (just a rapid succession of keys), and something would happen. - -That's what `KC_LEAD` does. Here's an example: - -1. Pick a key on your keyboard you want to use as the Leader key. Assign it the keycode `KC_LEAD`. This key would be dedicated just for this -- it's a single action key, can't be used for anything else. -2. Include the line `#define LEADER_TIMEOUT 300` somewhere in your keymap.c file, probably near the top. The 300 there is 300ms -- that's how long you have for the sequence of keys following the leader. You can tweak this value for comfort, of course. -3. Within your `matrix_scan_user` function, do something like this: - -``` -LEADER_EXTERNS(); - -void matrix_scan_user(void) { - LEADER_DICTIONARY() { - leading = false; - leader_end(); - - SEQ_ONE_KEY(KC_F) { - register_code(KC_S); - unregister_code(KC_S); - } - SEQ_TWO_KEYS(KC_A, KC_S) { - register_code(KC_H); - unregister_code(KC_H); - } - SEQ_THREE_KEYS(KC_A, KC_S, KC_D) { - register_code(KC_LGUI); - register_code(KC_S); - unregister_code(KC_S); - unregister_code(KC_LGUI); - } - } -} -``` - -As you can see, you have three function. you can use - `SEQ_ONE_KEY` for single-key sequences (Leader followed by just one key), and `SEQ_TWO_KEYS` and `SEQ_THREE_KEYS` for longer sequences. Each of these accepts one or more keycodes as arguments. This is an important point: You can use keycodes from **any layer on your keyboard**. That layer would need to be active for the leader macro to fire, obviously. - -## Tap Dance: A single key can do 3, 5, or 100 different things - -Hit the semicolon key once, send a semicolon. Hit it twice, rapidly -- send a colon. Hit it three times, and your keyboard's LEDs do a wild dance. That's just one example of what Tap Dance can do. It's one of the nicest community-contributed features in the firmware, conceived and created by [algernon](https://github.com/algernon) in [#451](https://github.com/jackhumbert/qmk_firmware/pull/451). Here's how algernon describes the feature: - -With this feature one can specify keys that behave differently, based on the amount of times they have been tapped, and when interrupted, they get handled before the interrupter. - -To make it clear how this is different from `ACTION_FUNCTION_TAP`, lets explore a certain setup! We want one key to send `Space` on single tap, but `Enter` on double-tap. - -With `ACTION_FUNCTION_TAP`, it is quite a rain-dance to set this up, and has the problem that when the sequence is interrupted, the interrupting key will be send first. Thus, `SPC a` will result in `a SPC` being sent, if they are typed within `TAPPING_TERM`. With the tap dance feature, that'll come out as `SPC a`, correctly. - -The implementation hooks into two parts of the system, to achieve this: into `process_record_quantum()`, and the matrix scan. We need the latter to be able to time out a tap sequence even when a key is not being pressed, so `SPC` alone will time out and register after `TAPPING_TERM` time. - -But lets start with how to use it, first! - -First, you will need `TAP_DANCE_ENABLE=yes` in your `Makefile`, because the feature is disabled by default. This adds a little less than 1k to the firmware size. Next, you will want to define some tap-dance keys, which is easiest to do with the `TD()` macro, that - similar to `F()`, takes a number, which will later be used as an index into the `tap_dance_actions` array. - -This array specifies what actions shall be taken when a tap-dance key is in action. Currently, there are three possible options: - -* `ACTION_TAP_DANCE_DOUBLE(kc1, kc2)`: Sends the `kc1` keycode when tapped once, `kc2` otherwise. When the key is held, the appropriate keycode is registered: `kc1` when pressed and held, `kc2` when tapped once, then pressed and held. -* `ACTION_TAP_DANCE_FN(fn)`: Calls the specified function - defined in the user keymap - with the final tap count of the tap dance action. -* `ACTION_TAP_DANCE_FN_ADVANCED(on_each_tap_fn, on_dance_finished_fn, on_dance_reset_fn)`: Calls the first specified function - defined in the user keymap - on every tap, the second function on when the dance action finishes (like the previous option), and the last function when the tap dance action resets. - -The first option is enough for a lot of cases, that just want dual roles. For example, `ACTION_TAP_DANCE(KC_SPC, KC_ENT)` will result in `Space` being sent on single-tap, `Enter` otherwise. - -And that's the bulk of it! - -And now, on to the explanation of how it works! - -The main entry point is `process_tap_dance()`, called from `process_record_quantum()`, which is run for every keypress, and our handler gets to run early. This function checks whether the key pressed is a tap-dance key. If it is not, and a tap-dance was in action, we handle that first, and enqueue the newly pressed key. If it is a tap-dance key, then we check if it is the same as the already active one (if there's one active, that is). If it is not, we fire off the old one first, then register the new one. If it was the same, we increment the counter and the timer. - -This means that you have `TAPPING_TERM` time to tap the key again, you do not have to input all the taps within that timeframe. This allows for longer tap counts, with minimal impact on responsiveness. - -Our next stop is `matrix_scan_tap_dance()`. This handles the timeout of tap-dance keys. - -For the sake of flexibility, tap-dance actions can be either a pair of keycodes, or a user function. The latter allows one to handle higher tap counts, or do extra things, like blink the LEDs, fiddle with the backlighting, and so on. This is accomplished by using an union, and some clever macros. - -### Examples - -Here's a simple example for a single definition: - -1. In your `makefile`, add `TAP_DANCE_ENABLE = yes` -2. In your `config.h` (which you can copy from `qmk_firmware/keyboards/planck/config.h` to your keymap directory), add `#define TAPPING_TERM 200` -3. In your `keymap.c` file, define the variables and definitions, then add to your keymap: - -```c -//Tap Dance Declarations -enum { - TD_ESC_CAPS = 0 -}; - -//Tap Dance Definitions -qk_tap_dance_action_t tap_dance_actions[] = { - //Tap once for Esc, twice for Caps Lock - [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS) -// Other declarations would go here, separated by commas, if you have them -}; - -//In Layer declaration, add tap dance item in place of a key code -TD(TD_ESC_CAPS) -``` - -Here's a more complex example involving custom actions: - -```c -enum { - CT_SE = 0, - CT_CLN, - CT_EGG, - CT_FLSH, -}; - -/* Have the above three on the keymap, TD(CT_SE), etc... */ - -void dance_cln_finished (qk_tap_dance_state_t *state, void *user_data) { - if (state->count == 1) { - register_code (KC_RSFT); - register_code (KC_SCLN); - } else { - register_code (KC_SCLN); - } -} - -void dance_cln_reset (qk_tap_dance_state_t *state, void *user_data) { - if (state->count == 1) { - unregister_code (KC_RSFT); - unregister_code (KC_SCLN); - } else { - unregister_code (KC_SCLN); - } -} - -void dance_egg (qk_tap_dance_state_t *state, void *user_data) { - if (state->count >= 100) { - SEND_STRING ("Safety dance!"); - reset_tap_dance (state); - } -} - -// on each tap, light up one led, from right to left -// on the forth tap, turn them off from right to left -void dance_flsh_each(qk_tap_dance_state_t *state, void *user_data) { - switch (state->count) { - case 1: - ergodox_right_led_3_on(); - break; - case 2: - ergodox_right_led_2_on(); - break; - case 3: - ergodox_right_led_1_on(); - break; - case 4: - ergodox_right_led_3_off(); - _delay_ms(50); - ergodox_right_led_2_off(); - _delay_ms(50); - ergodox_right_led_1_off(); - } -} - -// on the fourth tap, set the keyboard on flash state -void dance_flsh_finished(qk_tap_dance_state_t *state, void *user_data) { - if (state->count >= 4) { - reset_keyboard(); - reset_tap_dance(state); - } -} - -// if the flash state didnt happen, then turn off leds, left to right -void dance_flsh_reset(qk_tap_dance_state_t *state, void *user_data) { - ergodox_right_led_1_off(); - _delay_ms(50); - ergodox_right_led_2_off(); - _delay_ms(50); - ergodox_right_led_3_off(); -} - -qk_tap_dance_action_t tap_dance_actions[] = { - [CT_SE] = ACTION_TAP_DANCE_DOUBLE (KC_SPC, KC_ENT) - ,[CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset) - ,[CT_EGG] = ACTION_TAP_DANCE_FN (dance_egg) - ,[CT_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED (dance_flsh_each, dance_flsh_finished, dance_flsh_reset) -}; -``` - -## Temporarily setting the default layer - -`DF(layer)` - sets default layer to *layer*. The default layer is the one at the "bottom" of the layer stack - the ultimate fallback layer. This currently does not persist over power loss. When you plug the keyboard back in, layer 0 will always be the default. It is theoretically possible to work around that, but that's not what `DF` does. - -## Prevent stuck modifiers - -Consider the following scenario: - -1. Layer 0 has a key defined as Shift. -2. The same key is defined on layer 1 as the letter A. -3. User presses Shift. -4. User switches to layer 1 for whatever reason. -5. User releases Shift, or rather the letter A. -6. User switches back to layer 0. - -Shift was actually never released and is still considered pressed. - -If such situation bothers you add this to your `config.h`: - - #define PREVENT_STUCK_MODIFIERS - -This option uses 5 bytes of memory per every 8 keys on the keyboard -rounded up (5 bits per key). For example on Planck (48 keys) it uses -(48/8)\*5 = 30 bytes. - -## Macro shortcuts: Send a whole string when pressing just one key - -Instead of using the `ACTION_MACRO` function, you can simply use `M(n)` to access macro *n* - *n* will get passed into the `action_get_macro` as the `id`, and you can use a switch statement to trigger it. This gets called on the keydown and keyup, so you'll need to use an if statement testing `record->event.pressed` (see keymap_default.c). - -```c -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // this is the function signature -- just copy/paste it into your keymap file as it is. -{ - switch(id) { - case 0: // this would trigger when you hit a key mapped as M(0) - if (record->event.pressed) { - return MACRO( I(255), T(H), T(E), T(L), T(L), W(255), T(O), END ); // this sends the string 'hello' when the macro executes - } - break; - } - return MACRO_NONE; -}; -``` -A macro can include the following commands: - -* I() change interval of stroke in milliseconds. -* D() press key. -* U() release key. -* T() type key(press and release). -* W() wait (milliseconds). -* END end mark. - -So above you can see the stroke interval changed to 255ms between each keystroke, then a bunch of keys being typed, waits a while, then the macro ends. - -Note: Using macros to have your keyboard send passwords for you is possible, but a bad idea. - -### Advanced macro functions - -To get more control over the keys/actions your keyboard takes, the following functions are available to you in the `action_get_macro` function block: - -* `record->event.pressed` - -This is a boolean value that can be tested to see if the switch is being pressed or released. An example of this is - -```c -if (record->event.pressed) { - // on keydown -} else { - // on keyup -} -``` - -* `register_code(<kc>);` - -This sends the `<kc>` keydown event to the computer. Some examples would be `KC_ESC`, `KC_C`, `KC_4`, and even modifiers such as `KC_LSFT` and `KC_LGUI`. - -* `unregister_code(<kc>);` - -Parallel to `register_code` function, this sends the `<kc>` keyup event to the computer. If you don't use this, the key will be held down until it's sent. - -* `layer_on(<n>);` - -This will turn on the layer `<n>` - the higher layer number will always take priority. Make sure you have `KC_TRNS` for the key you're pressing on the layer you're switching to, or you'll get stick there unless you have another plan. - -* `layer_off(<n>);` - -This will turn off the layer `<n>`. - -* `clear_keyboard();` - -This will clear all mods and keys currently pressed. - -* `clear_mods();` - -This will clear all mods currently pressed. - -* `clear_keyboard_but_mods();` - -This will clear all keys besides the mods currently pressed. - -* `update_tri_layer(layer_1, layer_2, layer_3);` - -If the user attempts to activate layer 1 AND layer 2 at the same time (for example, by hitting their respective layer keys), layer 3 will be activated. Layers 1 and 2 will _also_ be activated, for the purposes of fallbacks (so a given key will fall back from 3 to 2, to 1 -- and only then to 0). - -#### Naming your macros - -If you have a bunch of macros you want to refer to from your keymap, while keeping the keymap easily readable, you can just name them like so: - -``` -#define AUD_OFF M(6) -#define AUD_ON M(7) -#define MUS_OFF M(8) -#define MUS_ON M(9) -#define VC_IN M(10) -#define VC_DE M(11) -#define PLOVER M(12) -#define EXT_PLV M(13) -``` - -As was done on the [Planck default keymap](/keyboards/planck/keymaps/default/keymap.c#L33-L40) - -#### Timer functionality - -It's possible to start timers and read values for time-specific events - here's an example: - -```c -static uint16_t key_timer; -key_timer = timer_read(); -if (timer_elapsed(key_timer) < 100) { - // do something if less than 100ms have passed -} else { - // do something if 100ms or more have passed -} -``` - -It's best to declare the `static uint16_t key_timer;` outside of the macro block (top of file, etc). - -#### Example: Single-key copy/paste (hold to copy, tap to paste) - -With QMK, it's easy to make one key do two things, as long as one of those things is being a modifier. :) So if you want a key to act as Ctrl when held and send the letter R when tapped, that's easy: `CTL_T(KC_R)`. But what do you do when you want that key to send Ctrl-V (paste) when tapped, and Ctrl-C (copy) when held? - -Here's what you do: - - -``` -static uint16_t key_timer; - -const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) -{ - switch(id) { - case 0: { - if (record->event.pressed) { - key_timer = timer_read(); // if the key is being pressed, we start the timer. - } - else { // this means the key was just released, so we can figure out how long it was pressed for (tap or "held down"). - if (timer_elapsed(key_timer) > 150) { // 150 being 150ms, the threshhold we pick for counting something as a tap. - return MACRO( D(LCTL), T(C), U(LCTL), END ); - } - else { - return MACRO( D(LCTL), T(V), U(LCTL), END ); - } - } - break; - } - } - return MACRO_NONE; -}; -``` - -And then, to assign this macro to a key on your keyboard layout, you just use `M(0)` on the key you want to press for copy/paste. - -## Dynamic macros: record and replay macros in runtime - -In addition to the static macros described above, you may enable the dynamic macros which you may record while writing. They are forgotten as soon as the keyboard is unplugged. Only two such macros may be stored at the same time, with the total length of 64 keypresses (by default). - -To enable them, first add a new element to the `planck_keycodes` enum -- `DYNAMIC_MACRO_RANGE`: - - enum planck_keycodes { - QWERTY = SAFE_RANGE, - COLEMAK, - DVORAK, - PLOVER, - LOWER, - RAISE, - BACKLIT, - EXT_PLV, - DYNAMIC_MACRO_RANGE, - }; - -Afterwards create a new layer called `_DYN`: - - #define _DYN 6 /* almost any other free number should be ok */ - -Below these two modifications include the `dynamic_macro.h` header: - - #include "dynamic_macro.h"` - -Then define the `_DYN` layer with the following keys: `DYN_REC_START1`, `DYN_MACRO_PLAY1`,`DYN_REC_START2` and `DYN_MACRO_PLAY2`. It may also contain other keys, it doesn't matter apart from the fact that you won't be able to record these keys in the dynamic macros. - - [_DYN]= { - {_______, DYN_REC_START1, DYN_MACRO_PLAY1, _______, _______, _______, _______, _______, _______, _______, _______, _______}, - {_______, DYN_REC_START2, DYN_MACRO_PLAY2, _______, _______, _______, _______, _______, _______, _______, _______, _______}, - {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, - {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} - }, - -Add the following code to the very beginning of your `process_record_user()` function: - - if (!process_record_dynamic_macro(keycode, record)) { - return false; - } - -To start recording the macro, press either `DYN_REC_START1` or `DYN_REC_START2`. To finish the recording, press the `_DYN` layer button. The handler awaits specifically for the `MO(_DYN)` keycode as the "stop signal" so please don't use any fancy ways to access this layer, use the regular `MO()` modifier. To replay the macro, press either `DYN_MACRO_PLAY1` or `DYN_MACRO_PLAY2`. - -If the LED-s start blinking during the recording with each keypress, it means there is no more space for the macro in the macro buffer. To fit the macro in, either make the other macro shorter (they share the same buffer) or increase the buffer size by setting the `DYNAMIC_MACRO_SIZE` preprocessor macro (default value: 128; please read the comments for it in the header). - -For the details about the internals of the dynamic macros, please read the comments in the `dynamic_macro.h` header. - -## Additional keycode aliases for software-implemented layouts (Colemak, Dvorak, etc) - -Everything is assuming you're in Qwerty (in software) by default, but there is built-in support for using a Colemak or Dvorak layout by including this at the top of your keymap: - - #include <keymap_colemak.h> - -If you use Dvorak, use `keymap_dvorak.h` instead of `keymap_colemak.h` for this line. After including this line, you will get access to: - - * `CM_*` for all of the Colemak-equivalent characters - * `DV_*` for all of the Dvorak-equivalent characters - -These implementations assume you're using Colemak or Dvorak on your OS, not on your keyboard - this is referred to as a software-implemented layout. If your computer is in Qwerty and your keymap is in Colemak or Dvorak, this is referred to as a firmware-implemented layout, and you won't need these features. - -To give an example, if you're using software-implemented Colemak, and want to get an `F`, you would use `CM_F` - `KC_F` under these same circumstances would result in `T`. - -## Additional language support - -In `quantum/keymap_extras/`, you'll see various language files - these work the same way as the alternative layout ones do. Most are defined by their two letter country/language code followed by an underscore and a 4-letter abbreviation of its name. `FR_UGRV` which will result in a `ù` when using a software-implemented AZERTY layout. It's currently difficult to send such characters in just the firmware (but it's being worked on - see Unicode support). - -## Unicode support - -There are three Unicode keymap definition method available in QMK: - -### UNICODE_ENABLE - -Supports Unicode input up to 0xFFFF. The keycode function is `UC(n)` in -keymap file, where *n* is a 4 digit hexadecimal. - -### UNICODEMAP_ENABLE - -Supports Unicode up to 0xFFFFFFFF. You need to maintain a separate mapping -table `const uint32_t PROGMEM unicode_map[] = {...}` in your keymap file. -The keycode function is `X(n)` where *n* is the array index of the mapping -table. - -### UCIS_ENABLE - -TBD - -Unicode input in QMK works by inputing a sequence of characters to the OS, -sort of like macro. Unfortunately, each OS has different ideas on how Unicode is inputted. - -This is the current list of Unicode input method in QMK: - -* UC_OSX: MacOS Unicode Hex Input support. Works only up to 0xFFFF. Disabled by default. To enable: go to System Preferences -> Keyboard -> Input Sources, and enable Unicode Hex. -* UC_LNX: Unicode input method under Linux. Works up to 0xFFFFF. Should work almost anywhere on ibus enabled distros. Without ibus, this works under GTK apps, but rarely anywhere else. -* UC_WIN: (not recommended) Windows built-in Unicode input. To enable: create registry key under `HKEY_CURRENT_USER\Control Panel\Input Method\EnableHexNumpad` of type `REG_SZ` called `EnableHexNumpad`, set its value to 1, and reboot. This method is not recommended because of reliability and compatibility issue, use WinCompose method below instead. -* UC_WINC: Windows Unicode input using WinCompose. Requires [WinCompose](https://github.com/samhocevar/wincompose). Works reliably under many (all?) variations of Windows. - -## Backlight Breathing - -In order to enable backlight breathing, the following line must be added to your config.h file. - - #define BACKLIGHT_BREATHING - -The following function calls are used to control the breathing effect. - -* ```breathing_enable()``` - Enable the free-running breathing effect. -* ```breathing_disable()``` - Disable the free-running breathing effect immediately. -* ```breathing_self_disable()``` - Disable the free-running breathing effect after the current effect ends. -* ```breathing_toggle()``` - Toggle the free-running breathing effect. -* ```breathing_defaults()``` - Reset the speed and brightness settings of the breathing effect. - -The following function calls are used to control the maximum brightness of the breathing effect. - -* ```breathing_intensity_set(value)``` - Set the brightness of the breathing effect when it is at its max value. -* ```breathing_intensity_default()``` - Reset the brightness of the breathing effect to the default value based on the current backlight intensity. - -The following function calls are used to control the cycling speed of the breathing effect. - -* ```breathing_speed_set(value)``` - Set the speed of the breathing effect - how fast it cycles. -* ```breathing_speed_inc(value)``` - Increase the speed of the breathing effect by a fixed value. -* ```breathing_speed_dec(value)``` - Decrease the speed of the breathing effect by a fixed value. -* ```breathing_speed_default()``` - Reset the speed of the breathing effect to the default value. - -The following example shows how to enable the backlight breathing effect when the FUNCTION layer macro button is pressed: - - case MACRO_FUNCTION: - if (record->event.pressed) - { - breathing_speed_set(3); - breathing_enable(); - layer_on(LAYER_FUNCTION); - } - else - { - breathing_speed_set(1); - breathing_self_disable(); - layer_off(LAYER_FUNCTION); - } - break; - -The following example shows how to pulse the backlight on-off-on when the RAISED layer macro button is pressed: - - case MACRO_RAISED: - if (record->event.pressed) - { - layer_on(LAYER_RAISED); - breathing_speed_set(2); - breathing_pulse(); - update_tri_layer(LAYER_LOWER, LAYER_RAISED, LAYER_ADJUST); - } - else - { - layer_off(LAYER_RAISED); - update_tri_layer(LAYER_LOWER, LAYER_RAISED, LAYER_ADJUST); - } - break; - -## Other firmware shortcut keycodes - -* `RESET` - puts the MCU in DFU mode for flashing new firmware (with `make dfu`) -* `DEBUG` - the firmware into debug mode - you'll need hid_listen to see things -* `BL_ON` - turns the backlight on -* `BL_OFF` - turns the backlight off -* `BL_<n>` - sets the backlight to level *n* -* `BL_INC` - increments the backlight level by one -* `BL_DEC` - decrements the backlight level by one -* `BL_TOGG` - toggles the backlight -* `BL_STEP` - steps through the backlight levels - -Enable the backlight from the Makefile. - -# Custom Quantum functions - -All of these functions are available in the `*_kb()` or `*_user()` variety. `kb` ones should only be used in the `<keyboard>/<keyboard>.c` file, and `user` ones should only be used in the `keymap.c`. The keyboard ones call the user ones - it's necessary to keep these calls to allow the keymap functions to work correctly. - -## `void matrix_init_*(void)` - -This function gets called when the matrix is initiated, and can contain start-up code for your keyboard/keymap. - -## `void matrix_scan_*(void)` - -This function gets called at every matrix scan, which is basically as often as the MCU can handle. Be careful what you put here, as it will get run a lot. - -## `bool process_record_*(uint16_t keycode, keyrecord_t *record)` - -This function gets called on every keypress/release, and is where you can define custom functionality. The return value is whether or not QMK should continue processing the keycode - returning `false` stops the execution. - -The `keycode` variable is whatever is defined in your keymap, eg `MO(1)`, `KC_L`, etc. and can be switch-cased to execute code whenever a particular code is pressed. - -The `record` variable contains infomation about the actual press: - -``` -keyrecord_t record { - keyevent_t event { - keypos_t key { - uint8_t col - uint8_t row - } - bool pressed - uint16_t time - } -} -``` - -The conditional `if (record->event.pressed)` can tell if the key is being pressed or released, and you can execute code based on that. - -## `void led_set_*(uint8_t usb_led)` - -This gets called whenever there is a state change on your host LEDs (eg caps lock, scroll lock, etc). The LEDs are defined as: - -``` -#define USB_LED_NUM_LOCK 0 -#define USB_LED_CAPS_LOCK 1 -#define USB_LED_SCROLL_LOCK 2 -#define USB_LED_COMPOSE 3 -#define USB_LED_KANA 4 -``` - -and can be tested against the `usb_led` with a conditional like `if (usb_led & (1<<USB_LED_CAPS_LOCK))` - if this is true, you can turn your LED one, otherwise turn it off. - -# Modding your keyboard - -## Audio output from a speaker - -Your keyboard can make sounds! If you've got a Planck, Preonic, or basically any keyboard that allows access to the C6 port, you can hook up a simple speaker and make it beep. You can use those beeps to indicate layer transitions, modifiers, special keys, or just to play some funky 8bit tunes. - -The audio code lives in [quantum/audio/audio.h](/quantum/audio/audio.h) and in the other files in the audio directory. It's enabled by default on the Planck [stock keymap](/keyboards/planck/keymaps/default/keymap.c). Here are the important bits: - -``` -#include "audio.h" -``` - -Then, lower down the file: - -``` -float tone_startup[][2] = { - ED_NOTE(_E7 ), - E__NOTE(_CS7), - E__NOTE(_E6 ), - E__NOTE(_A6 ), - M__NOTE(_CS7, 20) -}; -``` - -This is how you write a song. Each of these lines is a note, so we have a little ditty composed of five notes here. - -Then, we have this chunk: - -``` -float tone_qwerty[][2] = SONG(QWERTY_SOUND); -float tone_dvorak[][2] = SONG(DVORAK_SOUND); -float tone_colemak[][2] = SONG(COLEMAK_SOUND); -float tone_plover[][2] = SONG(PLOVER_SOUND); -float tone_plover_gb[][2] = SONG(PLOVER_GOODBYE_SOUND); - -float music_scale[][2] = SONG(MUSIC_SCALE_SOUND); -float goodbye[][2] = SONG(GOODBYE_SOUND); -``` - -Wherein we bind predefined songs (from [quantum/audio/song_list.h](/quantum/audio/song_list.h)) into named variables. This is one optimization that helps save on memory: These songs only take up memory when you reference them in your keymap, because they're essentially all preprocessor directives. - -So now you have something called `tone_plover` for example. How do you make it play the Plover tune, then? If you look further down the keymap, you'll see this: - -``` -PLAY_NOTE_ARRAY(tone_plover, false, 0); // Signature is: Song name, repeat, rest style -``` - -This is inside one of the macros. So when that macro executes, your keyboard plays that particular chime. - -"Rest style" in the method signature above (the last parameter) specifies if there's a rest (a moment of silence) between the notes. - - -## Recording And Playing back Music -* ```Music On``` - Turn music mode on. The default mapping is ```Lower+Upper+C``` -* ```LCTL``` - start a recording -* play some tones -* ```LALT``` - stop recording, stop playing -* ```LGUI``` - play recording -* ```LALT``` - stop playing -* ```Music Off``` - Turn music mode off. The default mapping is ```Lower+Upper+V``` - - -## MIDI functionalty - -This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile. - -## Bluetooth functionality - -This requires [some hardware changes](https://www.reddit.com/r/MechanicalKeyboards/comments/3psx0q/the_planck_keyboard_with_bluetooth_guide_and/?ref=search_posts), but can be enabled via the Makefile. The firmware will still output characters via USB, so be aware of this when charging via a computer. It would make sense to have a switch on the Bluefruit to turn it off at will. - -## International Characters on Windows - -[AutoHotkey](https://autohotkey.com) allows Windows users to create custom hotkeys among others. - -The method does not require Unicode support in the keyboard itself but depends instead of AutoHotkey running in the background. - -First you need to select a modifier combination that is not in use by any of your programs. -CtrlAltWin is not used very widely and should therefore be perfect for this. -There is a macro defined for a mod-tab combo `LCAG_T`. -Add this mod-tab combo to a key on your keyboard, e.g.: `LCAG_T(KC_TAB)`. -This makes the key behave like a tab key if pressed and released immediately but changes it to the modifier if used with another key. - -In the default script of AutoHotkey you can define custom hotkeys. - - <^<!<#a::Send, ä - <^<!<#<+a::Send, Ä - -The hotkeys above are for the combination CtrlAltGui and CtrlAltGuiShift plus the letter a. -AutoHotkey inserts the Text right of `Send, ` when this combination is pressed. - -## RGB Under Glow Mod - -![Planck with RGB Underglow](https://raw.githubusercontent.com/jackhumbert/qmk_firmware/master/keyboards/planck/keymaps/yang/planck-with-rgb-underglow.jpg) - -Here is a quick demo on Youtube (with NPKC KC60) (https://www.youtube.com/watch?v=VKrpPAHlisY). - -For this mod, you need an unused pin wiring to DI of WS2812 strip. After wiring the VCC, GND, and DI, you can enable the underglow in your Makefile. - - RGBLIGHT_ENABLE = yes - -In order to use the underglow animation functions, you need to have `#define RGBLIGHT_ANIMATIONS` in your `config.h`. - -Please add the following options into your config.h, and set them up according your hardware configuration. These settings are for the `F4` pin by default: - - #define RGB_DI_PIN F4 // The pin your RGB strip is wired to - #define RGBLIGHT_ANIMATIONS // Require for fancier stuff (not compatible with audio) - #define RGBLED_NUM 14 // Number of LEDs - #define RGBLIGHT_HUE_STEP 10 - #define RGBLIGHT_SAT_STEP 17 - #define RGBLIGHT_VAL_STEP 17 - -You'll need to edit `RGB_DI_PIN` to the pin you have your `DI` on your RGB strip wired to. - -The firmware supports 5 different light effects, and the color (hue, saturation, brightness) can be customized in most effects. To control the underglow, you need to modify your keymap file to assign those functions to some keys/key combinations. For details, please check this keymap. `keyboards/planck/keymaps/yang/keymap.c` - -### WS2812 Wiring - -![WS2812 Wiring](https://raw.githubusercontent.com/jackhumbert/qmk_firmware/master/keyboards/planck/keymaps/yang/WS2812-wiring.jpg) - -Please note the USB port can only supply a limited amount of power to the keyboard (500mA by standard, however, modern computer and most usb hubs can provide 700+mA.). According to the data of NeoPixel from Adafruit, 30 WS2812 LEDs require a 5V 1A power supply, LEDs used in this mod should not more than 20. - -## PS/2 Mouse Support - -Its possible to hook up a PS/2 mouse (for example touchpads or trackpoints) to your keyboard as a composite device. - -There are three available modes for hooking up PS/2 devices: USART (best), interrupts (better) or busywait (not recommended). - -### Busywait version - -Note: This is not recommended, you may encounter jerky movement or unsent inputs. Please use interrupt or USART version if possible. - -In rules.mk: - -``` -PS2_MOUSE_ENABLE = yes -PS2_USE_BUSYWAIT = yes -``` - -In your keyboard config.h: - -``` -#ifdef PS2_USE_BUSYWAIT -# define PS2_CLOCK_PORT PORTD -# define PS2_CLOCK_PIN PIND -# define PS2_CLOCK_DDR DDRD -# define PS2_CLOCK_BIT 1 -# define PS2_DATA_PORT PORTD -# define PS2_DATA_PIN PIND -# define PS2_DATA_DDR DDRD -# define PS2_DATA_BIT 2 -#endif -``` - -### Interrupt version - -The following example uses D2 for clock and D5 for data. You can use any INT or PCINT pin for clock, and any pin for data. - -In rules.mk: - -``` -PS2_MOUSE_ENABLE = yes -PS2_USE_INT = yes -``` - -In your keyboard config.h: - -``` -#ifdef PS2_USE_INT -#define PS2_CLOCK_PORT PORTD -#define PS2_CLOCK_PIN PIND -#define PS2_CLOCK_DDR DDRD -#define PS2_CLOCK_BIT 2 -#define PS2_DATA_PORT PORTD -#define PS2_DATA_PIN PIND -#define PS2_DATA_DDR DDRD -#define PS2_DATA_BIT 5 - -#define PS2_INT_INIT() do { \ - EICRA |= ((1<<ISC21) | \ - (0<<ISC20)); \ -} while (0) -#define PS2_INT_ON() do { \ - EIMSK |= (1<<INT2); \ -} while (0) -#define PS2_INT_OFF() do { \ - EIMSK &= ~(1<<INT2); \ -} while (0) -#define PS2_INT_VECT INT2_vect -#endif -``` - -### USART version - -To use USART on the ATMega32u4, you have to use PD5 for clock and PD2 for data. If one of those are unavailable, you need to use interrupt version. - -In rules.mk: - -``` -PS2_MOUSE_ENABLE = yes -PS2_USE_USART = yes -``` - -In your keyboard config.h: - -``` -#ifdef PS2_USE_USART -#define PS2_CLOCK_PORT PORTD -#define PS2_CLOCK_PIN PIND -#define PS2_CLOCK_DDR DDRD -#define PS2_CLOCK_BIT 5 -#define PS2_DATA_PORT PORTD -#define PS2_DATA_PIN PIND -#define PS2_DATA_DDR DDRD -#define PS2_DATA_BIT 2 - -/* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */ -/* set DDR of CLOCK as input to be slave */ -#define PS2_USART_INIT() do { \ - PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \ - PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \ - UCSR1C = ((1 << UMSEL10) | \ - (3 << UPM10) | \ - (0 << USBS1) | \ - (3 << UCSZ10) | \ - (0 << UCPOL1)); \ - UCSR1A = 0; \ - UBRR1H = 0; \ - UBRR1L = 0; \ -} while (0) -#define PS2_USART_RX_INT_ON() do { \ - UCSR1B = ((1 << RXCIE1) | \ - (1 << RXEN1)); \ -} while (0) -#define PS2_USART_RX_POLL_ON() do { \ - UCSR1B = (1 << RXEN1); \ -} while (0) -#define PS2_USART_OFF() do { \ - UCSR1C = 0; \ - UCSR1B &= ~((1 << RXEN1) | \ - (1 << TXEN1)); \ -} while (0) -#define PS2_USART_RX_READY (UCSR1A & (1<<RXC1)) -#define PS2_USART_RX_DATA UDR1 -#define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1))) -#define PS2_USART_RX_VECT USART1_RX_vect -#endif -#endif -#endif -``` - -### Additional Settings - -#### PS/2 mouse features - -These enable settings supported by the PS/2 mouse protocol: http://www.computer-engineering.org/ps2mouse/ - -``` -/* Use remote mode instead of the default stream mode (see link) */ -#define PS2_MOUSE_USE_REMOTE_MODE - -/* Enable the scrollwheel or scroll gesture on your mouse or touchpad */ -#define PS2_MOUSE_ENABLE_SCROLLING - -/* Some mice will need a scroll mask to be configured. The default is 0xFF. */ -#define PS2_MOUSE_SCROLL_MASK 0x0F - -/* Applies a transformation to the movement before sending to the host (see link) */ -#define PS2_MOUSE_USE_2_1_SCALING - -/* The time to wait after initializing the ps2 host */ -#define PS2_MOUSE_INIT_DELAY 1000 /* Default */ -``` - -You can also call the following functions from ps2_mouse.h - -``` -void ps2_mouse_disable_data_reporting(void); - -void ps2_mouse_enable_data_reporting(void); - -void ps2_mouse_set_remote_mode(void); - -void ps2_mouse_set_stream_mode(void); - -void ps2_mouse_set_scaling_2_1(void); - -void ps2_mouse_set_scaling_1_1(void); - -void ps2_mouse_set_resolution(ps2_mouse_resolution_t resolution); - -void ps2_mouse_set_sample_rate(ps2_mouse_sample_rate_t sample_rate); -``` - -#### Fine control - -Use the following defines to change the sensitivity and speed of the mouse. -Note: you can also use `ps2_mouse_set_resolution` for the same effect (not supported on most touchpads). - -``` -#define PS2_MOUSE_X_MULTIPLIER 3 -#define PS2_MOUSE_Y_MULTIPLIER 3 -#define PS2_MOUSE_V_MULTIPLIER 1 -``` - -#### Scroll button - -If you're using a trackpoint, you will likely want to be able to use it for scrolling. -Its possible to enable a "scroll button/s" that when pressed will cause the mouse to scroll instead of moving. -To enable the feature, you must set a scroll button mask as follows: - -``` -#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BUTTON_MIDDLE) /* Default */ -``` - -To disable the scroll button feature: - -``` -#define PS2_MOUSE_SCROLL_BTN_MASK 0 -``` - -The available buttons are: - -``` -#define PS2_MOUSE_BTN_LEFT 0 -#define PS2_MOUSE_BTN_RIGHT 1 -#define PS2_MOUSE_BTN_MIDDLE 2 -``` - -You can also combine buttons in the mask by `|`ing them together. - -Once you've configured your scroll button mask, you must configure the scroll button send interval. -This is the interval before which if the scroll buttons were released they would be sent to the host. -After this interval, they will cause the mouse to scroll and will not be sent. - -``` -#define PS2_MOUSE_SCROLL_BTN_SEND 300 /* Default */ -``` - -To disable sending the scroll buttons: -``` -#define PS2_MOUSE_SCROLL_BTN_SEND 0 -``` - -Fine control over the scrolling is supported with the following defines: - -``` -#define PS2_MOUSE_SCROLL_DIVISOR_H 2 -#define PS2_MOUSE_SCROLL_DIVISOR_V 2 -``` - -#### Debug settings - -To debug the mouse, add `debug_mouse = true` or enable via bootmagic. - -``` -/* To debug the mouse reports */ -#define PS2_MOUSE_DEBUG_HID -#define PS2_MOUSE_DEBUG_RAW -``` - -## Safety Considerations - -You probably don't want to "brick" your keyboard, making it impossible -to rewrite firmware onto it. Here are some of the parameters to show -what things are (and likely aren't) too risky. - -- If your keyboard map does not include RESET, then, to get into DFU - mode, you will need to press the reset button on the PCB, which - requires unscrewing the bottom. -- Messing with tmk_core / common files might make the keyboard - inoperable -- Too large a .hex file is trouble; `make dfu` will erase the block, - test the size (oops, wrong order!), which errors out, failing to - flash the keyboard, leaving it in DFU mode. - - To this end, note that the maximum .hex file size on Planck is - 7000h (28672 decimal) -```Linking: .build/planck_rev4_cbbrowne.elf [OK] -Creating load file for Flash: .build/planck_rev4_cbbrowne.hex [OK] - -Size after: - text data bss dec hex filename - 0 22396 0 22396 577c planck_rev4_cbbrowne.hex -``` - - The above file is of size 22396/577ch, which is less than - 28672/7000h - - As long as you have a suitable alternative .hex file around, you - can retry, loading that one - - Some of the options you might specify in your keyboard's Makefile - consume extra memory; watch out for BOOTMAGIC_ENABLE, - MOUSEKEY_ENABLE, EXTRAKEY_ENABLE, CONSOLE_ENABLE, API_SYSEX_ENABLE -- DFU tools do /not/ allow you to write into the bootloader (unless - you throw in extra fruitsalad of options), so there is little risk - there. -- EEPROM has around a 100000 write cycle. You shouldn't rewrite the - firmware repeatedly and continually; that'll burn the EEPROM - eventually. - -# Porting your keyboard to QMK - -If your keyboard is running an Atmega chip (atmega32u4 and others), it's pretty easy to get things setup for compiling your own firmware to flash onto your board. There is a `/util/new_project.sh <keyboard>` script to help get you started - you can simply pass your keyboard's name into the script, and all of the necessary files will be created. The components of each are described below. - -## `/keyboards/<keyboard>/config.h` - -The `USB Device descriptor parameter` block contains parameters are used to uniquely identify your keyboard, but they don't really matter to the machine. - -Your `MATRIX_ROWS` and `MATRIX_COLS` are the numbers of rows and cols in your keyboard matrix - this may be different than the number of actual rows and columns on your keyboard. There are some tricks you can pull to increase the number of keys in a given matrix, but most keyboards are pretty straight-forward. - -The `MATRIX_ROW_PINS` and `MATRIX_COL_PINS` are the pins your MCU uses on each row/column. Your schematic (if you have one) will have this information on it, and the values will vary depending on your setup. This is one of the most important things to double-check in getting your keyboard setup correctly. - -For the `DIODE_DIRECTION`, most hand-wiring guides will instruct you to wire the diodes in the `COL2ROW` position, but it's possible that they are in the other - people coming from EasyAVR often use `ROW2COL`. Nothing will function if this is incorrect. - -`BACKLIGHT_PIN` is the pin that your PWM-controlled backlight (if one exists) is hooked-up to. Currently only B5, B6, and B7 are supported. - -`BACKLIGHT_BREATHING` is a fancier backlight feature that adds breathing/pulsing/fading effects to the backlight. It uses the same timer as the normal backlight. These breathing effects must be called by code in your keymap. - -`BACKLIGHT_LEVELS` is how many levels exist for your backlight - max is 15, and they are computed automatically from this number. - -## `/keyboards/<keyboard>/Makefile` - -The values at the top likely won't need to be changed, since most boards use the `atmega32u4` chip. The `BOOTLOADER_SIZE` will need to be adjusted based on your MCU type. It's defaulted to the Teensy, since that's the most common controller. Below is quoted from the `Makefile`. - -``` -# Boot Section Size in *bytes* -# Teensy halfKay 512 -# Teensy++ halfKay 1024 -# Atmel DFU loader 4096 -# LUFA bootloader 4096 -# USBaspLoader 2048 -OPT_DEFS += -DBOOTLOADER_SIZE=512 -``` - -At the bottom of the file, you'll find lots of features to turn on and off - all of these options should be set with `?=` to allow for the keymap overrides. `?=` only assigns if the variable was previously undefined. For the full documenation of these features, see the [Makefile options](#makefile-options). - -## `/keyboards/<keyboard>/readme.md` - -This is where you'll describe your keyboard - please write as much as you can about it! Talking about default functionality/features is useful here. Feel free to link to external pages/sites if necessary. Images can be included here as well. This file will be rendered into a webpage at qmk.fm/keyboards/<keyboard>/. - -## `/keyboards/<keyboard>/<keyboard>.c` - -This is where all of the custom logic for your keyboard goes - you may not need to put anything in this file, since a lot of things are configured automatically. All of the `*_kb()` functions are defined here. If you modify them, remember to keep the calls to `*_user()`, or things in the keymaps might not work. You can read more about the functions [here](#custom-quantum-functions-for-keyboards-and-keymaps) - -## `/keyboards/<keyboard>/<keyboard>.h` - -Here is where you can (optionally) define your `KEYMAP` function to remap your matrix into a more readable format. With ortholinear boards, this isn't always necessary, but it can help to accomodate the dead spots on your matrix, where there are keys that take up more than one space (2u, staggering, 6.25u, etc). The example shows the difference between the physical keys, and the matrix design: - -``` -#define KEYMAP( \ - k00, k01, k02, \ - k10, k11 \ -) \ -{ \ - { k00, k01, k02 }, \ - { k10, KC_NO, k11 }, \ -} -``` - -Each of the `kxx` variables needs to be unique, and usually follows the format `k<row><col>`. You can place `KC_NO` where your dead keys are in your matrix. - -# Unit Testing - -If you are new to unit testing, then you can find many good resources on internet. However most of it is scattered around in small pieces here and there, and there's also many different opinions, so I won't give any recommendations. - -Instead I recommend these two books, explaining two different styles of Unit Testing in detail. - -* "Test Driven Development: By Example: Kent Beck" -* "Growing Object-Oriented Software, Guided By Tests: Steve Freeman, Nat Pryce" - -If you prefer videos there are Uncle Bob's [Clean Coders Videos](https://cleancoders.com/), which unfortunately cost quite a bit, especially if you want to watch many of them. But James Shore has a free [Let's Play](http://www.jamesshore.com/Blog/Lets-Play) video series. - -## Google Test and Google Mock -It's possible to Unit Test your code using [Google Test](https://github.com/google/googletest). The Google Test framework also includes another component for writing testing mocks and stubs, called "Google Mock". For information how to write the actual tests, please refer to the documentation on that site. - -## Use of C++ - -Note that Google Test and therefore any test has to be written in C++, even if the rest of the QMK codebases is written in C. This should hopefully not be a problem even if you don't know any C++, since there's quite clear documentation and examples of the required C++ features, and you can write the rest of the test code almost as you would write normal C. Note that some compiler errors which you might get can look quite scary, but just read carefully what it says, and you should be ok. - -One thing to remember, is that you have to append `extern "C"` around all of your C file includes. - -## Adding tests for new or existing features - -If you want to unit test some feature, then take a look at the existing serial_link tests, in the `quantum/serial_link/tests folder`, and follow the steps below to create a similar structure. - -1. If it doesn't already exist, add a test subfolder to the folder containing the feature. -2. Create a `testlist.mk` and a `rules.mk` file in that folder. -3. Include those files from the root folder `testlist.mk`and `build_test.mk` respectively. -4. Add a new name for your testgroup to the `testlist.mk` file. Each group defined there will be a separate executable. And that's how you can support mocking out different parts. Note that it's worth adding some common prefix, just like it's done for the serial_link tests. The reason for that is that the make command allows substring filtering, so this way you can easily run a subset of the tests. -5. Define the source files and required options in the `rules.mk` file. - * `_SRC` for source files - * `_DEFS` for additional defines - * `_INC` for additional include folders -6. Write the tests in a new cpp file inside the test folder you created. That file has to be one of the files included from the `rules.mk` file. - -Note how there's several different tests, each mocking out a separate part. Also note that each of them only compiles the very minimum that's needed for the tests. It's recommend that you try to do the same. For a relevant video check out [Matt Hargett "Advanced Unit Testing in C & C++](https://www.youtube.com/watch?v=Wmy6g-aVgZI) - -## Running the tests - -To run all the tests in the codebase, type `make test`. You can also run test matching a substring by typing `make test-matchingsubstring` Note that the tests are always compiled with the native compiler of your platform, so they are also run like any other program on your computer. - -## Debugging the tests - -If there are problems with the tests, you can find the executable in the `./build/test` folder. You should be able to run those with GDB or a similar debugger. - -## Full Integration tests - -It's not yet possible to do a full integration test, where you would compile the whole firmware and define a keymap that you are going to test. However there are plans for doing that, because writing tests that way would probably be easier, at least for people that are not used to unit testing. - -In that model you would emulate the input, and expect a certain output from the emulated keyboard. - -# Tracing variables - -Sometimes you might wonder why a variable gets changed and where, and this can be quite tricky to track down without having a debugger. It's of course possible to manually add print statements to track it, but you can also enable the variable trace feature. This works for both for variables that are changed by the code, and when the variable is changed by some memory corruption. - -To take the feature into use add `VARIABLE_TRACE=x` to the end of you make command. `x` represents the number of variables you want to trace, which is usually 1. - -Then at a suitable place in the code, call `ADD_TRACED_VARIABLE`, to begin the tracing. For example to trace all the layer changes, you can do this -```c -void matrix_init_user(void) { - ADD_TRACED_VARIABLE("layer", &layer_state, sizeof(layer_state)); -} -``` - -This will add a traced variable named "layer" (the name is just for your information), which tracks the memory location of `layer_state`. It tracks 4 bytes (the size of `layer_state`), so any modification to the variable will be reported. By default you can not specify a size bigger than 4, but you can change it by adding `MAX_VARIABLE_TRACE_SIZE=x` to the end of the make command line. - -In order to actually detect changes to the variables you should call `VERIFY_TRACED_VARIABLES` around the code that you think that modifies the variable. If a variable is modified it will tell you between which two `VERIFY_TRACED_VARIABLES` calls the modification happened. You can then add more calls to track it down further. I don't recommend spamming the codebase with calls. It's better to start with a few, and then keep adding them in a binary search fashion. You can also delete the ones you don't need, as each call need to store the file name and line number in the ROM, so you can run out of memory if you add too many calls. - -Also remember to delete all the tracing code ones you have found the bug, as you wouldn't want to create a pull request with tracing code. diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk index b48173341a..5df539def5 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk @@ -26,7 +26,7 @@ CFLAGS += -fno-inline-small-functions CFLAGS += -fno-strict-aliasing CPPFLAGS += $(COMPILEFLAGS) -CPPFLAGS += -fno-exceptions +CPPFLAGS += -fno-exceptions -std=c++11 LDFLAGS +=-Wl,--gc-sections diff --git a/tmk_core/common.mk b/tmk_core/common.mk index c32a12bb6f..3c1373c081 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk @@ -50,6 +50,10 @@ ifeq ($(strip $(EXTRAKEY_ENABLE)), yes) TMK_COMMON_DEFS += -DEXTRAKEY_ENABLE endif +ifeq ($(strip $(RAW_ENABLE)), yes) + TMK_COMMON_DEFS += -DRAW_ENABLE +endif + ifeq ($(strip $(CONSOLE_ENABLE)), yes) TMK_COMMON_DEFS += -DCONSOLE_ENABLE else diff --git a/tmk_core/common/raw_hid.h b/tmk_core/common/raw_hid.h new file mode 100644 index 0000000000..86da02fd15 --- /dev/null +++ b/tmk_core/common/raw_hid.h @@ -0,0 +1,8 @@ +#ifndef _RAW_HID_H_ +#define _RAW_HID_H_ + +void raw_hid_receive( uint8_t *data, uint8_t length ); + +void raw_hid_send( uint8_t *data, uint8_t length ); + +#endif diff --git a/tmk_core/protocol/lufa/adafruit_ble.cpp b/tmk_core/protocol/lufa/adafruit_ble.cpp index 37194e77a9..fd6edd42cf 100644 --- a/tmk_core/protocol/lufa/adafruit_ble.cpp +++ b/tmk_core/protocol/lufa/adafruit_ble.cpp @@ -86,7 +86,7 @@ struct queue_item { uint16_t consumer; struct __attribute__((packed)) { - uint8_t x, y, scroll, pan; + int8_t x, y, scroll, pan; } mousemove; }; }; diff --git a/tmk_core/protocol/lufa/descriptor.c b/tmk_core/protocol/lufa/descriptor.c index 6f2407f580..14d99b50bd 100644 --- a/tmk_core/protocol/lufa/descriptor.c +++ b/tmk_core/protocol/lufa/descriptor.c @@ -40,6 +40,9 @@ #include "report.h" #include "descriptor.h" +#ifndef USB_MAX_POWER_CONSUMPTION +#define USB_MAX_POWER_CONSUMPTION 500 +#endif /******************************************************************************* * HID Report Descriptors @@ -164,6 +167,28 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM ExtrakeyReport[] = }; #endif +#ifdef RAW_ENABLE +const USB_Descriptor_HIDReport_Datatype_t PROGMEM RawReport[] = +{ + HID_RI_USAGE_PAGE(16, 0xFF60), /* Vendor Page 0xFF60 */ + HID_RI_USAGE(8, 0x61), /* Vendor Usage 0x61 */ + HID_RI_COLLECTION(8, 0x01), /* Application */ + HID_RI_USAGE(8, 0x62), /* Vendor Usage 0x62 */ + HID_RI_LOGICAL_MINIMUM(8, 0x00), + HID_RI_LOGICAL_MAXIMUM(16, 0x00FF), + HID_RI_REPORT_COUNT(8, RAW_EPSIZE), + HID_RI_REPORT_SIZE(8, 0x08), + HID_RI_INPUT(8, HID_IOF_DATA | HID_IOF_VARIABLE | HID_IOF_ABSOLUTE), + HID_RI_USAGE(8, 0x63), /* Vendor Usage 0x63 */ + HID_RI_LOGICAL_MINIMUM(8, 0x00), + HID_RI_LOGICAL_MAXIMUM(16, 0x00FF), + HID_RI_REPORT_COUNT(8, RAW_EPSIZE), + HID_RI_REPORT_SIZE(8, 0x08), + HID_RI_OUTPUT(8, HID_IOF_DATA | HID_IOF_VARIABLE | HID_IOF_ABSOLUTE | HID_IOF_NON_VOLATILE), + HID_RI_END_COLLECTION(0), +}; +#endif + #ifdef CONSOLE_ENABLE const USB_Descriptor_HIDReport_Datatype_t PROGMEM ConsoleReport[] = { @@ -272,7 +297,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .ConfigAttributes = (USB_CONFIG_ATTR_RESERVED | USB_CONFIG_ATTR_REMOTEWAKEUP), - .MaxPowerConsumption = USB_CONFIG_POWER_MA(500) + .MaxPowerConsumption = USB_CONFIG_POWER_MA(USB_MAX_POWER_CONSUMPTION) }, /* @@ -399,6 +424,58 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = }, #endif + /* + * Raw + */ + #ifdef RAW_ENABLE + .Raw_Interface = + { + .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, + + .InterfaceNumber = RAW_INTERFACE, + .AlternateSetting = 0x00, + + .TotalEndpoints = 2, + + .Class = HID_CSCP_HIDClass, + .SubClass = HID_CSCP_NonBootSubclass, + .Protocol = HID_CSCP_NonBootProtocol, + + .InterfaceStrIndex = NO_DESCRIPTOR + }, + + .Raw_HID = + { + .Header = {.Size = sizeof(USB_HID_Descriptor_HID_t), .Type = HID_DTYPE_HID}, + + .HIDSpec = VERSION_BCD(1,1,1), + .CountryCode = 0x00, + .TotalReportDescriptors = 1, + .HIDReportType = HID_DTYPE_Report, + .HIDReportLength = sizeof(RawReport) + }, + + .Raw_INEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = (ENDPOINT_DIR_IN | RAW_IN_EPNUM), + .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = RAW_EPSIZE, + .PollingIntervalMS = 0x01 + }, + + .Raw_OUTEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = (ENDPOINT_DIR_OUT | RAW_OUT_EPNUM), + .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = RAW_EPSIZE, + .PollingIntervalMS = 0x01 + }, + #endif + /* * Console */ @@ -754,7 +831,6 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .PollingIntervalMS = 0x05 }, #endif - }; @@ -846,6 +922,12 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, Size = sizeof(USB_HID_Descriptor_HID_t); break; #endif +#ifdef RAW_ENABLE + case RAW_INTERFACE: + Address = &ConfigurationDescriptor.Raw_HID; + Size = sizeof(USB_HID_Descriptor_HID_t); + break; +#endif #ifdef CONSOLE_ENABLE case CONSOLE_INTERFACE: Address = &ConfigurationDescriptor.Console_HID; @@ -878,6 +960,12 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, Size = sizeof(ExtrakeyReport); break; #endif +#ifdef RAW_ENABLE + case RAW_INTERFACE: + Address = &RawReport; + Size = sizeof(RawReport); + break; +#endif #ifdef CONSOLE_ENABLE case CONSOLE_INTERFACE: Address = &ConsoleReport; diff --git a/tmk_core/protocol/lufa/descriptor.h b/tmk_core/protocol/lufa/descriptor.h index c6c94e3618..24ce420e6a 100644 --- a/tmk_core/protocol/lufa/descriptor.h +++ b/tmk_core/protocol/lufa/descriptor.h @@ -71,6 +71,14 @@ typedef struct USB_Descriptor_Endpoint_t Extrakey_INEndpoint; #endif +#ifdef RAW_ENABLE + // Raw HID Interface + USB_Descriptor_Interface_t Raw_Interface; + USB_HID_Descriptor_HID_t Raw_HID; + USB_Descriptor_Endpoint_t Raw_INEndpoint; + USB_Descriptor_Endpoint_t Raw_OUTEndpoint; +#endif + #ifdef CONSOLE_ENABLE // Console HID Interface USB_Descriptor_Interface_t Console_Interface; @@ -137,10 +145,16 @@ typedef struct # define EXTRAKEY_INTERFACE MOUSE_INTERFACE #endif +#ifdef RAW_ENABLE +# define RAW_INTERFACE (EXTRAKEY_INTERFACE + 1) +#else +# define RAW_INTERFACE EXTRAKEY_INTERFACE +#endif + #ifdef CONSOLE_ENABLE -# define CONSOLE_INTERFACE (EXTRAKEY_INTERFACE + 1) +# define CONSOLE_INTERFACE (RAW_INTERFACE + 1) #else -# define CONSOLE_INTERFACE EXTRAKEY_INTERFACE +# define CONSOLE_INTERFACE RAW_INTERFACE #endif #ifdef NKRO_ENABLE @@ -182,12 +196,19 @@ typedef struct # define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM #endif +#ifdef RAW_ENABLE +# define RAW_IN_EPNUM (EXTRAKEY_IN_EPNUM + 1) +# define RAW_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 2) +#else +# define RAW_OUT_EPNUM EXTRAKEY_IN_EPNUM +#endif + #ifdef CONSOLE_ENABLE -# define CONSOLE_IN_EPNUM (EXTRAKEY_IN_EPNUM + 1) -# define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 1) -//# define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 2) +# define CONSOLE_IN_EPNUM (RAW_OUT_EPNUM + 1) +//# define CONSOLE_OUT_EPNUM (RAW_OUT_EPNUM + 2) +# define CONSOLE_OUT_EPNUM (RAW_OUT_EPNUM + 1) #else -# define CONSOLE_OUT_EPNUM EXTRAKEY_IN_EPNUM +# define CONSOLE_OUT_EPNUM RAW_OUT_EPNUM #endif #ifdef NKRO_ENABLE @@ -217,7 +238,6 @@ typedef struct # define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM #endif - #if defined(__AVR_ATmega32U2__) && CDC_OUT_EPNUM > 4 # error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO, MIDI, SERIAL)" #endif @@ -225,6 +245,7 @@ typedef struct #define KEYBOARD_EPSIZE 8 #define MOUSE_EPSIZE 8 #define EXTRAKEY_EPSIZE 8 +#define RAW_EPSIZE 32 #define CONSOLE_EPSIZE 32 #define NKRO_EPSIZE 32 #define MIDI_STREAM_EPSIZE 64 diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index ee2552c190..dd78fe6213 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c @@ -84,6 +84,10 @@ #include "sysex_tools.h" #endif +#ifdef RAW_ENABLE + #include "raw_hid.h" +#endif + uint8_t keyboard_idle = 0; /* 0: Boot Protocol, 1: Report Protocol(default) */ uint8_t keyboard_protocol = 1; @@ -179,6 +183,80 @@ USB_ClassInfo_CDC_Device_t cdc_device = }; #endif +#ifdef RAW_ENABLE + +void raw_hid_send( uint8_t *data, uint8_t length ) +{ + // TODO: implement variable size packet + if ( length != RAW_EPSIZE ) + { + return; + } + + if (USB_DeviceState != DEVICE_STATE_Configured) + { + return; + } + + // TODO: decide if we allow calls to raw_hid_send() in the middle + // of other endpoint usage. + uint8_t ep = Endpoint_GetCurrentEndpoint(); + + Endpoint_SelectEndpoint(RAW_IN_EPNUM); + + // Check to see if the host is ready to accept another packet + if (Endpoint_IsINReady()) + { + // Write data + Endpoint_Write_Stream_LE(data, RAW_EPSIZE, NULL); + // Finalize the stream transfer to send the last packet + Endpoint_ClearIN(); + } + + Endpoint_SelectEndpoint(ep); +} + +__attribute__ ((weak)) +void raw_hid_receive( uint8_t *data, uint8_t length ) +{ + // Users should #include "raw_hid.h" in their own code + // and implement this function there. Leave this as weak linkage + // so users can opt to not handle data coming in. +} + +static void raw_hid_task(void) +{ + // Create a temporary buffer to hold the read in data from the host + uint8_t data[RAW_EPSIZE]; + bool data_read = false; + + // Device must be connected and configured for the task to run + if (USB_DeviceState != DEVICE_STATE_Configured) + return; + + Endpoint_SelectEndpoint(RAW_OUT_EPNUM); + + // Check to see if a packet has been sent from the host + if (Endpoint_IsOUTReceived()) + { + // Check to see if the packet contains data + if (Endpoint_IsReadWriteAllowed()) + { + /* Read data */ + Endpoint_Read_Stream_LE(data, sizeof(data), NULL); + data_read = true; + } + + // Finalize the stream transfer to receive the last packet + Endpoint_ClearOUT(); + + if ( data_read ) + { + raw_hid_receive( data, sizeof(data) ); + } + } +} +#endif /******************************************************************************* * Console @@ -298,6 +376,8 @@ void EVENT_USB_Device_WakeUp() #endif } + + #ifdef CONSOLE_ENABLE static bool console_flush = false; #define CONSOLE_FLUSH_SET(b) do { \ @@ -317,6 +397,7 @@ void EVENT_USB_Device_StartOfFrame(void) Console_Task(); console_flush = false; } + #endif /** Event handler for the USB_ConfigurationChanged event. @@ -345,6 +426,14 @@ void EVENT_USB_Device_ConfigurationChanged(void) EXTRAKEY_EPSIZE, ENDPOINT_BANK_SINGLE); #endif +#ifdef RAW_ENABLE + /* Setup Raw HID Report Endpoints */ + ConfigSuccess &= ENDPOINT_CONFIG(RAW_IN_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_IN, + RAW_EPSIZE, ENDPOINT_BANK_SINGLE); + ConfigSuccess &= ENDPOINT_CONFIG(RAW_OUT_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_OUT, + RAW_EPSIZE, ENDPOINT_BANK_SINGLE); +#endif + #ifdef CONSOLE_ENABLE /* Setup Console HID Report Endpoints */ ConfigSuccess &= ENDPOINT_CONFIG(CONSOLE_IN_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_IN, @@ -1124,9 +1213,14 @@ int main(void) CDC_Device_USBTask(&cdc_device); #endif +#ifdef RAW_ENABLE + raw_hid_task(); +#endif + #if !defined(INTERRUPT_CONTROL_ENDPOINT) USB_USBTask(); #endif + } } diff --git a/tmk_core/protocol/ps2_mouse.c b/tmk_core/protocol/ps2_mouse.c index af971dd497..d9ccbecb43 100644 --- a/tmk_core/protocol/ps2_mouse.c +++ b/tmk_core/protocol/ps2_mouse.c @@ -28,52 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* ============================= MACROS ============================ */ -#define PS2_MOUSE_SEND(command, message) \ -do { \ - uint8_t rcv = ps2_host_send(command); \ - if (debug_mouse) { \ - print((message)); \ - xprintf(" command: %X, result: %X, error: %X \n", command, rcv, ps2_error); \ - } \ -} while(0) - -#define PS2_MOUSE_SEND_SAFE(command, message) \ -do { \ - if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ - ps2_mouse_disable_data_reporting(); \ - } \ - PS2_MOUSE_SEND(command, message); \ - if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ - ps2_mouse_enable_data_reporting(); \ - } \ -} while(0) - -#define PS2_MOUSE_SET_SAFE(command, value, message) \ -do { \ - if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ - ps2_mouse_disable_data_reporting(); \ - } \ - PS2_MOUSE_SEND(command, message); \ - PS2_MOUSE_SEND(value, "Sending value"); \ - if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ - ps2_mouse_enable_data_reporting(); \ - } \ -} while(0) - -#define PS2_MOUSE_RECEIVE(message) \ -do { \ - uint8_t rcv = ps2_host_recv_response(); \ - if (debug_mouse) { \ - print((message)); \ - xprintf(" result: %X, error: %X \n", rcv, ps2_error); \ - } \ -} while(0) - -static enum ps2_mouse_mode_e { - PS2_MOUSE_STREAM_MODE, - PS2_MOUSE_REMOTE_MODE, -} ps2_mouse_mode = PS2_MOUSE_STREAM_MODE; - static report_mouse_t mouse_report = {}; static inline void ps2_mouse_print_report(report_mouse_t *mouse_report); @@ -108,6 +62,12 @@ void ps2_mouse_init(void) { #ifdef PS2_MOUSE_USE_2_1_SCALING ps2_mouse_set_scaling_2_1(); #endif + + ps2_mouse_init_user(); +} + +__attribute__((weak)) +void ps2_mouse_init_user(void) { } void ps2_mouse_task(void) { diff --git a/tmk_core/protocol/ps2_mouse.h b/tmk_core/protocol/ps2_mouse.h index e11c705fc6..3c93a46342 100644 --- a/tmk_core/protocol/ps2_mouse.h +++ b/tmk_core/protocol/ps2_mouse.h @@ -19,6 +19,53 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define PS2_MOUSE_H #include <stdbool.h> +#include "debug.h" + +#define PS2_MOUSE_SEND(command, message) \ +do { \ + uint8_t rcv = ps2_host_send(command); \ + if (debug_mouse) { \ + print((message)); \ + xprintf(" command: %X, result: %X, error: %X \n", command, rcv, ps2_error); \ + } \ +} while(0) + +#define PS2_MOUSE_SEND_SAFE(command, message) \ +do { \ + if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ + ps2_mouse_disable_data_reporting(); \ + } \ + PS2_MOUSE_SEND(command, message); \ + if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ + ps2_mouse_enable_data_reporting(); \ + } \ +} while(0) + +#define PS2_MOUSE_SET_SAFE(command, value, message) \ +do { \ + if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ + ps2_mouse_disable_data_reporting(); \ + } \ + PS2_MOUSE_SEND(command, message); \ + PS2_MOUSE_SEND(value, "Sending value"); \ + if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ + ps2_mouse_enable_data_reporting(); \ + } \ +} while(0) + +#define PS2_MOUSE_RECEIVE(message) \ +do { \ + uint8_t rcv = ps2_host_recv_response(); \ + if (debug_mouse) { \ + print((message)); \ + xprintf(" result: %X, error: %X \n", rcv, ps2_error); \ + } \ +} while(0) + +static enum ps2_mouse_mode_e { + PS2_MOUSE_STREAM_MODE, + PS2_MOUSE_REMOTE_MODE, +} ps2_mouse_mode = PS2_MOUSE_STREAM_MODE; /* * Data format: @@ -107,6 +154,8 @@ typedef enum ps2_mouse_sample_rate_e { void ps2_mouse_init(void); +void ps2_mouse_init_user(void); + void ps2_mouse_task(void); void ps2_mouse_disable_data_reporting(void); |