diff options
71 files changed, 8113 insertions, 2020 deletions
diff --git a/keyboards/converter/Makefile b/keyboards/converter/Makefile new file mode 100644 index 000000000..4e2a6f00f --- /dev/null +++ b/keyboards/converter/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | ifndef MAKEFILE_INCLUDED | ||
| 2 | include ../../Makefile | ||
| 3 | endif \ No newline at end of file | ||
diff --git a/keyboards/converter/converter.c b/keyboards/converter/converter.c new file mode 100644 index 000000000..aa4bef63a --- /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 000000000..7a4a4835e --- /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 000000000..191c6bb66 --- /dev/null +++ b/keyboards/converter/ibm_terminal/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | ifndef MAKEFILE_INCLUDED | ||
| 2 | include ../../../Makefile | ||
| 3 | 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 000000000..6b7aff2c8 --- /dev/null +++ b/keyboards/converter/ibm_terminal/README | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | Keyboard converter for IBM terminal keyboard | ||
| 2 | ============================================ | ||
| 3 | |||
| 4 | This is a port of TMK's converter/terminal_usb to QMK. | ||
| 5 | |||
| 6 | It supports PS/2 Scan Code Set 3 and runs on USB AVR chips such like PJRC Teensy. | ||
| 7 | I tested the converter on ATMega32U4 with 1392595(102keys) and 6110345(122keys). | ||
| 8 | |||
| 9 | Source code: https://github.com/tmk/tmk_keyboard | ||
| 10 | Article: http://geekhack.org/index.php?topic=27272.0 | ||
| 11 | |||
| 12 | |||
| 13 | CONNECTION | ||
| 14 | ---------- | ||
| 15 | Keyboard ATMega32U4 | ||
| 16 | ---------------------- | ||
| 17 | Data: PD2 | ||
| 18 | Clock: PD5 | ||
| 19 | |||
| 20 | And VCC and GND, of course. See RESOURCE for keyboard connector pin assign. | ||
| 21 | |||
| 22 | |||
| 23 | BUILD | ||
| 24 | ----- | ||
| 25 | $ git clone https://github.com/tmk/tmk_keyboard.git | ||
| 26 | $ cd converter/terminal_usb | ||
| 27 | $ make | ||
| 28 | |||
| 29 | |||
| 30 | RESOURCE | ||
| 31 | -------- | ||
| 32 | Soarer's Converter: http://geekhack.org/index.php?topic=17458.0 | ||
| 33 | 102keys(1392595): http://geekhack.org/index.php?topic=10737.0 | ||
| 34 | 122keys(1390876): http://www.seasip.info/VintagePC/ibm_1390876.html | ||
| 35 | KbdBabel: http://www.kbdbabel.org/ | ||
| 36 | RJ45 Connector: http://www.kbdbabel.org/conn/kbd_connector_ibmterm.png | ||
| 37 | DIN Connector: http://www.kbdbabel.org/conn/kbd_connector_ibm3179_318x_319x.png | ||
| 38 | WinAVR: http://winavr.sourceforge.net/ | ||
| 39 | |||
| 40 | EOF | ||
diff --git a/keyboards/converter/ibm_terminal/config.h b/keyboards/converter/ibm_terminal/config.h new file mode 100644 index 000000000..4dd85f698 --- /dev/null +++ b/keyboards/converter/ibm_terminal/config.h | |||
| @@ -0,0 +1,138 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | Copyright 2016 Priyadi Iman Nurcahyo <priyadi@priyadi.net> | ||
| 4 | |||
| 5 | This program is free software: you can redistribute it and/or modify | ||
| 6 | it under the terms of the GNU General Public License as published by | ||
| 7 | the Free Software Foundation, either version 2 of the License, or | ||
| 8 | (at your option) any later version. | ||
| 9 | |||
| 10 | This program is distributed in the hope that it will be useful, | ||
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | GNU General Public License for more details. | ||
| 14 | |||
| 15 | You should have received a copy of the GNU General Public License | ||
| 16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef CONFIG_H | ||
| 20 | #define CONFIG_H | ||
| 21 | |||
| 22 | |||
| 23 | #define VENDOR_ID 0xFEED | ||
| 24 | #define PRODUCT_ID 0x6535 | ||
| 25 | #define DEVICE_VER 0x0100 | ||
| 26 | #define MANUFACTURER QMK | ||
| 27 | #define PRODUCT IBM Terminal Keyboard | ||
| 28 | #define DESCRIPTION USB converter for IBM Terminal Keyboard | ||
| 29 | |||
| 30 | |||
| 31 | /* matrix size */ | ||
| 32 | #define MATRIX_ROWS 17 // keycode bit: 3-0 | ||
| 33 | #define MATRIX_COLS 8 // keycode bit: 6-4 | ||
| 34 | |||
| 35 | |||
| 36 | /* legacy keymap support */ | ||
| 37 | #define USE_LEGACY_KEYMAP | ||
| 38 | |||
| 39 | |||
| 40 | /* key combination for command */ | ||
| 41 | #define IS_COMMAND() ( \ | ||
| 42 | keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT) | MOD_BIT(KC_RALT) | MOD_BIT(KC_RCTL)) \ | ||
| 43 | ) | ||
| 44 | |||
| 45 | |||
| 46 | /* | ||
| 47 | * PS/2 USART configuration for ATMega32U4 | ||
| 48 | */ | ||
| 49 | #ifdef PS2_USE_USART | ||
| 50 | /* XCK for clock line */ | ||
| 51 | #define PS2_CLOCK_PORT PORTD | ||
| 52 | #define PS2_CLOCK_PIN PIND | ||
| 53 | #define PS2_CLOCK_DDR DDRD | ||
| 54 | #define PS2_CLOCK_BIT 5 | ||
| 55 | /* RXD for data line */ | ||
| 56 | #define PS2_DATA_PORT PORTD | ||
| 57 | #define PS2_DATA_PIN PIND | ||
| 58 | #define PS2_DATA_DDR DDRD | ||
| 59 | #define PS2_DATA_BIT 2 | ||
| 60 | |||
| 61 | /* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */ | ||
| 62 | /* set DDR of CLOCK as input to be slave */ | ||
| 63 | #define PS2_USART_INIT() do { \ | ||
| 64 | PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \ | ||
| 65 | PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \ | ||
| 66 | UCSR1C = ((1 << UMSEL10) | \ | ||
| 67 | (3 << UPM10) | \ | ||
| 68 | (0 << USBS1) | \ | ||
| 69 | (3 << UCSZ10) | \ | ||
| 70 | (0 << UCPOL1)); \ | ||
| 71 | UCSR1A = 0; \ | ||
| 72 | UBRR1H = 0; \ | ||
| 73 | UBRR1L = 0; \ | ||
| 74 | } while (0) | ||
| 75 | #define PS2_USART_RX_INT_ON() do { \ | ||
| 76 | UCSR1B = ((1 << RXCIE1) | \ | ||
| 77 | (1 << RXEN1)); \ | ||
| 78 | } while (0) | ||
| 79 | #define PS2_USART_RX_POLL_ON() do { \ | ||
| 80 | UCSR1B = (1 << RXEN1); \ | ||
| 81 | } while (0) | ||
| 82 | #define PS2_USART_OFF() do { \ | ||
| 83 | UCSR1C = 0; \ | ||
| 84 | UCSR1B &= ~((1 << RXEN1) | \ | ||
| 85 | (1 << TXEN1)); \ | ||
| 86 | } while (0) | ||
| 87 | #define PS2_USART_RX_READY (UCSR1A & (1<<RXC1)) | ||
| 88 | #define PS2_USART_RX_DATA UDR1 | ||
| 89 | #define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1))) | ||
| 90 | #define PS2_USART_RX_VECT USART1_RX_vect | ||
| 91 | #endif | ||
| 92 | |||
| 93 | |||
| 94 | /* | ||
| 95 | * PS/2 Interrupt configuration | ||
| 96 | */ | ||
| 97 | #ifdef PS2_USE_INT | ||
| 98 | /* uses INT1 for clock line(ATMega32U4) */ | ||
| 99 | #define PS2_CLOCK_PORT PORTD | ||
| 100 | #define PS2_CLOCK_PIN PIND | ||
| 101 | #define PS2_CLOCK_DDR DDRD | ||
| 102 | #define PS2_CLOCK_BIT 1 | ||
| 103 | |||
| 104 | #define PS2_DATA_PORT PORTD | ||
| 105 | #define PS2_DATA_PIN PIND | ||
| 106 | #define PS2_DATA_DDR DDRD | ||
| 107 | #define PS2_DATA_BIT 0 | ||
| 108 | |||
| 109 | #define PS2_INT_INIT() do { \ | ||
| 110 | EICRA |= ((1<<ISC11) | \ | ||
| 111 | (0<<ISC10)); \ | ||
| 112 | } while (0) | ||
| 113 | #define PS2_INT_ON() do { \ | ||
| 114 | EIMSK |= (1<<INT1); \ | ||
| 115 | } while (0) | ||
| 116 | #define PS2_INT_OFF() do { \ | ||
| 117 | EIMSK &= ~(1<<INT1); \ | ||
| 118 | } while (0) | ||
| 119 | #define PS2_INT_VECT INT1_vect | ||
| 120 | #endif | ||
| 121 | |||
| 122 | |||
| 123 | /* | ||
| 124 | * PS/2 Busywait configuration | ||
| 125 | */ | ||
| 126 | #ifdef PS2_USE_BUSYWAIT | ||
| 127 | #define PS2_CLOCK_PORT PORTD | ||
| 128 | #define PS2_CLOCK_PIN PIND | ||
| 129 | #define PS2_CLOCK_DDR DDRD | ||
| 130 | #define PS2_CLOCK_BIT 1 | ||
| 131 | |||
| 132 | #define PS2_DATA_PORT PORTD | ||
| 133 | #define PS2_DATA_PIN PIND | ||
| 134 | #define PS2_DATA_DDR DDRD | ||
| 135 | #define PS2_DATA_BIT 0 | ||
| 136 | #endif | ||
| 137 | |||
| 138 | #endif | ||
diff --git a/keyboards/converter/ibm_terminal/ibm_terminal.c b/keyboards/converter/ibm_terminal/ibm_terminal.c new file mode 100644 index 000000000..17296864a --- /dev/null +++ b/keyboards/converter/ibm_terminal/ibm_terminal.c | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #include "ibm_terminal.h" | ||
| 2 | |||
| 3 | // void matrix_init_kb(void) { | ||
| 4 | |||
| 5 | // matrix_init_user(); | ||
| 6 | // } \ 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 000000000..c6468349c --- /dev/null +++ b/keyboards/converter/ibm_terminal/ibm_terminal.h | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | #ifndef IBM_TERMINAL_H | ||
| 2 | #define IBM_TERMINAL_H | ||
| 3 | |||
| 4 | #include "quantum.h" | ||
| 5 | |||
| 6 | void matrix_init_user(void); | ||
| 7 | |||
| 8 | /* | ||
| 9 | * IBM Terminal keyboard 6110345(122keys)/1392595(102keys) | ||
| 10 | * http://geekhack.org/showthread.php?10737-What-Can-I-Do-With-a-Terminal-Model-M | ||
| 11 | * http://www.seasip.info/VintagePC/ibm_1391406.html | ||
| 12 | * | ||
| 13 | * Keymap array: | ||
| 14 | * 8 bytes | ||
| 15 | * +---------+ | ||
| 16 | * 0| | | ||
| 17 | * :| | 0x00-0x87 | ||
| 18 | * ;| | | ||
| 19 | * 17| | | ||
| 20 | * +---------+ | ||
| 21 | */ | ||
| 22 | #define KEYMAP( \ | ||
| 23 | K08,K10,K18,K20,K28,K30,K38,K40,K48,K50,K57,K5F, \ | ||
| 24 | K07,K0F,K17,K1F,K27,K2F,K37,K3F,K47,K4F,K56,K5E, \ | ||
| 25 | \ | ||
| 26 | K05,K06, K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K5D,K66, K67,K6E,K6F, K76,K77,K7E,K84, \ | ||
| 27 | K04,K0C, K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B, K5C, K64,K65,K6D, K6C,K75,K7D,K7C, \ | ||
| 28 | K03,K0B, K14,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K53,K5A, K63, K6B,K73,K74,K7B, \ | ||
| 29 | K83,K0A, K12,K13,K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K51,K59, K61,K62,K6A, K69,K72,K7A,K79, \ | ||
| 30 | K01,K09, K11, K19, K29, K39, K58, K60, K68,K70,K71,K78 \ | ||
| 31 | ) { \ | ||
| 32 | { KC_NO, K01, KC_NO, K03, K04, K05, K06, K07 }, \ | ||
| 33 | { K08, K09, K0A, K0B, K0C, K0D, K0E, K0F }, \ | ||
| 34 | { K10, K11, K12, K13, K14, K15, K16, K17 }, \ | ||
| 35 | { K18, K19, K1A, K1B, K1C, K1D, K1E, K1F }, \ | ||
| 36 | { K20, K21, K22, K23, K24, K25, K26, K27 }, \ | ||
| 37 | { K28, K29, K2A, K2B, K2C, K2D, K2E, K2F }, \ | ||
| 38 | { K30, K31, K32, K33, K34, K35, K36, K37 }, \ | ||
| 39 | { K38, K39, K3A, K3B, K3C, K3D, K3E, K3F }, \ | ||
| 40 | { K40, K41, K42, K43, K44, K45, K46, K47 }, \ | ||
| 41 | { K48, K49, K4A, K4B, K4C, K4D, K4E, K4F }, \ | ||
| 42 | { K50, K51, K52, K53, K54, K55, K56, K57 }, \ | ||
| 43 | { K58, K59, K5A, K5B, K5C, K5D, K5E, K5F }, \ | ||
| 44 | { K60, K61, K62, K63, K64, K65, K66, K67 }, \ | ||
| 45 | { K68, K69, K6A, K6B, K6C, K6D, K6E, K6F }, \ | ||
| 46 | { K70, K71, K72, K73, K74, K75, K76, K77 }, \ | ||
| 47 | { K78, K79, K7A, K7B, K7C, K7D, K7E, KC_NO }, \ | ||
| 48 | { KC_NO, KC_NO, KC_NO, K83, K84, KC_NO, KC_NO, KC_NO,}, \ | ||
| 49 | } | ||
| 50 | |||
| 51 | /* | ||
| 52 | * IBM Terminal keyboard 1399625, 101-key | ||
| 53 | */ | ||
| 54 | #define KEYMAP_101( \ | ||
| 55 | K08, K07,K0F,K17,K1F,K27,K2F,K37,K3F,K47,K4F,K56,K5E, K57,K5F,K62, \ | ||
| 56 | \ | ||
| 57 | K0E,K16,K1E,K26,K25,K2E,K36,K3D,K3E,K46,K45,K4E,K55,K66, K67,K6E,K6F, K76,K77,K7E,K84, \ | ||
| 58 | K0D,K15,K1D,K24,K2D,K2C,K35,K3C,K43,K44,K4D,K54,K5B,K5C, K64,K65,K6D, K6C,K75,K7D, \ | ||
| 59 | K14,K1C,K1B,K23,K2B,K34,K33,K3B,K42,K4B,K4C,K52, K5A, K6B,K73,K74,K7C, \ | ||
| 60 | K12, K1A,K22,K21,K2A,K32,K31,K3A,K41,K49,K4A, K59, K63, K69,K72,K7A, \ | ||
| 61 | K11, K19, K29, K39, K58, K61,K60,K6A, K70, K71,K79 \ | ||
| 62 | ) { \ | ||
| 63 | { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, K07 }, \ | ||
| 64 | { K08, KC_NO, KC_NO, KC_NO, KC_NO, K0D, K0E, K0F }, \ | ||
| 65 | { KC_NO, K11, K12, KC_NO, K14, K15, K16, K17 }, \ | ||
| 66 | { KC_NO, K19, K1A, K1B, K1C, K1D, K1E, K1F }, \ | ||
| 67 | { KC_NO, K21, K22, K23, K24, K25, K26, K27 }, \ | ||
| 68 | { KC_NO, K29, K2A, K2B, K2C, K2D, K2E, K2F }, \ | ||
| 69 | { KC_NO, K31, K32, K33, K34, K35, K36, K37 }, \ | ||
| 70 | { KC_NO, K39, K3A, K3B, K3C, K3D, K3E, K3F }, \ | ||
| 71 | { KC_NO, K41, K42, K43, K44, K45, K46, K47 }, \ | ||
| 72 | { KC_NO, K49, K4A, K4B, K4C, K4D, K4E, K4F }, \ | ||
| 73 | { KC_NO, KC_NO, K52, KC_NO, K54, K55, K56, K57 }, \ | ||
| 74 | { K58, K59, K5A, K5B, K5C, KC_NO, K5E, K5F }, \ | ||
| 75 | { K60, K61, K62, K63, K64, K65, K66, K67 }, \ | ||
| 76 | { KC_NO, K69, K6A, K6B, K6C, K6D, K6E, K6F }, \ | ||
| 77 | { K70, K71, K72, K73, K74, K75, K76, K77 }, \ | ||
| 78 | { KC_NO, K79, K7A, KC_NO, K7C, K7D, K7E, KC_NO }, \ | ||
| 79 | { KC_NO, KC_NO, KC_NO, KC_NO, K84, KC_NO, KC_NO, KC_NO,}, \ | ||
| 80 | } | ||
| 81 | |||
| 82 | #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 000000000..9ec246494 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/Makefile | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # Build Options | ||
| 2 | # change to "no" to disable the options, or define them in the Makefile in | ||
| 3 | # the appropriate keymap folder that will get included automatically | ||
| 4 | # | ||
| 5 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | ||
| 6 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | ||
| 7 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | ||
| 8 | CONSOLE_ENABLE ?= no # Console for debug(+400) | ||
| 9 | COMMAND_ENABLE ?= no # Commands for debug and configuration | ||
| 10 | NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 11 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | ||
| 12 | MIDI_ENABLE ?= no # MIDI controls | ||
| 13 | AUDIO_ENABLE ?= no # Audio output on port C6 | ||
| 14 | UNICODE_ENABLE ?= no # Unicode | ||
| 15 | UNICODEMAP_ENABLE ?= yes | ||
| 16 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 17 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | ||
| 18 | PS2_USE_USART ?= yes | ||
| 19 | API_SYSEX_ENABLE ?= no | ||
| 20 | |||
| 21 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 23 | |||
| 24 | ifndef QUANTUM_DIR | ||
| 25 | include ../../../../../Makefile | ||
| 26 | endif | ||
| 27 | |||
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 000000000..7fa3bf328 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/config.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #ifndef CONFIG_USER_H | ||
| 2 | #define CONFIG_USER_H | ||
| 3 | |||
| 4 | #include "../../config.h" | ||
| 5 | |||
| 6 | #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 000000000..2beb51106 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/default/keymap.c | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <stdint.h> | ||
| 19 | #include <stdbool.h> | ||
| 20 | #include "keycode.h" | ||
| 21 | #include "print.h" | ||
| 22 | #include "debug.h" | ||
| 23 | #include "util.h" | ||
| 24 | #include "ibm_terminal.h" | ||
| 25 | |||
| 26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 27 | // Layer 0 | ||
| 28 | |||
| 29 | KEYMAP( | ||
| 30 | KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24, | ||
| 31 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 32 | |||
| 33 | 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, | ||
| 34 | 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, | ||
| 35 | 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, | ||
| 36 | 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, | ||
| 37 | KC_RGUI,KC_LGUI, KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_GRV, KC_DOWN, KC_NO, KC_P0, KC_PDOT,KC_NO | ||
| 38 | ), | ||
| 39 | |||
| 40 | /* 101-key keymaps | ||
| 41 | */ | ||
| 42 | /* 0: default | ||
| 43 | * ,---. ,---------------. ,---------------. ,---------------. ,-----------. | ||
| 44 | * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau| | ||
| 45 | * `---' `---------------' `---------------' `---------------' `-----------' | ||
| 46 | * ,-----------------------------------------------------------. ,-----------. ,---------------. | ||
| 47 | * | `| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backspa| |Ins|Hom|PgU| |NmL| /| *| -| | ||
| 48 | * |-----------------------------------------------------------| |-----------| |---------------| | ||
| 49 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD| | 7| 8| 9| | | ||
| 50 | * |-----------------------------------------------------------| `-----------' |-----------| +| | ||
| 51 | * |CapsLo| A| S| D| F| G| H| J| K| L| ;| '|Return | | 4| 5| 6| | | ||
| 52 | * |-----------------------------------------------------------| ,---. |---------------| | ||
| 53 | * |Shift | Z| X| C| V| B| N| M| ,| ,| /|Shift | |Up | | 1| 2| 3| | | ||
| 54 | * |-----------------------------------------------------------| ,-----------. |-----------|Ent| | ||
| 55 | * |Ctrl| |Alt | Space |Alt | |Ctrl| |Lef|Dow|Rig| | 0| .| | | ||
| 56 | * `----' `---------------------------------------' `----' `-----------' `---------------' | ||
| 57 | */ | ||
| 58 | /* | ||
| 59 | KEYMAP_101( | ||
| 60 | 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, | ||
| 61 | |||
| 62 | 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, | ||
| 63 | 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, | ||
| 64 | 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, | ||
| 65 | 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, | ||
| 66 | KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT,KC_DOWN,KC_RGHT, KC_P0, KC_PDOT,KC_PENT | ||
| 67 | ), | ||
| 68 | */ | ||
| 69 | }; | ||
diff --git a/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile b/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile new file mode 100644 index 000000000..9ec246494 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/Makefile | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # Build Options | ||
| 2 | # change to "no" to disable the options, or define them in the Makefile in | ||
| 3 | # the appropriate keymap folder that will get included automatically | ||
| 4 | # | ||
| 5 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | ||
| 6 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | ||
| 7 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | ||
| 8 | CONSOLE_ENABLE ?= no # Console for debug(+400) | ||
| 9 | COMMAND_ENABLE ?= no # Commands for debug and configuration | ||
| 10 | NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 11 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | ||
| 12 | MIDI_ENABLE ?= no # MIDI controls | ||
| 13 | AUDIO_ENABLE ?= no # Audio output on port C6 | ||
| 14 | UNICODE_ENABLE ?= no # Unicode | ||
| 15 | UNICODEMAP_ENABLE ?= yes | ||
| 16 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 17 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | ||
| 18 | PS2_USE_USART ?= yes | ||
| 19 | API_SYSEX_ENABLE ?= no | ||
| 20 | |||
| 21 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 23 | |||
| 24 | ifndef QUANTUM_DIR | ||
| 25 | include ../../../../../Makefile | ||
| 26 | endif | ||
| 27 | |||
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 000000000..7fa3bf328 --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/config.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #ifndef CONFIG_USER_H | ||
| 2 | #define CONFIG_USER_H | ||
| 3 | |||
| 4 | #include "../../config.h" | ||
| 5 | |||
| 6 | #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 000000000..592f7654b --- /dev/null +++ b/keyboards/converter/ibm_terminal/keymaps/priyadi/keymap.c | |||
| @@ -0,0 +1,312 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2016 Priyadi Iman Nurcahyo <priyadi@priyadi.net> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include "keycode.h" | ||
| 19 | #include "print.h" | ||
| 20 | #include "debug.h" | ||
| 21 | #include "util.h" | ||
| 22 | #include "ibm_terminal.h" | ||
| 23 | #include "action_layer.h" | ||
| 24 | |||
| 25 | // Fillers to make layering clearer | ||
| 26 | |||
| 27 | #define _______ KC_TRNS | ||
| 28 | #define XXXXXXX KC_NO | ||
| 29 | |||
| 30 | enum layers { | ||
| 31 | QWE, // qwerty | ||
| 32 | COL, // colemak | ||
| 33 | WOR, // workman | ||
| 34 | DVO, // dvorak | ||
| 35 | |||
| 36 | MOU, // mouse keys | ||
| 37 | EMO, // emoji | ||
| 38 | SYS, // system | ||
| 39 | }; | ||
| 40 | |||
| 41 | enum keycodes { | ||
| 42 | // default layout switcher | ||
| 43 | LAY_QWE = SAFE_RANGE, | ||
| 44 | LAY_COL, | ||
| 45 | LAY_WOR, | ||
| 46 | LAY_DVO, | ||
| 47 | |||
| 48 | // layer switchers | ||
| 49 | LYR_SYS, | ||
| 50 | LYR_EMO, | ||
| 51 | |||
| 52 | // os switchers | ||
| 53 | OS_LIN, | ||
| 54 | OS_WIN, | ||
| 55 | OS_MAC, | ||
| 56 | }; | ||
| 57 | |||
| 58 | // unicode map | ||
| 59 | |||
| 60 | enum unicode_name { | ||
| 61 | GRIN, // grinning face 😊 | ||
| 62 | TJOY, // tears of joy 😂 | ||
| 63 | SMILE, // grining face with smiling eyes 😁 | ||
| 64 | HEART, // heart ❤ | ||
| 65 | EYERT, // smiling face with heart shaped eyes 😍 | ||
| 66 | CRY, // crying face 😭 | ||
| 67 | SMEYE, // smiling face with smiling eyes 😊 | ||
| 68 | UNAMU, // unamused 😒 | ||
| 69 | KISS, // kiss 😘 | ||
| 70 | HART2, // two hearts 💕 | ||
| 71 | WEARY, // weary 😩 | ||
| 72 | OKHND, // ok hand sign 👌 | ||
| 73 | PENSV, // pensive 😔 | ||
| 74 | SMIRK, // smirk 😏 | ||
| 75 | RECYC, // recycle ♻ | ||
| 76 | WINK, // wink 😉 | ||
| 77 | THMUP, // thumb up 👍 | ||
| 78 | THMDN, // thumb down 👎 | ||
| 79 | PRAY, // pray 🙏 | ||
| 80 | PHEW, // relieved 😌 | ||
| 81 | MUSIC, // musical notes | ||
| 82 | FLUSH, // flushed 😳 | ||
| 83 | CELEB, // celebration 🙌 | ||
| 84 | CRY2, // crying face 😢 | ||
| 85 | COOL, // smile with sunglasses 😎 | ||
| 86 | NOEVS, // see no evil | ||
| 87 | NOEVH, // hear no evil | ||
| 88 | NOEVK, // speak no evil | ||
| 89 | POO, // pile of poo | ||
| 90 | EYES, // eyes | ||
| 91 | VIC, // victory hand | ||
| 92 | BHART, // broken heart | ||
| 93 | SLEEP, // sleeping face | ||
| 94 | SMIL2, // smiling face with open mouth & sweat | ||
| 95 | HUNRD, // 100 | ||
| 96 | CONFU, // confused | ||
| 97 | TONGU, // face with tongue & winking eye | ||
| 98 | DISAP, // disappointed | ||
| 99 | YUMMY, // face savoring delicious food | ||
| 100 | CLAP, // hand clapping | ||
| 101 | FEAR, // face screaming in fear | ||
| 102 | HORNS, // smiling face with horns | ||
| 103 | HALO, // smiling face with halo | ||
| 104 | BYE, // waving hand | ||
| 105 | SUN, // sun | ||
| 106 | MOON, // moon | ||
| 107 | SKULL, // skull | ||
| 108 | }; | ||
| 109 | |||
| 110 | const uint32_t PROGMEM unicode_map[] = { | ||
| 111 | [GRIN] = 0x1F600, | ||
| 112 | [TJOY] = 0x1F602, | ||
| 113 | [SMILE] = 0x1F601, | ||
| 114 | [HEART] = 0x2764, | ||
| 115 | [EYERT] = 0x1f60d, | ||
| 116 | [CRY] = 0x1f62d, | ||
| 117 | [SMEYE] = 0x1F60A, | ||
| 118 | [UNAMU] = 0x1F612, | ||
| 119 | [KISS] = 0x1F618, | ||
| 120 | [HART2] = 0x1F495, | ||
| 121 | [WEARY] = 0x1F629, | ||
| 122 | [OKHND] = 0x1F44C, | ||
| 123 | [PENSV] = 0x1F614, | ||
| 124 | [SMIRK] = 0x1F60F, | ||
| 125 | [RECYC] = 0x267B, | ||
| 126 | [WINK] = 0x1F609, | ||
| 127 | [THMUP] = 0x1F44D, | ||
| 128 | [THMDN] = 0x1F44E, | ||
| 129 | [PRAY] = 0x1F64F, | ||
| 130 | [PHEW] = 0x1F60C, | ||
| 131 | [MUSIC] = 0x1F3B6, | ||
| 132 | [FLUSH] = 0x1F633, | ||
| 133 | [CELEB] = 0x1F64C, | ||
| 134 | [CRY2] = 0x1F622, | ||
| 135 | [COOL] = 0x1F60E, | ||
| 136 | [NOEVS] = 0x1F648, | ||
| 137 | [NOEVH] = 0x1F649, | ||
| 138 | [NOEVK] = 0x1F64A, | ||
| 139 | [POO] = 0x1F4A9, | ||
| 140 | [EYES] = 0x1F440, | ||
| 141 | [VIC] = 0x270C, | ||
| 142 | [BHART] = 0x1F494, | ||
| 143 | [SLEEP] = 0x1F634, | ||
| 144 | [SMIL2] = 0x1F605, | ||
| 145 | [HUNRD] = 0x1F4AF, | ||
| 146 | [CONFU] = 0x1F615, | ||
| 147 | [TONGU] = 0x1F61C, | ||
| 148 | [DISAP] = 0x1F61E, | ||
| 149 | [YUMMY] = 0x1F60B, | ||
| 150 | [CLAP] = 0x1F44F, | ||
| 151 | [FEAR] = 0x1F631, | ||
| 152 | [HORNS] = 0x1F608, | ||
| 153 | [HALO] = 0x1F607, | ||
| 154 | [BYE] = 0x1F44B, | ||
| 155 | [SUN] = 0x2600, | ||
| 156 | [MOON] = 0x1F314, | ||
| 157 | [SKULL] = 0x1F480, | ||
| 158 | }; | ||
| 159 | |||
| 160 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 161 | /* qwerty */ | ||
| 162 | [QWE] = KEYMAP( | ||
| 163 | KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 164 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 165 | |||
| 166 | 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, | ||
| 167 | 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, | ||
| 168 | 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, | ||
| 169 | 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, | ||
| 170 | KC_LGUI, KC_APP, KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_DOWN, XXXXXXX, KC_P0, KC_PDOT, XXXXXXX | ||
| 171 | ), | ||
| 172 | |||
| 173 | /* colemak */ | ||
| 174 | [COL] = KEYMAP( | ||
| 175 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 176 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 177 | |||
| 178 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 179 | _______, _______, _______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 180 | _______, _______, _______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, _______, _______, _______, _______, _______, _______, _______, | ||
| 181 | _______, _______, _______, _______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 182 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 183 | ), | ||
| 184 | |||
| 185 | /* workman */ | ||
| 186 | [WOR] = KEYMAP( | ||
| 187 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 188 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 189 | |||
| 190 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 191 | _______, _______, _______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 192 | _______, _______, _______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_QUOT, _______, _______, _______, _______, _______, _______, _______, | ||
| 193 | _______, _______, _______, _______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 194 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 195 | ), | ||
| 196 | |||
| 197 | /* dvorak */ | ||
| 198 | [DVO] = KEYMAP( | ||
| 199 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 200 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 201 | |||
| 202 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 203 | _______, _______, _______, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 204 | _______, _______, _______, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, _______, _______, _______, _______, _______, _______, _______, | ||
| 205 | _______, _______, _______, _______, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 206 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 207 | ), | ||
| 208 | |||
| 209 | /* system */ | ||
| 210 | [SYS] = KEYMAP( | ||
| 211 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 212 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 213 | |||
| 214 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 215 | _______, _______, _______, LAY_QWE, OS_WIN, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 216 | _______, _______, _______, _______, _______, LAY_DVO, _______, _______, _______, _______, LAY_WOR, OS_LIN, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 217 | _______, _______, _______, _______, _______, _______, LAY_COL, _______, _______, _______, OS_MAC, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 218 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 219 | ), | ||
| 220 | |||
| 221 | /* mouse keys */ | ||
| 222 | [MOU] = KEYMAP( | ||
| 223 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 224 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 225 | |||
| 226 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 227 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 228 | XXXXXXX, KC_BTN4, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_U, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 229 | 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, | ||
| 230 | KC_BTN1, KC_BTN3, KC_BTN2, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_D, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX | ||
| 231 | ), | ||
| 232 | |||
| 233 | /* emoji */ | ||
| 234 | [EMO] = KEYMAP( | ||
| 235 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 236 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 237 | |||
| 238 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 239 | 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, | ||
| 240 | 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, | ||
| 241 | 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, | ||
| 242 | XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX | ||
| 243 | ), | ||
| 244 | |||
| 245 | /* | ||
| 246 | [XXX] = KEYMAP( | ||
| 247 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 248 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 249 | |||
| 250 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 251 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 252 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 253 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 254 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 255 | ), | ||
| 256 | */ | ||
| 257 | }; | ||
| 258 | |||
| 259 | void persistant_default_layer_set(uint16_t default_layer) { | ||
| 260 | eeconfig_update_default_layer(default_layer); | ||
| 261 | default_layer_set(default_layer); | ||
| 262 | } | ||
| 263 | |||
| 264 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 265 | switch (keycode) { | ||
| 266 | /* layout switcher */ | ||
| 267 | case LAY_QWE: | ||
| 268 | if (record->event.pressed) { | ||
| 269 | persistant_default_layer_set(1UL<<QWE); | ||
| 270 | } | ||
| 271 | return false; | ||
| 272 | break; | ||
| 273 | case LAY_COL: | ||
| 274 | if (record->event.pressed) { | ||
| 275 | persistant_default_layer_set(1UL<<COL); | ||
| 276 | } | ||
| 277 | return false; | ||
| 278 | break; | ||
| 279 | case LAY_WOR: | ||
| 280 | if (record->event.pressed) { | ||
| 281 | persistant_default_layer_set(1UL<<WOR); | ||
| 282 | } | ||
| 283 | return false; | ||
| 284 | break; | ||
| 285 | case LAY_DVO: | ||
| 286 | if (record->event.pressed) { | ||
| 287 | persistant_default_layer_set(1UL<<DVO); | ||
| 288 | } | ||
| 289 | return false; | ||
| 290 | break; | ||
| 291 | |||
| 292 | /* os switcher */ | ||
| 293 | case OS_LIN: | ||
| 294 | set_unicode_input_mode(UC_LNX); | ||
| 295 | return false; | ||
| 296 | break; | ||
| 297 | case OS_WIN: | ||
| 298 | set_unicode_input_mode(UC_WINC); | ||
| 299 | return false; | ||
| 300 | break; | ||
| 301 | case OS_MAC: | ||
| 302 | set_unicode_input_mode(UC_OSX); | ||
| 303 | return false; | ||
| 304 | break; | ||
| 305 | |||
| 306 | } | ||
| 307 | return true; | ||
| 308 | } | ||
| 309 | |||
| 310 | void matrix_init_user() { | ||
| 311 | set_unicode_input_mode(UC_LNX); | ||
| 312 | } | ||
diff --git a/keyboards/converter/ibm_terminal/led.c b/keyboards/converter/ibm_terminal/led.c new file mode 100644 index 000000000..e448e84ec --- /dev/null +++ b/keyboards/converter/ibm_terminal/led.c | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2011 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include "stdint.h" | ||
| 19 | #include "ps2.h" | ||
| 20 | #include "led.h" | ||
| 21 | |||
| 22 | |||
| 23 | void led_set(uint8_t usb_led) | ||
| 24 | { | ||
| 25 | uint8_t ps2_led = 0; | ||
| 26 | if (usb_led & (1<<USB_LED_SCROLL_LOCK)) | ||
| 27 | ps2_led |= (1<<PS2_LED_SCROLL_LOCK); | ||
| 28 | if (usb_led & (1<<USB_LED_NUM_LOCK)) | ||
| 29 | ps2_led |= (1<<PS2_LED_NUM_LOCK); | ||
| 30 | if (usb_led & (1<<USB_LED_CAPS_LOCK)) | ||
| 31 | ps2_led |= (1<<PS2_LED_CAPS_LOCK); | ||
| 32 | ps2_host_set_led(ps2_led); | ||
| 33 | } | ||
diff --git a/keyboards/converter/ibm_terminal/matrix.c b/keyboards/converter/ibm_terminal/matrix.c new file mode 100644 index 000000000..9d717b61f --- /dev/null +++ b/keyboards/converter/ibm_terminal/matrix.c | |||
| @@ -0,0 +1,237 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2011 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <stdint.h> | ||
| 19 | #include <stdbool.h> | ||
| 20 | #include <avr/io.h> | ||
| 21 | #include <util/delay.h> | ||
| 22 | #include "print.h" | ||
| 23 | #include "util.h" | ||
| 24 | #include "debug.h" | ||
| 25 | #include "ps2.h" | ||
| 26 | #include "matrix.h" | ||
| 27 | |||
| 28 | #define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row)) | ||
| 29 | #define print_matrix_header() print("\nr/c 01234567\n") | ||
| 30 | #define matrix_bitpop(i) bitpop(matrix[i]) | ||
| 31 | #define ROW_SHIFTER ((uint8_t)1) | ||
| 32 | |||
| 33 | |||
| 34 | static void matrix_make(uint8_t code); | ||
| 35 | static void matrix_break(uint8_t code); | ||
| 36 | |||
| 37 | |||
| 38 | /* | ||
| 39 | * Matrix Array usage: | ||
| 40 | * 'Scan Code Set 3' is assigned into 17x8 cell matrix. | ||
| 41 | * | ||
| 42 | * 8bit wide | ||
| 43 | * +---------+ | ||
| 44 | * 0| | | ||
| 45 | * :| | 0x00-0x87 | ||
| 46 | * ;| | | ||
| 47 | * 17| | | ||
| 48 | * +---------+ | ||
| 49 | */ | ||
| 50 | static uint8_t matrix[MATRIX_ROWS]; | ||
| 51 | #define ROW(code) (code>>3) | ||
| 52 | #define COL(code) (code&0x07) | ||
| 53 | |||
| 54 | |||
| 55 | __attribute__ ((weak)) | ||
| 56 | void matrix_init_user(void) { | ||
| 57 | } | ||
| 58 | |||
| 59 | void matrix_init(void) | ||
| 60 | { | ||
| 61 | debug_enable = true; | ||
| 62 | //debug_matrix = true; | ||
| 63 | //debug_keyboard = true; | ||
| 64 | //debug_mouse = false; | ||
| 65 | |||
| 66 | ps2_host_init(); | ||
| 67 | |||
| 68 | // initialize matrix state: all keys off | ||
| 69 | for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00; | ||
| 70 | |||
| 71 | matrix_init_user(); | ||
| 72 | return; | ||
| 73 | } | ||
| 74 | |||
| 75 | uint8_t matrix_scan(void) | ||
| 76 | { | ||
| 77 | |||
| 78 | // scan code reading states | ||
| 79 | static enum { | ||
| 80 | RESET, | ||
| 81 | RESET_RESPONSE, | ||
| 82 | KBD_ID0, | ||
| 83 | KBD_ID1, | ||
| 84 | CONFIG, | ||
| 85 | READY, | ||
| 86 | F0, | ||
| 87 | } state = RESET; | ||
| 88 | |||
| 89 | uint8_t code; | ||
| 90 | if ((code = ps2_host_recv())) { | ||
| 91 | debug("r"); debug_hex(code); debug(" "); | ||
| 92 | } | ||
| 93 | |||
| 94 | switch (state) { | ||
| 95 | case RESET: | ||
| 96 | debug("wFF "); | ||
| 97 | if (ps2_host_send(0xFF) == 0xFA) { | ||
| 98 | debug("[ack]\nRESET_RESPONSE: "); | ||
| 99 | state = RESET_RESPONSE; | ||
| 100 | } | ||
| 101 | break; | ||
| 102 | case RESET_RESPONSE: | ||
| 103 | if (code == 0xAA) { | ||
| 104 | debug("[ok]\nKBD_ID: "); | ||
| 105 | state = KBD_ID0; | ||
| 106 | } else if (code) { | ||
| 107 | debug("err\nRESET: "); | ||
| 108 | state = RESET; | ||
| 109 | } | ||
| 110 | break; | ||
| 111 | // after reset receive keyboad ID(2 bytes) | ||
| 112 | case KBD_ID0: | ||
| 113 | if (code) { | ||
| 114 | state = KBD_ID1; | ||
| 115 | } | ||
| 116 | break; | ||
| 117 | case KBD_ID1: | ||
| 118 | if (code) { | ||
| 119 | debug("\nCONFIG: "); | ||
| 120 | state = CONFIG; | ||
| 121 | } | ||
| 122 | break; | ||
| 123 | case CONFIG: | ||
| 124 | debug("wF8 "); | ||
| 125 | if (ps2_host_send(0xF8) == 0xFA) { | ||
| 126 | debug("[ack]\nREADY\n"); | ||
| 127 | state = READY; | ||
| 128 | } | ||
| 129 | break; | ||
| 130 | case READY: | ||
| 131 | switch (code) { | ||
| 132 | case 0x00: | ||
| 133 | break; | ||
| 134 | case 0xF0: | ||
| 135 | state = F0; | ||
| 136 | debug(" "); | ||
| 137 | break; | ||
| 138 | default: // normal key make | ||
| 139 | if (code < 0x88) { | ||
| 140 | matrix_make(code); | ||
| 141 | } else { | ||
| 142 | debug("unexpected scan code at READY: "); debug_hex(code); debug("\n"); | ||
| 143 | } | ||
| 144 | state = READY; | ||
| 145 | debug("\n"); | ||
| 146 | } | ||
| 147 | break; | ||
| 148 | case F0: // Break code | ||
| 149 | switch (code) { | ||
| 150 | case 0x00: | ||
| 151 | break; | ||
| 152 | default: | ||
| 153 | if (code < 0x88) { | ||
| 154 | matrix_break(code); | ||
| 155 | } else { | ||
| 156 | debug("unexpected scan code at F0: "); debug_hex(code); debug("\n"); | ||
| 157 | } | ||
| 158 | state = READY; | ||
| 159 | debug("\n"); | ||
| 160 | } | ||
| 161 | break; | ||
| 162 | } | ||
| 163 | return 1; | ||
| 164 | } | ||
| 165 | |||
| 166 | inline | ||
| 167 | uint8_t matrix_get_row(uint8_t row) | ||
| 168 | { | ||
| 169 | return matrix[row]; | ||
| 170 | } | ||
| 171 | |||
| 172 | inline | ||
| 173 | static void matrix_make(uint8_t code) | ||
| 174 | { | ||
| 175 | if (!matrix_is_on(ROW(code), COL(code))) { | ||
| 176 | matrix[ROW(code)] |= 1<<COL(code); | ||
| 177 | } | ||
| 178 | } | ||
| 179 | |||
| 180 | inline | ||
| 181 | static void matrix_break(uint8_t code) | ||
| 182 | { | ||
| 183 | if (matrix_is_on(ROW(code), COL(code))) { | ||
| 184 | matrix[ROW(code)] &= ~(1<<COL(code)); | ||
| 185 | } | ||
| 186 | } | ||
| 187 | |||
| 188 | bool matrix_is_on(uint8_t row, uint8_t col) | ||
| 189 | { | ||
| 190 | return (matrix_get_row(row) & (1<<col)); | ||
| 191 | } | ||
| 192 | |||
| 193 | void matrix_print(void) | ||
| 194 | { | ||
| 195 | #if (MATRIX_COLS <= 8) | ||
| 196 | print("r/c 01234567\n"); | ||
| 197 | #elif (MATRIX_COLS <= 16) | ||
| 198 | print("r/c 0123456789ABCDEF\n"); | ||
| 199 | #elif (MATRIX_COLS <= 32) | ||
| 200 | print("r/c 0123456789ABCDEF0123456789ABCDEF\n"); | ||
| 201 | #endif | ||
| 202 | |||
| 203 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | ||
| 204 | |||
| 205 | #if (MATRIX_COLS <= 8) | ||
| 206 | xprintf("%02X: %08b%s\n", row, bitrev(matrix_get_row(row)), | ||
| 207 | #elif (MATRIX_COLS <= 16) | ||
| 208 | xprintf("%02X: %016b%s\n", row, bitrev16(matrix_get_row(row)), | ||
| 209 | #elif (MATRIX_COLS <= 32) | ||
| 210 | xprintf("%02X: %032b%s\n", row, bitrev32(matrix_get_row(row)), | ||
| 211 | #endif | ||
| 212 | #ifdef MATRIX_HAS_GHOST | ||
| 213 | matrix_has_ghost_in_row(row) ? " <ghost" : "" | ||
| 214 | #else | ||
| 215 | "" | ||
| 216 | #endif | ||
| 217 | ); | ||
| 218 | } | ||
| 219 | } | ||
| 220 | |||
| 221 | #ifdef MATRIX_HAS_GHOST | ||
| 222 | __attribute__ ((weak)) | ||
| 223 | bool matrix_has_ghost_in_row(uint8_t row) | ||
| 224 | { | ||
| 225 | matrix_row_t matrix_row = matrix_get_row(row); | ||
| 226 | // No ghost exists when less than 2 keys are down on the row | ||
| 227 | if (((matrix_row - 1) & matrix_row) == 0) | ||
| 228 | return false; | ||
| 229 | |||
| 230 | // Ghost occurs when the row shares column line with other row | ||
| 231 | for (uint8_t i=0; i < MATRIX_ROWS; i++) { | ||
| 232 | if (i != row && (matrix_get_row(i) & matrix_row)) | ||
| 233 | return true; | ||
| 234 | } | ||
| 235 | return false; | ||
| 236 | } | ||
| 237 | #endif | ||
diff --git a/keyboards/converter/ibm_terminal/rules.mk b/keyboards/converter/ibm_terminal/rules.mk new file mode 100644 index 000000000..944d1bcec --- /dev/null +++ b/keyboards/converter/ibm_terminal/rules.mk | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Processor frequency. | ||
| 5 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
| 6 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
| 7 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
| 8 | # automatically to create a 32-bit value in your source code. | ||
| 9 | # | ||
| 10 | # This will be an integer division of F_USB below, as it is sourced by | ||
| 11 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
| 12 | # does not *change* the processor frequency - it should merely be updated to | ||
| 13 | # reflect the processor speed set externally so that the code can use accurate | ||
| 14 | # software delays. | ||
| 15 | F_CPU = 16000000 | ||
| 16 | |||
| 17 | # | ||
| 18 | # LUFA specific | ||
| 19 | # | ||
| 20 | # Target architecture (see library "Board Types" documentation). | ||
| 21 | ARCH = AVR8 | ||
| 22 | |||
| 23 | # Input clock frequency. | ||
| 24 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 25 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 26 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 27 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 28 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 29 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 30 | # source code. | ||
| 31 | # | ||
| 32 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 33 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 34 | F_USB = $(F_CPU) | ||
| 35 | |||
| 36 | # Interrupt driven control endpoint task(+60) | ||
| 37 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 38 | |||
| 39 | |||
| 40 | # Boot Section Size in *bytes* | ||
| 41 | # Teensy halfKay 512 | ||
| 42 | # Teensy++ halfKay 1024 | ||
| 43 | # Atmel DFU loader 4096 | ||
| 44 | # LUFA bootloader 4096 | ||
| 45 | # USBaspLoader 2048 | ||
| 46 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
| 47 | |||
| 48 | # Build Options | ||
| 49 | # change to "no" to disable the options, or define them in the Makefile in | ||
| 50 | # the appropriate keymap folder that will get included automatically | ||
| 51 | # | ||
| 52 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | ||
| 53 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | ||
| 54 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | ||
| 55 | CONSOLE_ENABLE ?= no # Console for debug(+400) | ||
| 56 | COMMAND_ENABLE ?= no # Commands for debug and configuration | ||
| 57 | NKRO_ENABLE ?= yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 58 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | ||
| 59 | MIDI_ENABLE ?= no # MIDI controls | ||
| 60 | AUDIO_ENABLE ?= no # Audio output on port C6 | ||
| 61 | UNICODE_ENABLE ?= no # Unicode | ||
| 62 | UNICODEMAP_ENABLE ?= yes | ||
| 63 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 64 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | ||
| 65 | PS2_USE_USART ?= yes | ||
| 66 | API_SYSEX_ENABLE ?= n | ||
| 67 | CUSTOM_MATRIX = yes | ||
| 68 | |||
| 69 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 70 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 71 | |||
| 72 | 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 000000000..e69de29bb --- /dev/null +++ b/keyboards/converter/rules.mk | |||
diff --git a/keyboards/ergodox/config.h b/keyboards/ergodox/config.h index edc60caae..994a8c643 100644 --- a/keyboards/ergodox/config.h +++ b/keyboards/ergodox/config.h | |||
| @@ -1,10 +1,11 @@ | |||
| 1 | #ifndef KEYBOARDS_ERGODOX_CONFIG_H_ | 1 | #ifndef KEYBOARDS_ERGODOX_CONFIG_H_ |
| 2 | #define KEYBOARDS_ERGODOX_CONFIG_H_ | 2 | #define KEYBOARDS_ERGODOX_CONFIG_H_ |
| 3 | 3 | ||
| 4 | #define MOUSEKEY_DELAY 100 | ||
| 5 | #define MOUSEKEY_INTERVAL 20 | 4 | #define MOUSEKEY_INTERVAL 20 |
| 6 | #define MOUSEKEY_MAX_SPEED 3 | 5 | #define MOUSEKEY_DELAY 0 |
| 7 | #define MOUSEKEY_TIME_TO_MAX 10 | 6 | #define MOUSEKEY_TIME_TO_MAX 5 |
| 7 | #define MOUSEKEY_MAX_SPEED 2 | ||
| 8 | #define MOUSEKEY_WHEEL_DELAY 0 | ||
| 8 | 9 | ||
| 9 | #define TAPPING_TOGGLE 1 | 10 | #define TAPPING_TOGGLE 1 |
| 10 | 11 | ||
diff --git a/keyboards/ergodox/ez/config.h b/keyboards/ergodox/ez/config.h index c2750a321..a3dc5bf15 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/>. | |||
| 56 | /* Set 0 if debouncing isn't needed */ | 56 | /* Set 0 if debouncing isn't needed */ |
| 57 | #define DEBOUNCE 5 | 57 | #define DEBOUNCE 5 |
| 58 | 58 | ||
| 59 | #define USB_MAX_POWER_CONSUMPTION 50 | ||
| 60 | |||
| 59 | /* | 61 | /* |
| 60 | * Feature disable options | 62 | * Feature disable options |
| 61 | * These options are also useful to firmware size reduction. | 63 | * 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 2f399bd18..4eff28085 100644 --- a/keyboards/ergodox/keymaps/default/keymap.c +++ b/keyboards/ergodox/keymaps/default/keymap.c | |||
| @@ -7,7 +7,12 @@ | |||
| 7 | #define SYMB 1 // symbols | 7 | #define SYMB 1 // symbols |
| 8 | #define MDIA 2 // media keys | 8 | #define MDIA 2 // media keys |
| 9 | 9 | ||
| 10 | #define EPRM M(1) // Macro 1: Reset EEPROM | 10 | enum custom_keycodes { |
| 11 | PLACEHOLDER = SAFE_RANGE, // can always be here | ||
| 12 | EPRM, | ||
| 13 | VRSN, | ||
| 14 | RGB_SLD | ||
| 15 | }; | ||
| 11 | 16 | ||
| 12 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 13 | /* Keymap 0: Basic layer | 18 | /* Keymap 0: Basic layer |
| @@ -17,7 +22,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 17 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | 22 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| |
| 18 | * | Del | Q | W | E | R | T | L1 | | L1 | Y | U | I | O | P | \ | | 23 | * | Del | Q | W | E | R | T | L1 | | L1 | Y | U | I | O | P | \ | |
| 19 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 24 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| 20 | * | BkSp | A | S | D | F | G |------| |------| H | J | K | L |; / L2|' / Cmd | | 25 | * | BkSp | A | S | D | F | G |------| |------| H |J/Alt | K | L |; / L2|' / Cmd | |
| 21 | * |--------+------+------+------+------+------| Hyper| | Meh |------+------+------+------+------+--------| | 26 | * |--------+------+------+------+------+------| Hyper| | Meh |------+------+------+------+------+--------| |
| 22 | * | LShift |Z/Ctrl| X | C | V | B | | | | N | M | , | . |//Ctrl| RShift | | 27 | * | LShift |Z/Ctrl| X | C | V | B | | | | N | M | , | . |//Ctrl| RShift | |
| 23 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | 28 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' |
| @@ -44,56 +49,56 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 44 | KC_HOME, | 49 | KC_HOME, |
| 45 | KC_SPC,KC_BSPC,KC_END, | 50 | KC_SPC,KC_BSPC,KC_END, |
| 46 | // right hand | 51 | // right hand |
| 47 | KC_RGHT, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, | 52 | KC_RGHT, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, |
| 48 | TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, | 53 | TG(SYMB), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, |
| 49 | KC_H, KC_J, KC_K, KC_L, LT(MDIA, KC_SCLN),GUI_T(KC_QUOT), | 54 | KC_H, ALT_T(KC_J), KC_K, KC_L, LT(MDIA, KC_SCLN),GUI_T(KC_QUOT), |
| 50 | MEH_T(KC_NO),KC_N, KC_M, KC_COMM,KC_DOT, CTL_T(KC_SLSH), KC_RSFT, | 55 | MEH_T(KC_NO),KC_N, KC_M, KC_COMM,KC_DOT, CTL_T(KC_SLSH), KC_RSFT, |
| 51 | KC_UP, KC_DOWN,KC_LBRC,KC_RBRC, KC_FN1, | 56 | KC_UP, KC_DOWN,KC_LBRC,KC_RBRC, KC_FN1, |
| 52 | KC_LALT, CTL_T(KC_ESC), | 57 | KC_LALT, CTL_T(KC_ESC), |
| 53 | KC_PGUP, | 58 | KC_PGUP, |
| 54 | KC_PGDN,KC_TAB, KC_ENT | 59 | KC_PGDN,KC_TAB, KC_ENT |
| 55 | ), | 60 | ), |
| 56 | /* Keymap 1: Symbol Layer | 61 | /* Keymap 1: Symbol Layer |
| 57 | * | 62 | * |
| 58 | * ,--------------------------------------------------. ,--------------------------------------------------. | 63 | * ,---------------------------------------------------. ,--------------------------------------------------. |
| 59 | * |Version | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | | 64 | * |Version | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | |
| 60 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | 65 | * |---------+------+------+------+------+------+------| |------+------+------+------+------+------+--------| |
| 61 | * | | ! | @ | { | } | | | | | | Up | 7 | 8 | 9 | * | F12 | | 66 | * | | ! | @ | { | } | | | | | | Up | 7 | 8 | 9 | * | F12 | |
| 62 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 67 | * |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| 63 | * | | # | $ | ( | ) | ` |------| |------| Down | 4 | 5 | 6 | + | | | 68 | * | | # | $ | ( | ) | ` |------| |------| Down | 4 | 5 | 6 | + | | |
| 64 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 69 | * |---------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| 65 | * | | % | ^ | [ | ] | ~ | | | | & | 1 | 2 | 3 | \ | | | 70 | * | | % | ^ | [ | ] | ~ | | | | & | 1 | 2 | 3 | \ | | |
| 66 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | 71 | * `---------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' |
| 67 | * | EPRM | | | | | | | . | 0 | = | | | 72 | * | EPRM | | | | | | | . | 0 | = | | |
| 68 | * `----------------------------------' `----------------------------------' | 73 | * `-----------------------------------' `----------------------------------' |
| 69 | * ,-------------. ,-------------. | 74 | * ,-------------. ,-------------. |
| 70 | * | | | | | | | 75 | * |Animat| | |Toggle|Solid | |
| 71 | * ,------|------|------| |------+------+------. | 76 | * ,------|------|------| |------+------+------. |
| 72 | * | | | | | | | | | 77 | * |Bright|Bright| | | |Hue- |Hue+ | |
| 73 | * | | |------| |------| | | | 78 | * |ness- |ness+ |------| |------| | | |
| 74 | * | | | | | | | | | 79 | * | | | | | | | | |
| 75 | * `--------------------' `--------------------' | 80 | * `--------------------' `--------------------' |
| 76 | */ | 81 | */ |
| 77 | // SYMBOLS | 82 | // SYMBOLS |
| 78 | [SYMB] = KEYMAP( | 83 | [SYMB] = KEYMAP( |
| 79 | // left hand | 84 | // left hand |
| 80 | M(0), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, | 85 | VRSN, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, |
| 81 | KC_TRNS,KC_EXLM,KC_AT, KC_LCBR,KC_RCBR,KC_PIPE,KC_TRNS, | 86 | KC_TRNS,KC_EXLM,KC_AT, KC_LCBR,KC_RCBR,KC_PIPE,KC_TRNS, |
| 82 | KC_TRNS,KC_HASH,KC_DLR, KC_LPRN,KC_RPRN,KC_GRV, | 87 | KC_TRNS,KC_HASH,KC_DLR, KC_LPRN,KC_RPRN,KC_GRV, |
| 83 | KC_TRNS,KC_PERC,KC_CIRC,KC_LBRC,KC_RBRC,KC_TILD,KC_TRNS, | 88 | KC_TRNS,KC_PERC,KC_CIRC,KC_LBRC,KC_RBRC,KC_TILD,KC_TRNS, |
| 84 | EPRM,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | 89 | EPRM,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 85 | KC_TRNS,KC_TRNS, | 90 | RGB_MOD,KC_TRNS, |
| 86 | KC_TRNS, | 91 | KC_TRNS, |
| 87 | KC_TRNS,KC_TRNS,KC_TRNS, | 92 | RGB_VAD,RGB_VAI,KC_TRNS, |
| 88 | // right hand | 93 | // right hand |
| 89 | KC_TRNS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, | 94 | KC_TRNS, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, |
| 90 | KC_TRNS, KC_UP, KC_7, KC_8, KC_9, KC_ASTR, KC_F12, | 95 | KC_TRNS, KC_UP, KC_7, KC_8, KC_9, KC_ASTR, KC_F12, |
| 91 | KC_DOWN, KC_4, KC_5, KC_6, KC_PLUS, KC_TRNS, | 96 | KC_DOWN, KC_4, KC_5, KC_6, KC_PLUS, KC_TRNS, |
| 92 | KC_TRNS, KC_AMPR, KC_1, KC_2, KC_3, KC_BSLS, KC_TRNS, | 97 | KC_TRNS, KC_AMPR, KC_1, KC_2, KC_3, KC_BSLS, KC_TRNS, |
| 93 | KC_TRNS,KC_DOT, KC_0, KC_EQL, KC_TRNS, | 98 | KC_TRNS,KC_DOT, KC_0, KC_EQL, KC_TRNS, |
| 94 | KC_TRNS, KC_TRNS, | 99 | RGB_TOG, RGB_SLD, |
| 95 | KC_TRNS, | 100 | KC_TRNS, |
| 96 | KC_TRNS, KC_TRNS, KC_TRNS | 101 | KC_TRNS, RGB_HUD, RGB_HUI |
| 97 | ), | 102 | ), |
| 98 | /* Keymap 2: Media and mouse keys | 103 | /* Keymap 2: Media and mouse keys |
| 99 | * | 104 | * |
| @@ -160,6 +165,33 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | |||
| 160 | return MACRO_NONE; | 165 | return MACRO_NONE; |
| 161 | }; | 166 | }; |
| 162 | 167 | ||
| 168 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 169 | switch (keycode) { | ||
| 170 | // dynamically generate these. | ||
| 171 | case EPRM: | ||
| 172 | if (record->event.pressed) { | ||
| 173 | eeconfig_init(); | ||
| 174 | } | ||
| 175 | return false; | ||
| 176 | break; | ||
| 177 | case VRSN: | ||
| 178 | if (record->event.pressed) { | ||
| 179 | SEND_STRING (QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION); | ||
| 180 | } | ||
| 181 | return false; | ||
| 182 | break; | ||
| 183 | case RGB_SLD: | ||
| 184 | if (record->event.pressed) { | ||
| 185 | #ifdef RGBLIGHT_ENABLE | ||
| 186 | rgblight_mode(1); | ||
| 187 | #endif | ||
| 188 | } | ||
| 189 | return false; | ||
| 190 | break; | ||
| 191 | } | ||
| 192 | return true; | ||
| 193 | } | ||
| 194 | |||
| 163 | // Runs just one time when the keyboard initializes. | 195 | // Runs just one time when the keyboard initializes. |
| 164 | void matrix_init_user(void) { | 196 | void matrix_init_user(void) { |
| 165 | 197 | ||
diff --git a/keyboards/ergodox/keymaps/dvorak_programmer/Makefile b/keyboards/ergodox/keymaps/dvorak_programmer/Makefile index 1fd6cb9ff..3c65e25e1 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/Makefile +++ b/keyboards/ergodox/keymaps/dvorak_programmer/Makefile | |||
| @@ -5,4 +5,4 @@ FORCE_NKRO ?= yes | |||
| 5 | DEBUG_ENABLE = no | 5 | DEBUG_ENABLE = no |
| 6 | CONSOLE_ENABLE = no | 6 | CONSOLE_ENABLE = no |
| 7 | TAP_DANCE_ENABLE = yes | 7 | TAP_DANCE_ENABLE = yes |
| 8 | MOUSEKEY_ENABLE = no | 8 | MOUSEKEY_ENABLE = yes |
diff --git a/keyboards/ergodox/keymaps/dvorak_programmer/README.md b/keyboards/ergodox/keymaps/dvorak_programmer/README.md index a4580fe06..3e4a2545b 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/README.md +++ b/keyboards/ergodox/keymaps/dvorak_programmer/README.md | |||
| @@ -11,5 +11,19 @@ Layers | |||
| 11 | * KEY_NAV: arrow key movement with backward/forward word support, and copy/paste. | 11 | * KEY_NAV: arrow key movement with backward/forward word support, and copy/paste. |
| 12 | * KEY_SEL: same as above, but every movement shift-selects. | 12 | * KEY_SEL: same as above, but every movement shift-selects. |
| 13 | * NUMBER: keypad layer. | 13 | * NUMBER: keypad layer. |
| 14 | * SYMBOL: all the symbols as well as brackets at the bottom. | 14 | * SYMBOL: all the symbols. |
| 15 | * BRACKET: special brackets-only layer for programming | ||
| 15 | * SHORTCUTS: sends Hyper keys for Autohotkey to interpret. I use this to switch between specific apps. | 16 | * SHORTCUTS: sends Hyper keys for Autohotkey to interpret. I use this to switch between specific apps. |
| 17 | * MOUSE: use mouse keys | ||
| 18 | |||
| 19 | Updates | ||
| 20 | ------- | ||
| 21 | |||
| 22 | 2016/12/10: | ||
| 23 | * toggle for brackets layer is now on left thumb cluster. | ||
| 24 | |||
| 25 | 2016/11/05: | ||
| 26 | * removed brackets anywhere but in brackets layer | ||
| 27 | * added mouse layer back in | ||
| 28 | * put semicolon-newline and end-newline on symbol layer | ||
| 29 | * 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 5100115a6..f3d02f688 100644 --- a/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c +++ b/keyboards/ergodox/keymaps/dvorak_programmer/keymap.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #define SYMBOL 6 | 13 | #define SYMBOL 6 |
| 14 | #define BRACKETS 7 | 14 | #define BRACKETS 7 |
| 15 | #define SHORTCUTS 8 | 15 | #define SHORTCUTS 8 |
| 16 | #define MOUSE 9 | ||
| 16 | 17 | ||
| 17 | // macros | 18 | // macros |
| 18 | #define MC_COPY_LINE 0 | 19 | #define MC_COPY_LINE 0 |
| @@ -57,13 +58,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 57 | [BASE] = KEYMAP( // layer 0 : default | 58 | [BASE] = KEYMAP( // layer 0 : default |
| 58 | // left hand | 59 | // left hand |
| 59 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, | 60 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, |
| 60 | LT(BRACKETS,KC_TAB), KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, MO(KEY_SEL), | 61 | LT(MOUSE,KC_TAB), KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, MO(KEY_SEL), |
| 61 | MO(SHELL_NAV), KC_A, KC_O, KC_E, KC_U, KC_I, | 62 | MO(SHELL_NAV), KC_A, KC_O, KC_E, KC_U, KC_I, |
| 62 | KC_FN3, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, MO(KEY_NAV), | 63 | KC_FN3, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, MO(KEY_NAV), |
| 63 | OSL(SHORTCUTS),KC_FN4, KC_FN5,OSL(SYMBOL),MO(NUMBER), | 64 | OSL(SHORTCUTS),KC_FN4, KC_FN5,OSL(SYMBOL),MO(NUMBER), |
| 64 | // thumb cluster | 65 | // thumb cluster |
| 65 | RCTL(KC_F), RCTL(KC_S), | 66 | MO(BRACKETS), RCTL(KC_S), |
| 66 | RCTL(KC_DEL), | 67 | RCTL(KC_DEL), |
| 67 | KC_BSPC,RCTL(KC_BSPC),KC_DEL, | 68 | KC_BSPC,RCTL(KC_BSPC),KC_DEL, |
| 68 | // right hand | 69 | // right hand |
| 69 | KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_BSLS, | 70 | 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] = { | |||
| 71 | KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, | 72 | KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, |
| 72 | KC_PGDN, KC_B, KC_M, KC_W, KC_V, KC_Z, TD(TD_SHIFT_CAPSLOCK), | 73 | KC_PGDN, KC_B, KC_M, KC_W, KC_V, KC_Z, TD(TD_SHIFT_CAPSLOCK), |
| 73 | // lower keys - browser tab control | 74 | // lower keys - browser tab control |
| 74 | RSFT(RCTL(KC_TAB)), RCTL(KC_TAB), RCTL(KC_T), RCTL(KC_K), RCTL(KC_W), | 75 | RSFT(RCTL(KC_TAB)), RCTL(KC_TAB), RCTL(KC_T), LALT(KC_LEFT), RCTL(KC_W), |
| 75 | // thumb cluster | 76 | // thumb cluster |
| 76 | M(SEMICOLON_NEWLINE), M(END_NEWLINE), | 77 | KC_HOME,KC_END, |
| 77 | KC_UP, | 78 | KC_UP, |
| 78 | KC_DOWN,KC_ENT, KC_SPC | 79 | KC_DOWN,KC_ENT, KC_SPC |
| 79 | ), | 80 | ), |
| @@ -96,7 +97,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 96 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | 97 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
| 97 | RCTL(KC_L), RCTL(KC_W), KC_HOME, KC_UP, KC_END, LALT(KC_D), RCTL(KC_R), | 98 | RCTL(KC_L), RCTL(KC_W), KC_HOME, KC_UP, KC_END, LALT(KC_D), RCTL(KC_R), |
| 98 | LALT(KC_B), KC_LEFT, KC_DOWN, KC_RIGHT, LALT(KC_F), LALT(KC_DOT), | 99 | LALT(KC_B), KC_LEFT, KC_DOWN, KC_RIGHT, LALT(KC_F), LALT(KC_DOT), |
| 99 | 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), | 100 | 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), |
| 100 | // bottom row | 101 | // bottom row |
| 101 | M(SCREEN_TAB_LEFT), M(SCREEN_TAB_RIGHT), M(SCREEN_NEW_TAB), KC_TRNS, KC_TRNS, | 102 | M(SCREEN_TAB_LEFT), M(SCREEN_TAB_RIGHT), M(SCREEN_NEW_TAB), KC_TRNS, KC_TRNS, |
| 102 | // thumb cluster | 103 | // thumb cluster |
| @@ -187,21 +188,21 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 187 | 188 | ||
| 188 | [SYMBOL] = KEYMAP( | 189 | [SYMBOL] = KEYMAP( |
| 189 | // left hand | 190 | // left hand |
| 190 | KC_NO,KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, | 191 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 191 | KC_TRNS,KC_TRNS, M(OPEN_CLOSE_PAREN), KC_LPRN, KC_RPRN, KC_TRNS, KC_TRNS, | 192 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 192 | KC_TRNS,KC_TRNS, M(OPEN_CLOSE_BRACKET), KC_LBRC, KC_RBRC, M(OPEN_CLOSE_DOUBLE_QUOTE), | 193 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 193 | KC_TRNS,M(SEMICOLON_NEWLINE),M(OPEN_CLOSE_CURLY), KC_LCBR, KC_RCBR, M(OPEN_CLOSE_SINGLE_QUOTE),KC_TRNS, | 194 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 194 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | 195 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 195 | KC_TRNS,KC_TRNS, | 196 | KC_TRNS,KC_TRNS, |
| 196 | KC_TRNS, | 197 | KC_TRNS, |
| 197 | KC_TRNS,KC_TRNS,KC_TRNS, | 198 | KC_TRNS,KC_TRNS,KC_TRNS, |
| 198 | // right hand | 199 | // right hand |
| 199 | KC_LPRN, KC_RPRN, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, KC_TRNS, | 200 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
| 200 | KC_TRNS, KC_PLUS, KC_AMPR, KC_ASTR, KC_GRAVE,KC_TILD, KC_TRNS, | 201 | KC_TRNS, KC_PLUS, KC_AMPR, KC_ASTR, KC_GRAVE,KC_TILD, KC_TRNS, |
| 201 | KC_MINS, KC_DLR, KC_PERC, KC_CIRC, KC_PIPE, KC_TRNS, | 202 | KC_MINS, KC_DLR, KC_PERC, KC_CIRC, KC_PIPE, KC_TRNS, |
| 202 | KC_TRNS, KC_EQUAL,KC_EXLM, KC_AT, KC_HASH, KC_TRNS, KC_TRNS, | 203 | KC_TRNS, KC_EQUAL,KC_EXLM, KC_AT, KC_HASH, KC_TRNS, KC_TRNS, |
| 203 | KC_LBRC, KC_RBRC, TD(TD_BRK_LEFT), TD(TD_BRK_RIGHT), KC_TRNS, | 204 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
| 204 | KC_TRNS, KC_TRNS, | 205 | M(SEMICOLON_NEWLINE), M(END_NEWLINE), |
| 205 | KC_TRNS, | 206 | KC_TRNS, |
| 206 | KC_TRNS, KC_TRNS, KC_TRNS | 207 | KC_TRNS, KC_TRNS, KC_TRNS |
| 207 | ), | 208 | ), |
| @@ -229,26 +230,46 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 229 | 230 | ||
| 230 | [SHORTCUTS] = KEYMAP( | 231 | [SHORTCUTS] = KEYMAP( |
| 231 | // left hand | 232 | // left hand |
| 232 | KC_NO, HYPR(KC_F1), HYPR(KC_F2), HYPR(KC_F3), HYPR(KC_F4), HYPR(KC_F5), HYPR(KC_F6), | 233 | KC_NO, MEH(KC_F1), MEH(KC_F2), MEH(KC_F3), MEH(KC_F4), MEH(KC_F5), MEH(KC_F6), |
| 233 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | 234 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 234 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | 235 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 235 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | 236 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 236 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | 237 | KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, |
| 237 | KC_TRNS,KC_TRNS, | 238 | MEH(KC_0),MEH(KC_1), |
| 238 | KC_TRNS, | 239 | MEH(KC_2), |
| 239 | KC_TRNS,KC_TRNS,KC_TRNS, | 240 | MEH(KC_3),MEH(KC_4),MEH(KC_5), |
| 240 | // right hand | 241 | // right hand |
| 241 | HYPR(KC_F7), HYPR(KC_F8), HYPR(KC_F9), HYPR(KC_F10), HYPR(KC_F11), HYPR(KC_F12), M(SWITCH_NDS), | 242 | MEH(KC_F7), MEH(KC_F8), MEH(KC_F9), MEH(KC_F10), MEH(KC_F11), MEH(KC_F12), M(SWITCH_NDS), |
| 242 | KC_TRNS, HYPR(KC_A), HYPR(KC_B), HYPR(KC_C), HYPR(KC_D), HYPR(KC_E), HYPR(KC_F), | 243 | KC_TRNS, MEH(KC_A), MEH(KC_B), MEH(KC_C), MEH(KC_D), MEH(KC_E), MEH(KC_F), |
| 243 | HYPR(KC_G), HYPR(KC_H), HYPR(KC_I), HYPR(KC_J), HYPR(KC_K), HYPR(KC_L), | 244 | MEH(KC_G), MEH(KC_H), MEH(KC_I), MEH(KC_J), MEH(KC_K), MEH(KC_L), |
| 244 | KC_TRNS, HYPR(KC_M), HYPR(KC_N), HYPR(KC_O), HYPR(KC_P), HYPR(KC_Q), HYPR(KC_R), | 245 | KC_TRNS, MEH(KC_M), MEH(KC_N), MEH(KC_O), MEH(KC_P), MEH(KC_Q), MEH(KC_R), |
| 245 | LALT(KC_LEFT),LALT(KC_RIGHT),KC_F5, LCTL(LGUI(KC_LEFT)), LCTL(LGUI(KC_RIGHT)), | 246 | MEH(KC_S), MEH(KC_T), MEH(KC_U), MEH(KC_V), MEH(KC_X), |
| 247 | MEH(KC_6), MEH(KC_7), | ||
| 248 | MEH(KC_8), | ||
| 249 | MEH(KC_9), MEH(KC_Y), MEH(KC_Z) | ||
| 250 | ), | ||
| 251 | |||
| 252 | |||
| 253 | [MOUSE] = KEYMAP( | ||
| 254 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 255 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 256 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 257 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 258 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 259 | KC_TRNS, KC_TRNS, | ||
| 260 | KC_TRNS, | ||
| 261 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 262 | // right hand | ||
| 263 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 264 | KC_TRNS, KC_TRNS, KC_TRNS, KC_MS_U, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 265 | KC_TRNS, KC_MS_L, KC_MS_D, KC_MS_R, KC_TRNS, KC_TRNS, | ||
| 266 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 267 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 246 | KC_TRNS, KC_TRNS, | 268 | KC_TRNS, KC_TRNS, |
| 247 | KC_TRNS, | 269 | KC_TRNS, |
| 248 | KC_TRNS, KC_TRNS, KC_TRNS | 270 | KC_TRNS, KC_BTN1, KC_BTN2 |
| 249 | ), | 271 | ), |
| 250 | 272 | ||
| 251 | |||
| 252 | }; | 273 | }; |
| 253 | 274 | ||
| 254 | 275 | ||
diff --git a/keyboards/ergodox/keymaps/erez_experimental/keymap.c b/keyboards/ergodox/keymaps/erez_experimental/keymap.c index 2963c40e3..13b8240ce 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] = { | |||
| 73 | * ,-------------. ,-------------. | 73 | * ,-------------. ,-------------. |
| 74 | * | | | |TOG | | 74 | * | | | |TOG | |
| 75 | * ,------|------|------| |------+------+------. | 75 | * ,------|------|------| |------+------+------. |
| 76 | * |VAI |VAD |HUI | |SAI |TOG |MOD | | 76 | * |VAI |VAD |HUI | |SAI | |MOD | |
| 77 | * | | |------| |------| | | | 77 | * | | |------| |------| | | |
| 78 | * | | |HUD | |SAD | | | | 78 | * | | |HUD | |SAD | | | |
| 79 | * `--------------------' `--------------------' | 79 | * `--------------------' `--------------------' |
diff --git a/keyboards/ergodox/keymaps/pvinis/keymap.c b/keyboards/ergodox/keymaps/pvinis/keymap.c index df906201a..87ad70c91 100644 --- a/keyboards/ergodox/keymaps/pvinis/keymap.c +++ b/keyboards/ergodox/keymaps/pvinis/keymap.c | |||
| @@ -13,20 +13,16 @@ enum { | |||
| 13 | QWERTY, | 13 | QWERTY, |
| 14 | CARPALX, | 14 | CARPALX, |
| 15 | SYSCTL, | 15 | SYSCTL, |
| 16 | MOUSE, | ||
| 16 | }; | 17 | }; |
| 17 | 18 | ||
| 18 | // extra keys | 19 | // extra keys |
| 19 | enum { | 20 | enum { |
| 20 | NONE = 0, | 21 | NONE = 0, |
| 21 | 22 | ||
| 22 | // mouse | ||
| 23 | MS_UL, // up left | ||
| 24 | MS_UR, // up right | ||
| 25 | MS_DL, // down left | ||
| 26 | MS_DR, // down right | ||
| 27 | |||
| 28 | // tap dance | 23 | // tap dance |
| 29 | TD_FLSH, // flash keyboard | 24 | TD_FLSH, // flash keyboard |
| 25 | TD_LAYR, // SYSCTL and MOUSE layer switch | ||
| 30 | }; | 26 | }; |
| 31 | 27 | ||
| 32 | // application selection | 28 | // application selection |
| @@ -52,7 +48,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 52 | * | | | | | | | | | | | | | 48 | * | | | | | | | | | | | | |
| 53 | * `----------------------------------' `----------------------------------' | 49 | * `----------------------------------' `----------------------------------' |
| 54 | * ,-------------. ,-------------. | 50 | * ,-------------. ,-------------. |
| 55 | * |BEGIN |QWERTY| |SYSCTL| | | 51 | * |BEGIN |QWERTY| | | | |
| 56 | * ,------|------|------| |------+--------+------. | 52 | * ,------|------|------| |------+--------+------. |
| 57 | * | | |CARPAL| |Slack | | | | 53 | * | | |CARPAL| |Slack | | | |
| 58 | * |Backsp|LShift|------| |------| Enter |Space | | 54 | * |Backsp|LShift|------| |------| Enter |Space | |
| @@ -66,9 +62,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 66 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 62 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 67 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 63 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 68 | 64 | ||
| 69 | ,TG(BEGIN) ,TG(QWERTY) | 65 | ,TG(BEGIN) ,TD(TD_LAYR) |
| 70 | ,TG(CARPALX) | 66 | ,TG(MOUSE) |
| 71 | ,KC_BSPC ,KC_LSFT ,TG(SYSCTL) | 67 | ,KC_BSPC ,KC_LSFT ,TD(TD_LAYR) |
| 72 | 68 | ||
| 73 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 69 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 74 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 70 | ,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] = { | |||
| 85 | * a beginner's keymap i currently use. | 81 | * a beginner's keymap i currently use. |
| 86 | * | 82 | * |
| 87 | * ,--------------------------------------------------. ,--------------------------------------------------. | 83 | * ,--------------------------------------------------. ,--------------------------------------------------. |
| 88 | * | | 1 | 2 | 3 | 4 | 5 | 6 | | 6 | 7 | 8 | 9 | 0 | - | = | | 84 | * | | 1 | 2 | 3 | 4 | 5 | opt | | 6 | 7 | 8 | 9 | 0 | - | = | |
| 89 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | 85 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| |
| 90 | * | Tab | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | \ | | 86 | * | Tab | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | \ | |
| 91 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 87 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| @@ -104,7 +100,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 104 | * `--------------------' `----------------------' | 100 | * `--------------------' `----------------------' |
| 105 | */ | 101 | */ |
| 106 | [BEGIN] = KEYMAP( | 102 | [BEGIN] = KEYMAP( |
| 107 | KC_TRNS ,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,KC_6 | 103 | KC_TRNS ,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,KC_LALT |
| 108 | ,KC_TAB ,KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,KC_LBRC | 104 | ,KC_TAB ,KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,KC_LBRC |
| 109 | ,CTL_T(KC_ESC) ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G | 105 | ,CTL_T(KC_ESC) ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G |
| 110 | ,KC_LSFT ,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,KC_LPRN | 106 | ,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] = { | |||
| 213 | ,KC_TRNS ,KC_TRNS ,KC_TRNS | 209 | ,KC_TRNS ,KC_TRNS ,KC_TRNS |
| 214 | ), | 210 | ), |
| 215 | 211 | ||
| 216 | |||
| 217 | /* SYSCTL | 212 | /* SYSCTL |
| 218 | * a keymap to control my system. | 213 | * a keymap to control my system. |
| 219 | * | 214 | * |
| 215 | * ,--------------------------------------------------. ,------------------------------------------------------. | ||
| 216 | * | ^ | | | | | | | | | | | | | | | | ||
| 217 | * |--------+------+------+------+------+-------------| |------+------+------+----------+------+------+--------| | ||
| 218 | * | | | | | | | | | | Mute | Home | Up | End | | | | ||
| 219 | * |--------+------+------+------+------+------| | | |------+------+----------+------+------+--------| | ||
| 220 | * | | | | | | |------| |------|VolUp | Left | Down |Right | | Lock | | ||
| 221 | * |--------+------+------+------+------+------| | | |------+------+----------+------+------+--------| | ||
| 222 | * | | | | | | | | | |VolDn | Prev |Play/Pause| Next | | Sleep | | ||
| 223 | * `--------+------+------+------+------+-------------' `-------------+------+----------+------+------+--------' | ||
| 224 | * | | | | | | | | | | | Power| | ||
| 225 | * `----------------------------------' `--------------------------------------' | ||
| 226 | * ,-------------. ,-------------. | ||
| 227 | * | | | | | | | ||
| 228 | * ,------|------|------| |------+------+------. | ||
| 229 | * | | | | | | | | | ||
| 230 | * | | |------| |------| | | | ||
| 231 | * | | | ^ | | | | | | ||
| 232 | * `--------------------' `--------------------' | ||
| 233 | */ | ||
| 234 | [SYSCTL] = KEYMAP( | ||
| 235 | KC_TRNS ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 236 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 237 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 238 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 239 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 240 | |||
| 241 | ,KC_NO ,KC_NO | ||
| 242 | ,KC_NO | ||
| 243 | ,KC_NO ,KC_NO ,KC_TRNS | ||
| 244 | |||
| 245 | /*,KC_POP /// */,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | ||
| 246 | /* /// ,KC_PTRN*/,KC_NO ,KC_MUTE ,KC_HOME ,KC_UP ,KC_END ,KC_NO ,KC_NO | ||
| 247 | ,KC_VOLU ,KC_LEFT ,KC_DOWN ,KC_RGHT ,KC_NO ,LCTL(LSFT(KC_PWR)) | ||
| 248 | ,KC_NO ,KC_VOLD ,KC_MPRV ,KC_MPLY ,KC_MNXT ,KC_NO ,KC_SLEP | ||
| 249 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_PWR | ||
| 250 | |||
| 251 | ,KC_NO ,KC_NO | ||
| 252 | ,KC_NO | ||
| 253 | ,KC_NO ,KC_NO ,KC_NO | ||
| 254 | ), | ||
| 255 | |||
| 256 | /* MOUSE | ||
| 257 | * a keymap to control my system. | ||
| 258 | * | ||
| 220 | * ,--------------------------------------------------. ,--------------------------------------------------. | 259 | * ,--------------------------------------------------. ,--------------------------------------------------. |
| 221 | * | | | | | | | | | | | | Mute |VolDn |VolUp | | | 260 | * | ^ | | | | | | | | | | | | | | | |
| 222 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| | 261 | * |--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------| |
| 223 | * | | | | | | | | | | |MsUpL | MsUp |MsUpR | | | | 262 | * | | | | | | | | | | | | MsUp | | | | |
| 224 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 263 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| 225 | * | | | | | | |------| |------| |MsLeft| MsDn |MsRght| | Lock | | 264 | * | | | | | | |------| |------| |MsLeft| MsDn |MsRght| | | |
| 226 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| | 265 | * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| |
| 227 | * | | | | | | | | | | |MsDnL | MsDn | | | Sleep | | 266 | * | | | | | | | | | | | | | | | | |
| 228 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' | 267 | * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' |
| 229 | * | | | | | | | | | | | Power| | 268 | * | | | | | | | | | | | | |
| 230 | * `----------------------------------' `----------------------------------' | 269 | * `----------------------------------' `----------------------------------' |
| 231 | * ,-------------. ,-------------. | 270 | * ,-------------. ,-------------. |
| 232 | * | | | | |MidClk| | 271 | * | | | | |MidClk| |
| 233 | * ,------|------|------| |------+------+------. | 272 | * ,------|------|------| |------+------+------. |
| 234 | * | | | | | |Left |Right | | 273 | * | | | | | |Left |Right | |
| 235 | * | | |------| |------| Click| Click| | 274 | * | | |------| |------| Click| Click| |
| 236 | * | | | | | | | | | 275 | * | | | ^ | | | | | |
| 237 | * `--------------------' `--------------------' | 276 | * `--------------------' `--------------------' |
| 238 | */ | 277 | */ |
| 239 | [SYSCTL] = KEYMAP( | 278 | [MOUSE] = KEYMAP( |
| 240 | KC_TRNS ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 279 | KC_TRNS ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 241 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 280 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 242 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 281 | ,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] = { | |||
| 245 | 284 | ||
| 246 | ,KC_NO ,KC_NO | 285 | ,KC_NO ,KC_NO |
| 247 | ,KC_NO | 286 | ,KC_NO |
| 248 | ,KC_NO ,KC_NO ,KC_NO | 287 | ,KC_NO ,KC_NO ,KC_TRNS |
| 249 | 288 | ||
| 250 | /*,KC_POP*/,KC_NO ,KC_NO ,KC_NO ,KC_MUTE ,KC_VOLD ,KC_VOLU ,KC_NO | 289 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 251 | /*,KC_PTRN*/,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO | 290 | ,KC_NO ,KC_NO ,KC_NO ,KC_MS_U ,KC_NO ,KC_NO ,KC_NO |
| 252 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,LCTL(LSFT(KC_PWR)) | 291 | ,KC_NO ,KC_MS_L ,KC_MS_D ,KC_MS_R ,KC_NO ,KC_NO |
| 253 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_SLEP | 292 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 254 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_PWR | 293 | ,KC_NO ,KC_NO ,KC_NO ,KC_NO ,KC_NO |
| 255 | 294 | ||
| 256 | ,KC_NO ,KC_NO | 295 | ,KC_NO ,KC_NO |
| 257 | ,KC_NO | 296 | ,KC_NO |
| @@ -341,48 +380,29 @@ void matrix_init_user() { | |||
| 341 | ergodox_led_all_off(); | 380 | ergodox_led_all_off(); |
| 342 | } | 381 | } |
| 343 | 382 | ||
| 344 | // extra keys | 383 | // light up leds based on the layer |
| 345 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { | 384 | void matrix_scan_user(void) { |
| 346 | switch (id) { | 385 | uint8_t layer = biton32(layer_state); |
| 347 | 386 | ||
| 348 | // mouse | 387 | switch(layer) { |
| 349 | case MS_UL: | 388 | case SYSCTL: |
| 350 | if (record->event.pressed) { | 389 | ergodox_right_led_3_on(); |
| 351 | mousekey_on(KC_MS_UP); | ||
| 352 | mousekey_on(KC_MS_LEFT); | ||
| 353 | } else { | ||
| 354 | mousekey_off(KC_MS_UP); | ||
| 355 | mousekey_off(KC_MS_LEFT); | ||
| 356 | } | ||
| 357 | break; | ||
| 358 | case MS_UR: | ||
| 359 | if (record->event.pressed) { | ||
| 360 | mousekey_on(KC_MS_UP); | ||
| 361 | mousekey_on(KC_MS_RIGHT); | ||
| 362 | } else { | ||
| 363 | mousekey_off(KC_MS_UP); | ||
| 364 | mousekey_off(KC_MS_RIGHT); | ||
| 365 | } | ||
| 366 | break; | 390 | break; |
| 367 | case MS_DL: | 391 | case MOUSE: |
| 368 | if (record->event.pressed) { | 392 | ergodox_right_led_2_on(); |
| 369 | mousekey_on(KC_MS_DOWN); | ||
| 370 | mousekey_on(KC_MS_LEFT); | ||
| 371 | } else { | ||
| 372 | mousekey_off(KC_MS_DOWN); | ||
| 373 | mousekey_off(KC_MS_LEFT); | ||
| 374 | } | ||
| 375 | break; | 393 | break; |
| 376 | case MS_DR: | 394 | default: |
| 377 | if (record->event.pressed) { | 395 | ergodox_right_led_1_off(); |
| 378 | mousekey_on(KC_MS_DOWN); | 396 | ergodox_right_led_2_off(); |
| 379 | mousekey_on(KC_MS_RIGHT); | 397 | ergodox_right_led_3_off(); |
| 380 | } else { | ||
| 381 | mousekey_off(KC_MS_DOWN); | ||
| 382 | mousekey_off(KC_MS_RIGHT); | ||
| 383 | } | ||
| 384 | break; | 398 | break; |
| 385 | } | 399 | } |
| 400 | } | ||
| 401 | |||
| 402 | // extra keys | ||
| 403 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { | ||
| 404 | switch (id) { | ||
| 405 | } | ||
| 386 | return MACRO_NONE; | 406 | return MACRO_NONE; |
| 387 | } | 407 | } |
| 388 | 408 | ||
| @@ -425,6 +445,31 @@ void flash_dance_reset(qk_tap_dance_state_t *state, void *user_data) { | |||
| 425 | ergodox_right_led_3_off(); | 445 | ergodox_right_led_3_off(); |
| 426 | } | 446 | } |
| 427 | 447 | ||
| 448 | // SYSCTL on first tap, MOUSE ON second tap | ||
| 449 | void layers_dance_finished(qk_tap_dance_state_t *state, void *user_data) { | ||
| 450 | uint8_t layer = biton32(layer_state); | ||
| 451 | |||
| 452 | switch(state->count) { | ||
| 453 | case 1: | ||
| 454 | switch(layer) { | ||
| 455 | case SYSCTL: | ||
| 456 | layer_off(SYSCTL); | ||
| 457 | break; | ||
| 458 | case MOUSE: | ||
| 459 | layer_off(MOUSE); | ||
| 460 | break; | ||
| 461 | default: | ||
| 462 | layer_on(SYSCTL); | ||
| 463 | break; | ||
| 464 | } | ||
| 465 | break; | ||
| 466 | case 2: | ||
| 467 | layer_on(MOUSE); | ||
| 468 | break; | ||
| 469 | } | ||
| 470 | } | ||
| 471 | |||
| 428 | qk_tap_dance_action_t tap_dance_actions[] = { | 472 | qk_tap_dance_action_t tap_dance_actions[] = { |
| 429 | [TD_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED( flash_each_tap, flash_dance_finished, flash_dance_reset ), | 473 | [TD_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED( flash_each_tap, flash_dance_finished, flash_dance_reset ), |
| 474 | [TD_LAYR] = ACTION_TAP_DANCE_FN_ADVANCED( NULL, layers_dance_finished, NULL ), | ||
| 430 | }; | 475 | }; |
diff --git a/keyboards/handwired/pilcrow/Makefile b/keyboards/handwired/pilcrow/Makefile new file mode 100644 index 000000000..191c6bb66 --- /dev/null +++ b/keyboards/handwired/pilcrow/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | ifndef MAKEFILE_INCLUDED | ||
| 2 | include ../../../Makefile | ||
| 3 | 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 000000000..d63eeba36 --- /dev/null +++ b/keyboards/handwired/pilcrow/config.h | |||
| @@ -0,0 +1,162 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef CONFIG_H | ||
| 19 | #define CONFIG_H | ||
| 20 | |||
| 21 | #include "config_common.h" | ||
| 22 | |||
| 23 | /* USB Device descriptor parameter */ | ||
| 24 | #define VENDOR_ID 0xFEED | ||
| 25 | #define PRODUCT_ID 0x6060 | ||
| 26 | #define DEVICE_VER 0x0001 | ||
| 27 | #define MANUFACTURER You | ||
| 28 | #define PRODUCT pilcrow | ||
| 29 | #define DESCRIPTION A custom keyboard | ||
| 30 | |||
| 31 | /* key matrix size */ | ||
| 32 | #define MATRIX_ROWS 4 | ||
| 33 | #define MATRIX_COLS 10 | ||
| 34 | |||
| 35 | /* | ||
| 36 | * Keyboard Matrix Assignments | ||
| 37 | * | ||
| 38 | * Change this to how you wired your keyboard | ||
| 39 | * COLS: AVR pins used for columns, left to right | ||
| 40 | * ROWS: AVR pins used for rows, top to bottom | ||
| 41 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 42 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 43 | * | ||
| 44 | */ | ||
| 45 | #define MATRIX_ROW_PINS { B4, F7, B1, B3 } | ||
| 46 | #define MATRIX_COL_PINS { D4, C6, D7, E6, F5, F6, B6, B2, F4, B5} | ||
| 47 | #define UNUSED_PINS | ||
| 48 | |||
| 49 | /* COL2ROW or ROW2COL */ | ||
| 50 | #define DIODE_DIRECTION COL2ROW | ||
| 51 | |||
| 52 | // #define BACKLIGHT_PIN B7 | ||
| 53 | // #define BACKLIGHT_BREATHING | ||
| 54 | // #define BACKLIGHT_LEVELS 3 | ||
| 55 | |||
| 56 | |||
| 57 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 58 | #define DEBOUNCING_DELAY 5 | ||
| 59 | |||
| 60 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 61 | //#define MATRIX_HAS_GHOST | ||
| 62 | |||
| 63 | /* number of backlight levels */ | ||
| 64 | |||
| 65 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 66 | #define LOCKING_SUPPORT_ENABLE | ||
| 67 | /* Locking resynchronize hack */ | ||
| 68 | #define LOCKING_RESYNC_ENABLE | ||
| 69 | |||
| 70 | /* | ||
| 71 | * Force NKRO | ||
| 72 | * | ||
| 73 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 74 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 75 | * makefile for this to work.) | ||
| 76 | * | ||
| 77 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 78 | * until the next keyboard reset. | ||
| 79 | * | ||
| 80 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 81 | * fully operational during normal computer usage. | ||
| 82 | * | ||
| 83 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 84 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 85 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 86 | * power-up. | ||
| 87 | * | ||
| 88 | */ | ||
| 89 | //#define FORCE_NKRO | ||
| 90 | |||
| 91 | /* | ||
| 92 | * Magic Key Options | ||
| 93 | * | ||
| 94 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 95 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 96 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 97 | * | ||
| 98 | * The options below allow the magic key functionality to be changed. This is | ||
| 99 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 100 | * | ||
| 101 | */ | ||
| 102 | |||
| 103 | /* key combination for magic key command */ | ||
| 104 | #define IS_COMMAND() ( \ | ||
| 105 | keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ | ||
| 106 | ) | ||
| 107 | |||
| 108 | /* control how magic key switches layers */ | ||
| 109 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 110 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 111 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 112 | |||
| 113 | /* override magic key keymap */ | ||
| 114 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 115 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 116 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 117 | //#define MAGIC_KEY_HELP1 H | ||
| 118 | //#define MAGIC_KEY_HELP2 SLASH | ||
| 119 | //#define MAGIC_KEY_DEBUG D | ||
| 120 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 121 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 122 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 123 | //#define MAGIC_KEY_VERSION V | ||
| 124 | //#define MAGIC_KEY_STATUS S | ||
| 125 | //#define MAGIC_KEY_CONSOLE C | ||
| 126 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
| 127 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
| 128 | //#define MAGIC_KEY_LAYER0 0 | ||
| 129 | //#define MAGIC_KEY_LAYER1 1 | ||
| 130 | //#define MAGIC_KEY_LAYER2 2 | ||
| 131 | //#define MAGIC_KEY_LAYER3 3 | ||
| 132 | //#define MAGIC_KEY_LAYER4 4 | ||
| 133 | //#define MAGIC_KEY_LAYER5 5 | ||
| 134 | //#define MAGIC_KEY_LAYER6 6 | ||
| 135 | //#define MAGIC_KEY_LAYER7 7 | ||
| 136 | //#define MAGIC_KEY_LAYER8 8 | ||
| 137 | //#define MAGIC_KEY_LAYER9 9 | ||
| 138 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
| 139 | //#define MAGIC_KEY_LOCK CAPS | ||
| 140 | //#define MAGIC_KEY_EEPROM E | ||
| 141 | //#define MAGIC_KEY_NKRO N | ||
| 142 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 143 | |||
| 144 | /* | ||
| 145 | * Feature disable options | ||
| 146 | * These options are also useful to firmware size reduction. | ||
| 147 | */ | ||
| 148 | |||
| 149 | /* disable debug print */ | ||
| 150 | //#define NO_DEBUG | ||
| 151 | |||
| 152 | /* disable print */ | ||
| 153 | //#define NO_PRINT | ||
| 154 | |||
| 155 | /* disable action features */ | ||
| 156 | //#define NO_ACTION_LAYER | ||
| 157 | //#define NO_ACTION_TAPPING | ||
| 158 | //#define NO_ACTION_ONESHOT | ||
| 159 | //#define NO_ACTION_MACRO | ||
| 160 | //#define NO_ACTION_FUNCTION | ||
| 161 | |||
| 162 | #endif | ||
diff --git a/keyboards/maxipad/keymaps/default/Makefile b/keyboards/handwired/pilcrow/keymaps/default/Makefile index f4671a9d1..f4671a9d1 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 df06a2620..df06a2620 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 000000000..e382e4c6a --- /dev/null +++ b/keyboards/handwired/pilcrow/keymaps/default/keymap.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | #include "pilcrow.h" | ||
| 2 | #define _______ KC_TRNS | ||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | [0] = KEYMAP( \ | ||
| 5 | KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, \ | ||
| 6 | KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, \ | ||
| 7 | KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, \ | ||
| 8 | KC_LCTL, KC_LALT, KC_LGUI, MO(1), KC_SPC, MT(MOD_LSFT, KC_SPC), MO(2), MO(3), KC_DEL, KC_ESC \ | ||
| 9 | ), | ||
| 10 | |||
| 11 | /* Colemak | ||
| 12 | * ,-----------------------------------------------------------------------------------. | ||
| 13 | * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp | | ||
| 14 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 15 | * | Esc | A | R | S | T | D | H | N | E | I | O | " | | ||
| 16 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 17 | * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter | | ||
| 18 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 19 | * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right | | ||
| 20 | * `-----------------------------------------------------------------------------------' | ||
| 21 | */ | ||
| 22 | [1] = KEYMAP( \ | ||
| 23 | KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, \ | ||
| 24 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, \ | ||
| 25 | KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_PIPE, S(KC_QUOT), \ | ||
| 26 | _______, _______, _______, _______, KC_BSPC, KC_BSPC, _______, KC_MNXT, KC_VOLD, KC_GRV \ | ||
| 27 | ), | ||
| 28 | [2] = KEYMAP( \ | ||
| 29 | KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \ | ||
| 30 | KC_TAB, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT,KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, \ | ||
| 31 | OSM(MOD_LSFT), KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_BSLS, KC_QUOT, \ | ||
| 32 | _______, _______, _______, _______, KC_ENT, KC_ENT, _______, KC_MNXT, KC_VOLD, KC_VOLU \ | ||
| 33 | ), | ||
| 34 | |||
| 35 | /* Adjust (Lower + Raise) | ||
| 36 | * ,-----------------------------------------------------------------------------------. | ||
| 37 | * | | Reset| | | | | | | | | | Del | | ||
| 38 | * |------+------+------+------+------+-------------+------+------+------+------+------| | ||
| 39 | * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | | ||
| 40 | * |------+------+------+------+------+------|------+------+------+------+------+------| | ||
| 41 | * | | | | | | | | | | | | | | ||
| 42 | * |------+------+------+------+------+------+------+------+------+------+------+------| | ||
| 43 | * | | | | | | | | | | | | | ||
| 44 | * `-----------------------------------------------------------------------------------' | ||
| 45 | */ | ||
| 46 | [3] = KEYMAP( \ | ||
| 47 | RESET, KC_UP, _______, _______, _______, _______, _______, KC_MS_WH_DOWN, KC_MS_U, KC_MS_WH_UP, \ | ||
| 48 | KC_LEFT, KC_DOWN, KC_RIGHT, AU_ON, AU_OFF, AG_NORM, AG_SWAP, KC_MS_L,KC_MS_D, KC_MS_R, \ | ||
| 49 | RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, \ | ||
| 50 | _______, _______, _______, _______, KC_MS_BTN1, KC_MS_BTN2, _______, _______, _______, _______ \ | ||
| 51 | ) | ||
| 52 | }; | ||
| 53 | |||
| 54 | const uint16_t PROGMEM fn_actions[] = { | ||
| 55 | |||
| 56 | }; | ||
| 57 | |||
| 58 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 59 | { | ||
| 60 | // MACRODOWN only works in this function | ||
| 61 | switch(id) { | ||
| 62 | case 0: | ||
| 63 | if (record->event.pressed) { | ||
| 64 | register_code(KC_RSFT); | ||
| 65 | } else { | ||
| 66 | unregister_code(KC_RSFT); | ||
| 67 | } | ||
| 68 | break; | ||
| 69 | } | ||
| 70 | return MACRO_NONE; | ||
| 71 | }; | ||
| 72 | |||
| 73 | |||
| 74 | void matrix_init_user(void) { | ||
| 75 | |||
| 76 | } | ||
| 77 | |||
| 78 | void matrix_scan_user(void) { | ||
| 79 | |||
| 80 | } | ||
| 81 | |||
| 82 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 83 | return true; | ||
| 84 | } | ||
| 85 | |||
| 86 | void led_set_user(uint8_t usb_led) { | ||
| 87 | |||
| 88 | } \ 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 000000000..95472dfca --- /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 000000000..c8243df7b --- /dev/null +++ b/keyboards/handwired/pilcrow/pilcrow.c | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | #include "pilcrow.h" | ||
| 2 | |||
| 3 | void matrix_init_kb(void) { | ||
| 4 | // put your keyboard start-up code here | ||
| 5 | // runs once when the firmware starts up | ||
| 6 | |||
| 7 | matrix_init_user(); | ||
| 8 | } | ||
| 9 | |||
| 10 | void matrix_scan_kb(void) { | ||
| 11 | // put your looping keyboard code here | ||
| 12 | // runs every cycle (a lot) | ||
| 13 | |||
| 14 | matrix_scan_user(); | ||
| 15 | } | ||
| 16 | |||
| 17 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 18 | // put your per-action keyboard code here | ||
| 19 | // runs for every action, just before processing by the firmware | ||
| 20 | |||
| 21 | return process_record_user(keycode, record); | ||
| 22 | } | ||
| 23 | |||
| 24 | void led_set_kb(uint8_t usb_led) { | ||
| 25 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 26 | |||
| 27 | led_set_user(usb_led); | ||
| 28 | } | ||
diff --git a/keyboards/handwired/pilcrow/pilcrow.h b/keyboards/handwired/pilcrow/pilcrow.h new file mode 100644 index 000000000..7138ccb3f --- /dev/null +++ b/keyboards/handwired/pilcrow/pilcrow.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | #ifndef PILCROW_H | ||
| 2 | #define PILCROW_H | ||
| 3 | |||
| 4 | #include "quantum.h" | ||
| 5 | |||
| 6 | // This a shortcut to help you visually see your layout. | ||
| 7 | // The following is an example using the Planck MIT layout | ||
| 8 | // The first section contains all of the arguements | ||
| 9 | // The second converts the arguments into a two-dimensional array | ||
| 10 | #define KEYMAP( \ | ||
| 11 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, \ | ||
| 12 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, \ | ||
| 13 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, \ | ||
| 14 | k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 \ | ||
| 15 | ) \ | ||
| 16 | { \ | ||
| 17 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 }, \ | ||
| 18 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19 }, \ | ||
| 19 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29 }, \ | ||
| 20 | { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39 } \ | ||
| 21 | } | ||
| 22 | |||
| 23 | #endif | ||
diff --git a/keyboards/handwired/pilcrow/readme.md b/keyboards/handwired/pilcrow/readme.md new file mode 100644 index 000000000..7a7f6d2af --- /dev/null +++ b/keyboards/handwired/pilcrow/readme.md | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | pilcrow keyboard firmware | ||
| 2 | ====================== | ||
| 3 | |||
| 4 | ## Quantum MK Firmware | ||
| 5 | |||
| 6 | For the full Quantum feature list, see [the parent readme](/). | ||
| 7 | |||
| 8 | ## Building | ||
| 9 | |||
| 10 | 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. | ||
| 11 | |||
| 12 | Depending on which keymap you would like to use, you will have to compile slightly differently. | ||
| 13 | |||
| 14 | ### Default | ||
| 15 | |||
| 16 | To build with the default keymap, simply run `make default`. | ||
| 17 | |||
| 18 | ### Other Keymaps | ||
| 19 | |||
| 20 | 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. | ||
| 21 | |||
| 22 | To build the firmware binary hex file with a keymap just do `make` with a keymap like this: | ||
| 23 | |||
| 24 | ``` | ||
| 25 | $ make [default|jack|<name>] | ||
| 26 | ``` | ||
| 27 | |||
| 28 | 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 000000000..55898147d --- /dev/null +++ b/keyboards/handwired/pilcrow/rules.mk | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | # MCU name | ||
| 2 | #MCU = at90usb1287 | ||
| 3 | MCU = atmega32u4 | ||
| 4 | |||
| 5 | # Processor frequency. | ||
| 6 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
| 7 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
| 8 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
| 9 | # automatically to create a 32-bit value in your source code. | ||
| 10 | # | ||
| 11 | # This will be an integer division of F_USB below, as it is sourced by | ||
| 12 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
| 13 | # does not *change* the processor frequency - it should merely be updated to | ||
| 14 | # reflect the processor speed set externally so that the code can use accurate | ||
| 15 | # software delays. | ||
| 16 | F_CPU = 16000000 | ||
| 17 | |||
| 18 | |||
| 19 | # | ||
| 20 | # LUFA specific | ||
| 21 | # | ||
| 22 | # Target architecture (see library "Board Types" documentation). | ||
| 23 | ARCH = AVR8 | ||
| 24 | |||
| 25 | # Input clock frequency. | ||
| 26 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 27 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 28 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 29 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 30 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 31 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 32 | # source code. | ||
| 33 | # | ||
| 34 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 35 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 36 | F_USB = $(F_CPU) | ||
| 37 | |||
| 38 | # Interrupt driven control endpoint task(+60) | ||
| 39 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 40 | |||
| 41 | |||
| 42 | # Boot Section Size in *bytes* | ||
| 43 | # Teensy halfKay 512 | ||
| 44 | # Teensy++ halfKay 1024 | ||
| 45 | # Atmel DFU loader 4096 | ||
| 46 | # LUFA bootloader 4096 | ||
| 47 | # USBaspLoader 2048 | ||
| 48 | OPT_DEFS += -DBOOTLOADER_SIZE=512 | ||
| 49 | |||
| 50 | |||
| 51 | # Build Options | ||
| 52 | # change yes to no to disable | ||
| 53 | # | ||
| 54 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | ||
| 55 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | ||
| 56 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | ||
| 57 | CONSOLE_ENABLE ?= yes # Console for debug(+400) | ||
| 58 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | ||
| 59 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 60 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | ||
| 61 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 62 | NKRO_ENABLE ?= no # USB Nkey Rollover | ||
| 63 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | ||
| 64 | MIDI_ENABLE ?= no # MIDI controls | ||
| 65 | UNICODE_ENABLE ?= no # Unicode | ||
| 66 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 67 | AUDIO_ENABLE ?= no # Audio output on port C6 | ||
diff --git a/keyboards/handwired/promethium/config.h b/keyboards/handwired/promethium/config.h index 473af67d3..23fbfd0b9 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/>. | |||
| 20 | 20 | ||
| 21 | #include "config_common.h" | 21 | #include "config_common.h" |
| 22 | 22 | ||
| 23 | #define USB_VENDOR_ID_LENOVO 0x17ef | ||
| 24 | #define USB_DEVICE_ID_LENOVO_TPKBD 0x6009 | ||
| 25 | #define USB_DEVICE_ID_LENOVO_CUSBKBD 0x6047 | ||
| 26 | #define USB_DEVICE_ID_LENOVO_CBTKBD 0x6048 | ||
| 27 | #define USB_DEVICE_ID_LENOVO_TPPRODOCK 0x6067 | ||
| 28 | |||
| 23 | /* USB Device descriptor parameter */ | 29 | /* USB Device descriptor parameter */ |
| 24 | #define VENDOR_ID 0xFEED | 30 | #define VENDOR_ID USB_VENDOR_ID_LENOVO |
| 25 | #define PRODUCT_ID 0x6660 | 31 | #define PRODUCT_ID USB_DEVICE_ID_LENOVO_CBTKBD |
| 26 | #define DEVICE_VER 0x0001 | 32 | #define DEVICE_VER 0x0001 |
| 27 | #define MANUFACTURER Priyadi | 33 | #define MANUFACTURER Priyadi |
| 28 | #define PRODUCT Promethium Keyboard | 34 | #define PRODUCT Promethium Keyboard |
| 29 | #define DESCRIPTION Promethium Keyboard | 35 | #define DESCRIPTION |
| 30 | 36 | ||
| 31 | /* key matrix size */ | 37 | /* key matrix size */ |
| 32 | #define MATRIX_ROWS 8 | 38 | #define MATRIX_ROWS 8 |
diff --git a/keyboards/handwired/promethium/keymaps/priyadi/Makefile b/keyboards/handwired/promethium/keymaps/priyadi/Makefile index 2f6f27a73..46fdfa011 100644 --- a/keyboards/handwired/promethium/keymaps/priyadi/Makefile +++ b/keyboards/handwired/promethium/keymaps/priyadi/Makefile | |||
| @@ -4,16 +4,17 @@ | |||
| 4 | # change to "no" to disable the options, or define them in the Makefile in | 4 | # change to "no" to disable the options, or define them in the Makefile in |
| 5 | # the appropriate keymap folder that will get included automatically | 5 | # the appropriate keymap folder that will get included automatically |
| 6 | # | 6 | # |
| 7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 7 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 8 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 8 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
| 9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 10 | CONSOLE_ENABLE = no # Console for debug(+400) | 10 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 11 | COMMAND_ENABLE = yes # Commands for debug and configuration | 11 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 12 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 12 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 14 | MIDI_ENABLE = no # MIDI controls | 14 | MIDI_ENABLE = no # MIDI controls |
| 15 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
| 16 | UNICODE_ENABLE = no # Unicode | 16 | UNICODE_ENABLE = no # Unicode |
| 17 | UNICODEMAP_ENABLE = yes | ||
| 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 18 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 18 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 19 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
| 19 | PS2_MOUSE_ENABLE = yes | 20 | PS2_MOUSE_ENABLE = yes |
diff --git a/keyboards/handwired/promethium/keymaps/priyadi/flash.sh b/keyboards/handwired/promethium/keymaps/priyadi/flash.sh index fb81a54ee..14a3b4378 100755 --- a/keyboards/handwired/promethium/keymaps/priyadi/flash.sh +++ b/keyboards/handwired/promethium/keymaps/priyadi/flash.sh | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | sleep 10 | ||
| 3 | avrdude -p m32u4 -P /dev/ttyACM0 -c avr109 -U flash:w:../../../../../.build/handwired_promethium_priyadi.hex | 4 | 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 b2da2f97b..7ae269563 100644 --- a/keyboards/handwired/promethium/keymaps/priyadi/keymap.c +++ b/keyboards/handwired/promethium/keymaps/priyadi/keymap.c | |||
| @@ -11,6 +11,8 @@ | |||
| 11 | #include "process_unicode.h" | 11 | #include "process_unicode.h" |
| 12 | #include "quantum.h" | 12 | #include "quantum.h" |
| 13 | #include "rgbsps.h" | 13 | #include "rgbsps.h" |
| 14 | #include "ps2_mouse.h" | ||
| 15 | #include "ps2.h" | ||
| 14 | #define COUNT(x) (sizeof (x) / sizeof (*(x))) | 16 | #define COUNT(x) (sizeof (x) / sizeof (*(x))) |
| 15 | 17 | ||
| 16 | // #define RGBLED_NUM 5 | 18 | // #define RGBLED_NUM 5 |
| @@ -282,25 +284,25 @@ void led_layer_func(void) { | |||
| 282 | rgbsps_set(LED_K, 15, 0, 15); | 284 | rgbsps_set(LED_K, 15, 0, 15); |
| 283 | rgbsps_set(LED_L, 15, 0, 15); | 285 | rgbsps_set(LED_L, 15, 0, 15); |
| 284 | 286 | ||
| 285 | rgbsps_set(LED_U, 15, 0, 10); | 287 | rgbsps_set(LED_U, 15, 0, 0); |
| 286 | rgbsps_set(LED_O, 15, 0, 10); | 288 | rgbsps_set(LED_O, 15, 0, 0); |
| 287 | rgbsps_set(LED_COMM, 15, 0, 10); | 289 | rgbsps_set(LED_COMM, 15, 0, 0); |
| 288 | rgbsps_set(LED_DOT, 15, 0, 10); | 290 | rgbsps_set(LED_DOT, 15, 0, 0); |
| 289 | rgbsps_set(LED_SCLN, 15, 0, 10); | 291 | rgbsps_set(LED_SCLN, 15, 0, 0); |
| 290 | rgbsps_set(LED_P, 15, 0, 10); | 292 | rgbsps_set(LED_P, 15, 0, 0); |
| 291 | 293 | ||
| 292 | rgbsps_set(LED_Q, 10, 0, 15); | 294 | rgbsps_set(LED_Q, 0, 15, 0); |
| 293 | rgbsps_set(LED_W, 10, 0, 15); | 295 | rgbsps_set(LED_W, 0, 15, 0); |
| 294 | rgbsps_set(LED_E, 10, 0, 15); | 296 | rgbsps_set(LED_E, 0, 15, 0); |
| 295 | rgbsps_set(LED_R, 10, 0, 15); | 297 | rgbsps_set(LED_R, 0, 15, 0); |
| 296 | rgbsps_set(LED_A, 10, 0, 15); | 298 | rgbsps_set(LED_A, 0, 15, 0); |
| 297 | rgbsps_set(LED_S, 10, 0, 15); | 299 | rgbsps_set(LED_S, 0, 15, 0); |
| 298 | rgbsps_set(LED_D, 10, 0, 15); | 300 | rgbsps_set(LED_D, 0, 15, 0); |
| 299 | rgbsps_set(LED_F, 10, 0, 15); | 301 | rgbsps_set(LED_F, 0, 15, 0); |
| 300 | rgbsps_set(LED_Z, 10, 0, 15); | 302 | rgbsps_set(LED_Z, 0, 15, 0); |
| 301 | rgbsps_set(LED_X, 10, 0, 15); | 303 | rgbsps_set(LED_X, 0, 15, 0); |
| 302 | rgbsps_set(LED_C, 10, 0, 15); | 304 | rgbsps_set(LED_C, 0, 15, 0); |
| 303 | rgbsps_set(LED_V, 10, 0, 15); | 305 | rgbsps_set(LED_V, 0, 15, 0); |
| 304 | 306 | ||
| 305 | rgbsps_send(); | 307 | rgbsps_send(); |
| 306 | } | 308 | } |
| @@ -361,7 +363,15 @@ void led_layer_num(void) { | |||
| 361 | } | 363 | } |
| 362 | 364 | ||
| 363 | void led_layer_emoji(void) { | 365 | void led_layer_emoji(void) { |
| 364 | rgbsps_setall(15, 15, 0); | 366 | for(uint8_t i = 0; i < COUNT(LED_ALNUM); i++) { |
| 367 | rgbsps_set(pgm_read_byte(&LED_ALNUM[i]), 15, 15, 0); | ||
| 368 | } | ||
| 369 | for(uint8_t i = 0; i < COUNT(LED_MODS); i++) { | ||
| 370 | rgbsps_set(pgm_read_byte(&LED_MODS[i]), 15, 15, 0); | ||
| 371 | } | ||
| 372 | for(uint8_t i = 0; i < COUNT(LED_FN); i++) { | ||
| 373 | rgbsps_set(pgm_read_byte(&LED_FN[i]), 15, 15, 0); | ||
| 374 | } | ||
| 365 | 375 | ||
| 366 | rgbsps_set(LED_IND_FUNC, 0, 0, 0); | 376 | rgbsps_set(LED_IND_FUNC, 0, 0, 0); |
| 367 | rgbsps_set(LED_IND_NUM, 0, 0, 0); | 377 | rgbsps_set(LED_IND_NUM, 0, 0, 0); |
| @@ -415,7 +425,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 415 | */ | 425 | */ |
| 416 | [_QWERTY] = KEYMAP( | 426 | [_QWERTY] = KEYMAP( |
| 417 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | 427 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, |
| 418 | KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT , | 428 | KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_ENT , |
| 419 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 429 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, |
| 420 | KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL | 430 | KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL |
| 421 | ), | 431 | ), |
| @@ -432,10 +442,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 432 | * `-----------------------------------------------------------------------------------' | 442 | * `-----------------------------------------------------------------------------------' |
| 433 | */ | 443 | */ |
| 434 | [_COLEMAK] = KEYMAP( | 444 | [_COLEMAK] = KEYMAP( |
| 435 | KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, | 445 | _______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_QUOT, _______, |
| 436 | KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_ENT , | 446 | _______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, _______, |
| 437 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 447 | _______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______, |
| 438 | KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL | 448 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 439 | ), | 449 | ), |
| 440 | 450 | ||
| 441 | /* Workman | 451 | /* Workman |
| @@ -450,10 +460,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 450 | * `-----------------------------------------------------------------------------------' | 460 | * `-----------------------------------------------------------------------------------' |
| 451 | */ | 461 | */ |
| 452 | [_WORKMAN] = KEYMAP( | 462 | [_WORKMAN] = KEYMAP( |
| 453 | KC_TAB, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC, | 463 | _______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_QUOT, _______, |
| 454 | KC_ESC, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_ENT , | 464 | _______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, _______, |
| 455 | KC_LSFT, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | 465 | _______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______, |
| 456 | KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL | 466 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 457 | ), | 467 | ), |
| 458 | 468 | ||
| 459 | /* Punc | 469 | /* Punc |
| @@ -541,7 +551,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 541 | */ | 551 | */ |
| 542 | [_GUI] = KEYMAP( | 552 | [_GUI] = KEYMAP( |
| 543 | _______, 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), _______, | 553 | _______, 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), _______, |
| 544 | LINUX, _______, KC_VOLD, KC_MUTE, KC_VOLU,_______,_______,KC_WWW_BACK,_______,KC_WWW_FORWARD,_______, QWERTY, | 554 | LINUX, _______, KC_VOLD, KC_MUTE, KC_VOLU,_______,_______,KC_WWW_BACK,_______,KC_WWW_FORWARD,KC_PAUS, QWERTY, |
| 545 | WIN, _______, KC_MPRV, KC_MPLY, KC_MNXT, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, COLEMAK, | 555 | WIN, _______, KC_MPRV, KC_MPLY, KC_MNXT, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, COLEMAK, |
| 546 | OSX, _______, _______, _______, _______, BL_DEC, BL_INC, _______, _______, RGB_VAI, RGB_VAD, WORKMAN | 556 | OSX, _______, _______, _______, _______, BL_DEC, BL_INC, _______, _______, RGB_VAI, RGB_VAD, WORKMAN |
| 547 | ), | 557 | ), |
| @@ -572,6 +582,39 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 572 | #endif | 582 | #endif |
| 573 | 583 | ||
| 574 | switch (keycode) { | 584 | switch (keycode) { |
| 585 | // QWERTZ style comma and dot: semicolon and colon when shifted | ||
| 586 | case KC_COMM: | ||
| 587 | if (record->event.pressed) { | ||
| 588 | bool lshifted = keyboard_report->mods & MOD_BIT(KC_LSFT); | ||
| 589 | bool rshifted = keyboard_report->mods & MOD_BIT(KC_RSFT); | ||
| 590 | if (lshifted || rshifted) { | ||
| 591 | if (lshifted) unregister_code(KC_LSFT); | ||
| 592 | if (rshifted) unregister_code(KC_RSFT); | ||
| 593 | register_code(KC_SCLN); | ||
| 594 | unregister_code(KC_SCLN); | ||
| 595 | if (lshifted) register_code(KC_LSFT); | ||
| 596 | if (rshifted) register_code(KC_RSFT); | ||
| 597 | } else { | ||
| 598 | register_code(KC_COMM); | ||
| 599 | unregister_code(KC_COMM); | ||
| 600 | } | ||
| 601 | } | ||
| 602 | return false; | ||
| 603 | break; | ||
| 604 | case KC_DOT: | ||
| 605 | if (record->event.pressed) { | ||
| 606 | if ((keyboard_report->mods & MOD_BIT(KC_LSFT)) || (keyboard_report->mods & MOD_BIT(KC_RSFT))) { | ||
| 607 | register_code(KC_SCLN); | ||
| 608 | unregister_code(KC_SCLN); | ||
| 609 | } else { | ||
| 610 | register_code(KC_DOT); | ||
| 611 | unregister_code(KC_DOT); | ||
| 612 | } | ||
| 613 | } | ||
| 614 | return false; | ||
| 615 | break; | ||
| 616 | |||
| 617 | // layout switchers | ||
| 575 | case QWERTY: | 618 | case QWERTY: |
| 576 | if (record->event.pressed) { | 619 | if (record->event.pressed) { |
| 577 | #ifdef AUDIO_ENABLE | 620 | #ifdef AUDIO_ENABLE |
| @@ -600,8 +643,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 600 | return false; | 643 | return false; |
| 601 | break; | 644 | break; |
| 602 | 645 | ||
| 603 | 646 | // layer switcher | |
| 604 | |||
| 605 | case PUNC: | 647 | case PUNC: |
| 606 | if (record->event.pressed) { | 648 | if (record->event.pressed) { |
| 607 | layer_on(_PUNC); | 649 | layer_on(_PUNC); |
| @@ -663,7 +705,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 663 | return false; | 705 | return false; |
| 664 | break; | 706 | break; |
| 665 | 707 | ||
| 666 | 708 | // OS switchers | |
| 667 | case LINUX: | 709 | case LINUX: |
| 668 | set_unicode_input_mode(UC_LNX); | 710 | set_unicode_input_mode(UC_LNX); |
| 669 | #ifdef AUDIO_ENABLE | 711 | #ifdef AUDIO_ENABLE |
| @@ -722,4 +764,40 @@ void shutdown_user() | |||
| 722 | stop_all_notes(); | 764 | stop_all_notes(); |
| 723 | } | 765 | } |
| 724 | 766 | ||
| 725 | #endif \ No newline at end of file | 767 | #endif |
| 768 | |||
| 769 | |||
| 770 | void ps2_mouse_init_user() { | ||
| 771 | uint8_t rcv; | ||
| 772 | |||
| 773 | // set TrackPoint sensitivity | ||
| 774 | PS2_MOUSE_SEND(0xE2, "set trackpoint sensitivity: 0xE2"); | ||
| 775 | PS2_MOUSE_SEND(0x81, "set trackpoint sensitivity: 0x81"); | ||
| 776 | PS2_MOUSE_SEND(0x4A, "set trackpoint sensitivity: 0x4A"); | ||
| 777 | PS2_MOUSE_SEND(0x49, "set trackpoint sensitivity: 0x59"); | ||
| 778 | |||
| 779 | // set TrackPoint Negative Inertia factor | ||
| 780 | PS2_MOUSE_SEND(0xE2, "set negative inertia factor: 0xE2"); | ||
| 781 | PS2_MOUSE_SEND(0x81, "set negative inertia factor: 0x81"); | ||
| 782 | PS2_MOUSE_SEND(0x4D, "set negative inertia factor: 0x4D"); | ||
| 783 | PS2_MOUSE_SEND(0x06, "set negative inertia factor: 0x06"); | ||
| 784 | |||
| 785 | // set TrackPoint speed | ||
| 786 | // (transfer function upper plateau speed) | ||
| 787 | PS2_MOUSE_SEND(0xE2, "set trackpoint speed: 0xE2"); | ||
| 788 | PS2_MOUSE_SEND(0x81, "set trackpoint speed: 0x81"); | ||
| 789 | PS2_MOUSE_SEND(0x60, "set trackpoint speed: 0x60"); | ||
| 790 | PS2_MOUSE_SEND(0x61, "set trackpoint speed: 0x61"); | ||
| 791 | |||
| 792 | // inquire pts status | ||
| 793 | rcv = ps2_host_send(0xE2); | ||
| 794 | rcv = ps2_host_send(0x2C); | ||
| 795 | rcv = ps2_host_recv_response(); | ||
| 796 | if ((rcv & 1) == 1) { | ||
| 797 | // if on, disable pts | ||
| 798 | rcv = ps2_host_send(0xE2); | ||
| 799 | rcv = ps2_host_send(0x47); | ||
| 800 | rcv = ps2_host_send(0x2C); | ||
| 801 | rcv = ps2_host_send(0x01); | ||
| 802 | } | ||
| 803 | } \ No newline at end of file | ||
diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h index 8f2a8c3be..662eeab99 100644 --- a/keyboards/handwired/promethium/promethium.h +++ b/keyboards/handwired/promethium/promethium.h | |||
| @@ -23,77 +23,77 @@ | |||
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | enum led_sequence { | 25 | enum led_sequence { |
| 26 | LED_IND_EMOJI, | ||
| 27 | LED_IND_NUM, | ||
| 28 | LED_IND_FUNC, | ||
| 29 | |||
| 30 | LED_IND_BATTERY, | ||
| 31 | LED_IND_USB, | ||
| 32 | LED_IND_BLUETOOTH, | 26 | LED_IND_BLUETOOTH, |
| 27 | LED_IND_USB, | ||
| 28 | LED_IND_BATTERY, | ||
| 33 | 29 | ||
| 34 | LED_TAB, | 30 | LED_IND_FUNC, |
| 35 | LED_ESC, | 31 | LED_IND_NUM, |
| 36 | LED_LSFT, | 32 | LED_IND_EMOJI, |
| 37 | LED_LCTL, | ||
| 38 | |||
| 39 | LED_LGUI, | ||
| 40 | LED_Z, | ||
| 41 | LED_A, | ||
| 42 | LED_Q, | ||
| 43 | 33 | ||
| 44 | LED_W, | 34 | LED_BKSP, |
| 45 | LED_S, | 35 | LED_ENT, |
| 46 | LED_X, | 36 | LED_RSFT, |
| 47 | LED_LALT, | 37 | LED_RCTL, |
| 48 | 38 | ||
| 49 | LED_PUNC, | 39 | LED_RGUI, |
| 50 | LED_C, | 40 | LED_SLSH, |
| 51 | LED_D, | 41 | LED_SCLN, |
| 52 | LED_E, | 42 | LED_P, |
| 53 | 43 | ||
| 54 | LED_R, | 44 | LED_O, |
| 55 | LED_F, | 45 | LED_L, |
| 56 | LED_V, | 46 | LED_DOT, |
| 57 | LED_NUM, | 47 | LED_RALT, |
| 58 | 48 | ||
| 59 | LED_LSPC, | 49 | LED_EMOJI, |
| 60 | LED_B, | 50 | LED_COMM, |
| 61 | LED_G, | 51 | LED_K, |
| 62 | LED_T, | 52 | LED_I, |
| 63 | 53 | ||
| 64 | LED_TRACKPOINT1, | 54 | LED_U, |
| 65 | LED_TRACKPOINT2, | 55 | LED_J, |
| 66 | LED_TRACKPOINT3, | 56 | LED_M, |
| 57 | LED_FUNC, | ||
| 67 | 58 | ||
| 68 | LED_RSPC, | 59 | LED_RSPC, |
| 69 | LED_N, | 60 | LED_N, |
| 70 | LED_HH, | 61 | LED_HH, |
| 71 | LED_Y, | 62 | LED_Y, |
| 72 | 63 | ||
| 73 | LED_U, | 64 | LED_TRACKPOINT3, |
| 74 | LED_J, | 65 | LED_TRACKPOINT2, |
| 75 | LED_M, | 66 | LED_TRACKPOINT1, |
| 76 | LED_FUNC, | ||
| 77 | 67 | ||
| 78 | LED_EMOJI, | 68 | LED_LSPC, |
| 79 | LED_COMM, | 69 | LED_B, |
| 80 | LED_K, | 70 | LED_G, |
| 81 | LED_I, | 71 | LED_T, |
| 82 | 72 | ||
| 83 | LED_O, | 73 | LED_R, |
| 84 | LED_L, | 74 | LED_F, |
| 85 | LED_DOT, | 75 | LED_V, |
| 86 | LED_RALT, | 76 | LED_NUM, |
| 87 | 77 | ||
| 88 | LED_RGUI, | 78 | LED_PUNC, |
| 89 | LED_SLSH, | 79 | LED_C, |
| 90 | LED_SCLN, | 80 | LED_D, |
| 91 | LED_P, | 81 | LED_E, |
| 92 | 82 | ||
| 93 | LED_BKSP, | 83 | LED_W, |
| 94 | LED_ENT, | 84 | LED_S, |
| 95 | LED_RSFT, | 85 | LED_X, |
| 96 | LED_RCTL | 86 | LED_LALT, |
| 87 | |||
| 88 | LED_LGUI, | ||
| 89 | LED_Z, | ||
| 90 | LED_A, | ||
| 91 | LED_Q, | ||
| 92 | |||
| 93 | LED_TAB, | ||
| 94 | LED_ESC, | ||
| 95 | LED_LSFT, | ||
| 96 | LED_LCTL, | ||
| 97 | }; | 97 | }; |
| 98 | 98 | ||
| 99 | #endif | 99 | #endif |
diff --git a/keyboards/handwired/promethium/rules.mk b/keyboards/handwired/promethium/rules.mk index 0842780cc..465ef3359 100644 --- a/keyboards/handwired/promethium/rules.mk +++ b/keyboards/handwired/promethium/rules.mk | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | |||
| 2 | # MCU name | 1 | # MCU name |
| 3 | #MCU = at90usb1287 | 2 | #MCU = at90usb1287 |
| 4 | MCU = atmega32u4 | 3 | MCU = atmega32u4 |
| @@ -61,11 +60,13 @@ BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | |||
| 61 | MIDI_ENABLE ?= no # MIDI controls | 60 | MIDI_ENABLE ?= no # MIDI controls |
| 62 | AUDIO_ENABLE ?= no # Audio output on port C6 | 61 | AUDIO_ENABLE ?= no # Audio output on port C6 |
| 63 | UNICODE_ENABLE ?= no # Unicode | 62 | UNICODE_ENABLE ?= no # Unicode |
| 64 | UNICODEMAP_ENABLE = yes | 63 | UNICODEMAP_ENABLE ?= yes |
| 65 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 64 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 66 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 65 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
| 67 | PS2_MOUSE_ENABLE ?= yes | 66 | PS2_MOUSE_ENABLE ?= yes |
| 68 | PS2_USE_INT ?= yes | 67 | PS2_USE_INT ?= yes |
| 68 | ADAFRUIT_BLE_ENABLE ?= yes | ||
| 69 | API_SYSEX_ENABLE ?= no | ||
| 69 | 70 | ||
| 70 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 71 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 71 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 72 | 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 000000000..f2cb9ce1e --- /dev/null +++ b/keyboards/lets_split/imgs/letssplitv2.svg | |||
| @@ -0,0 +1,5817 @@ | |||
| 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| 2 | <!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In --> | ||
| 3 | |||
| 4 | <svg | ||
| 5 | xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
| 6 | xmlns:cc="http://creativecommons.org/ns#" | ||
| 7 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
| 8 | xmlns:svg="http://www.w3.org/2000/svg" | ||
| 9 | xmlns="http://www.w3.org/2000/svg" | ||
| 10 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
| 11 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
| 12 | width="541.41699pt" | ||
| 13 | height="541.41602pt" | ||
| 14 | viewBox="0 0 541.417 541.416" | ||
| 15 | xml:space="preserve" | ||
| 16 | id="svg2242" | ||
| 17 | sodipodi:version="0.32" | ||
| 18 | inkscape:version="0.91 r13725" | ||
| 19 | sodipodi:docname="letssplitv2.svg" | ||
| 20 | inkscape:output_extension="org.inkscape.output.svg.inkscape" | ||
| 21 | version="1.1" | ||
| 22 | style="display:inline"><metadata | ||
| 23 | id="metadata2286"><rdf:RDF><cc:Work | ||
| 24 | rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type | ||
| 25 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs | ||
| 26 | id="defs2284"><inkscape:perspective | ||
| 27 | sodipodi:type="inkscape:persp3d" | ||
| 28 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 29 | inkscape:vp_y="0 : 1000 : 0" | ||
| 30 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 31 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 32 | id="perspective37556" /><inkscape:perspective | ||
| 33 | sodipodi:type="inkscape:persp3d" | ||
| 34 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 35 | inkscape:vp_y="0 : 1000 : 0" | ||
| 36 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 37 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 38 | id="perspective16301" /><inkscape:perspective | ||
| 39 | sodipodi:type="inkscape:persp3d" | ||
| 40 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 41 | inkscape:vp_y="0 : 1000 : 0" | ||
| 42 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 43 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 44 | id="perspective12409" /><inkscape:perspective | ||
| 45 | sodipodi:type="inkscape:persp3d" | ||
| 46 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 47 | inkscape:vp_y="0 : 1000 : 0" | ||
| 48 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 49 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 50 | id="perspective9337" /><inkscape:perspective | ||
| 51 | sodipodi:type="inkscape:persp3d" | ||
| 52 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 53 | inkscape:vp_y="0 : 1000 : 0" | ||
| 54 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 55 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 56 | id="perspective8562" /><inkscape:perspective | ||
| 57 | id="perspective3083" | ||
| 58 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 59 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 60 | inkscape:vp_y="0 : 1000 : 0" | ||
| 61 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 62 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 63 | id="perspective23419" | ||
| 64 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 65 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 66 | inkscape:vp_y="0 : 1000 : 0" | ||
| 67 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 68 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 69 | id="perspective27913" | ||
| 70 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 71 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 72 | inkscape:vp_y="0 : 1000 : 0" | ||
| 73 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 74 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 75 | sodipodi:type="inkscape:persp3d" | ||
| 76 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 77 | inkscape:vp_y="0 : 1000 : 0" | ||
| 78 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 79 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 80 | id="perspective27913-5" /><inkscape:perspective | ||
| 81 | sodipodi:type="inkscape:persp3d" | ||
| 82 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 83 | inkscape:vp_y="0 : 1000 : 0" | ||
| 84 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 85 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 86 | id="perspective23419-6" /><inkscape:perspective | ||
| 87 | sodipodi:type="inkscape:persp3d" | ||
| 88 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 89 | inkscape:vp_y="0 : 1000 : 0" | ||
| 90 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 91 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 92 | id="perspective3083-3" /><inkscape:perspective | ||
| 93 | id="perspective8562-2" | ||
| 94 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 95 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 96 | inkscape:vp_y="0 : 1000 : 0" | ||
| 97 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 98 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 99 | id="perspective9337-7" | ||
| 100 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 101 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 102 | inkscape:vp_y="0 : 1000 : 0" | ||
| 103 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 104 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 105 | id="perspective12409-1" | ||
| 106 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 107 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 108 | inkscape:vp_y="0 : 1000 : 0" | ||
| 109 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 110 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 111 | id="perspective16301-9" | ||
| 112 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 113 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 114 | inkscape:vp_y="0 : 1000 : 0" | ||
| 115 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 116 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 117 | id="perspective37556-9" | ||
| 118 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 119 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 120 | inkscape:vp_y="0 : 1000 : 0" | ||
| 121 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 122 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 123 | id="perspective5074" | ||
| 124 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 125 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 126 | inkscape:vp_y="0 : 1000 : 0" | ||
| 127 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 128 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 129 | id="perspective5377" | ||
| 130 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 131 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 132 | inkscape:vp_y="0 : 1000 : 0" | ||
| 133 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 134 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 135 | id="perspective5377-5" | ||
| 136 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 137 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 138 | inkscape:vp_y="0 : 1000 : 0" | ||
| 139 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 140 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 141 | id="perspective6033" | ||
| 142 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 143 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 144 | inkscape:vp_y="0 : 1000 : 0" | ||
| 145 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 146 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 147 | id="perspective2989" | ||
| 148 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 149 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 150 | inkscape:vp_y="0 : 1000 : 0" | ||
| 151 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 152 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 153 | id="perspective3039" | ||
| 154 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 155 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 156 | inkscape:vp_y="0 : 1000 : 0" | ||
| 157 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 158 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 159 | id="perspective51596" | ||
| 160 | inkscape:persp3d-origin="1417.3237 : 465.35417 : 1" | ||
| 161 | inkscape:vp_z="2834.6475 : 698.03125 : 1" | ||
| 162 | inkscape:vp_y="0 : 1000 : 0" | ||
| 163 | inkscape:vp_x="0 : 698.03125 : 1" | ||
| 164 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 165 | id="perspective51446" | ||
| 166 | inkscape:persp3d-origin="270.70999 : 180.47333 : 1" | ||
| 167 | inkscape:vp_z="541.41998 : 270.70999 : 1" | ||
| 168 | inkscape:vp_y="0 : 1000 : 0" | ||
| 169 | inkscape:vp_x="0 : 270.70999 : 1" | ||
| 170 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 171 | id="perspective37556-1" | ||
| 172 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 173 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 174 | inkscape:vp_y="0 : 1000 : 0" | ||
| 175 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 176 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 177 | id="perspective16301-3" | ||
| 178 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 179 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 180 | inkscape:vp_y="0 : 1000 : 0" | ||
| 181 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 182 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 183 | id="perspective12409-3" | ||
| 184 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 185 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 186 | inkscape:vp_y="0 : 1000 : 0" | ||
| 187 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 188 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 189 | id="perspective9337-3" | ||
| 190 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 191 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 192 | inkscape:vp_y="0 : 1000 : 0" | ||
| 193 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 194 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 195 | id="perspective8562-08" | ||
| 196 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 197 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 198 | inkscape:vp_y="0 : 1000 : 0" | ||
| 199 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 200 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 201 | sodipodi:type="inkscape:persp3d" | ||
| 202 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 203 | inkscape:vp_y="0 : 1000 : 0" | ||
| 204 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 205 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 206 | id="perspective3083-9" /><inkscape:perspective | ||
| 207 | sodipodi:type="inkscape:persp3d" | ||
| 208 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 209 | inkscape:vp_y="0 : 1000 : 0" | ||
| 210 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 211 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 212 | id="perspective23419-4" /><inkscape:perspective | ||
| 213 | sodipodi:type="inkscape:persp3d" | ||
| 214 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 215 | inkscape:vp_y="0 : 1000 : 0" | ||
| 216 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 217 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 218 | id="perspective27913-9" /><inkscape:perspective | ||
| 219 | id="perspective27913-5-1" | ||
| 220 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 221 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 222 | inkscape:vp_y="0 : 1000 : 0" | ||
| 223 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 224 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 225 | id="perspective23419-6-7" | ||
| 226 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 227 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 228 | inkscape:vp_y="0 : 1000 : 0" | ||
| 229 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 230 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 231 | id="perspective3083-3-75" | ||
| 232 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 233 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 234 | inkscape:vp_y="0 : 1000 : 0" | ||
| 235 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 236 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 237 | sodipodi:type="inkscape:persp3d" | ||
| 238 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 239 | inkscape:vp_y="0 : 1000 : 0" | ||
| 240 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 241 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 242 | id="perspective8562-2-1" /><inkscape:perspective | ||
| 243 | sodipodi:type="inkscape:persp3d" | ||
| 244 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 245 | inkscape:vp_y="0 : 1000 : 0" | ||
| 246 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 247 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 248 | id="perspective9337-7-1" /><inkscape:perspective | ||
| 249 | sodipodi:type="inkscape:persp3d" | ||
| 250 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 251 | inkscape:vp_y="0 : 1000 : 0" | ||
| 252 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 253 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 254 | id="perspective12409-1-4" /><inkscape:perspective | ||
| 255 | sodipodi:type="inkscape:persp3d" | ||
| 256 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 257 | inkscape:vp_y="0 : 1000 : 0" | ||
| 258 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 259 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 260 | id="perspective16301-9-00" /><inkscape:perspective | ||
| 261 | sodipodi:type="inkscape:persp3d" | ||
| 262 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 263 | inkscape:vp_y="0 : 1000 : 0" | ||
| 264 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 265 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 266 | id="perspective37556-9-7" /><inkscape:perspective | ||
| 267 | sodipodi:type="inkscape:persp3d" | ||
| 268 | inkscape:vp_x="0 : 698.03125 : 1" | ||
| 269 | inkscape:vp_y="0 : 1000 : 0" | ||
| 270 | inkscape:vp_z="1396.0651 : 698.03125 : 1" | ||
| 271 | inkscape:persp3d-origin="698.03253 : 465.35417 : 1" | ||
| 272 | id="perspective46224" /><inkscape:perspective | ||
| 273 | sodipodi:type="inkscape:persp3d" | ||
| 274 | inkscape:vp_x="0 : 270.70999 : 1" | ||
| 275 | inkscape:vp_y="0 : 1000 : 0" | ||
| 276 | inkscape:vp_z="541.41998 : 270.70999 : 1" | ||
| 277 | inkscape:persp3d-origin="270.70999 : 180.47333 : 1" | ||
| 278 | id="perspective56159" /><inkscape:perspective | ||
| 279 | id="perspective37556-9-4" | ||
| 280 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 281 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 282 | inkscape:vp_y="0 : 1000 : 0" | ||
| 283 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 284 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 285 | id="perspective16301-9-0" | ||
| 286 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 287 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 288 | inkscape:vp_y="0 : 1000 : 0" | ||
| 289 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 290 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 291 | id="perspective12409-1-3" | ||
| 292 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 293 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 294 | inkscape:vp_y="0 : 1000 : 0" | ||
| 295 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 296 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 297 | id="perspective9337-7-4" | ||
| 298 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 299 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 300 | inkscape:vp_y="0 : 1000 : 0" | ||
| 301 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 302 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 303 | id="perspective8562-2-3" | ||
| 304 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 305 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 306 | inkscape:vp_y="0 : 1000 : 0" | ||
| 307 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 308 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 309 | sodipodi:type="inkscape:persp3d" | ||
| 310 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 311 | inkscape:vp_y="0 : 1000 : 0" | ||
| 312 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 313 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 314 | id="perspective3083-3-7" /><inkscape:perspective | ||
| 315 | sodipodi:type="inkscape:persp3d" | ||
| 316 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 317 | inkscape:vp_y="0 : 1000 : 0" | ||
| 318 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 319 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 320 | id="perspective23419-6-5" /><inkscape:perspective | ||
| 321 | sodipodi:type="inkscape:persp3d" | ||
| 322 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 323 | inkscape:vp_y="0 : 1000 : 0" | ||
| 324 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 325 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 326 | id="perspective27913-5-6" /><inkscape:perspective | ||
| 327 | id="perspective27913-0" | ||
| 328 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 329 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 330 | inkscape:vp_y="0 : 1000 : 0" | ||
| 331 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 332 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 333 | id="perspective23419-8" | ||
| 334 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 335 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 336 | inkscape:vp_y="0 : 1000 : 0" | ||
| 337 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 338 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 339 | id="perspective3083-7" | ||
| 340 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 341 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 342 | inkscape:vp_y="0 : 1000 : 0" | ||
| 343 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 344 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 345 | sodipodi:type="inkscape:persp3d" | ||
| 346 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 347 | inkscape:vp_y="0 : 1000 : 0" | ||
| 348 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 349 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 350 | id="perspective8562-6" /><inkscape:perspective | ||
| 351 | sodipodi:type="inkscape:persp3d" | ||
| 352 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 353 | inkscape:vp_y="0 : 1000 : 0" | ||
| 354 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 355 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 356 | id="perspective9337-5" /><inkscape:perspective | ||
| 357 | sodipodi:type="inkscape:persp3d" | ||
| 358 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 359 | inkscape:vp_y="0 : 1000 : 0" | ||
| 360 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 361 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 362 | id="perspective12409-0" /><inkscape:perspective | ||
| 363 | sodipodi:type="inkscape:persp3d" | ||
| 364 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 365 | inkscape:vp_y="0 : 1000 : 0" | ||
| 366 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 367 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 368 | id="perspective16301-0" /><inkscape:perspective | ||
| 369 | sodipodi:type="inkscape:persp3d" | ||
| 370 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 371 | inkscape:vp_y="0 : 1000 : 0" | ||
| 372 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 373 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 374 | id="perspective37556-7" /><inkscape:perspective | ||
| 375 | id="perspective37556-9-49" | ||
| 376 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 377 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 378 | inkscape:vp_y="0 : 1000 : 0" | ||
| 379 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 380 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 381 | id="perspective16301-9-2" | ||
| 382 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 383 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 384 | inkscape:vp_y="0 : 1000 : 0" | ||
| 385 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 386 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 387 | id="perspective12409-1-9" | ||
| 388 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 389 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 390 | inkscape:vp_y="0 : 1000 : 0" | ||
| 391 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 392 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 393 | id="perspective9337-7-40" | ||
| 394 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 395 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 396 | inkscape:vp_y="0 : 1000 : 0" | ||
| 397 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 398 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 399 | id="perspective8562-2-0" | ||
| 400 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 401 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 402 | inkscape:vp_y="0 : 1000 : 0" | ||
| 403 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 404 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 405 | sodipodi:type="inkscape:persp3d" | ||
| 406 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 407 | inkscape:vp_y="0 : 1000 : 0" | ||
| 408 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 409 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 410 | id="perspective3083-3-6" /><inkscape:perspective | ||
| 411 | sodipodi:type="inkscape:persp3d" | ||
| 412 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 413 | inkscape:vp_y="0 : 1000 : 0" | ||
| 414 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 415 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 416 | id="perspective23419-6-3" /><inkscape:perspective | ||
| 417 | sodipodi:type="inkscape:persp3d" | ||
| 418 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 419 | inkscape:vp_y="0 : 1000 : 0" | ||
| 420 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 421 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 422 | id="perspective27913-5-8" /><inkscape:perspective | ||
| 423 | id="perspective27913-3" | ||
| 424 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 425 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 426 | inkscape:vp_y="0 : 1000 : 0" | ||
| 427 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 428 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 429 | id="perspective23419-0" | ||
| 430 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 431 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 432 | inkscape:vp_y="0 : 1000 : 0" | ||
| 433 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 434 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 435 | id="perspective3083-30" | ||
| 436 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 437 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 438 | inkscape:vp_y="0 : 1000 : 0" | ||
| 439 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 440 | sodipodi:type="inkscape:persp3d" /><inkscape:perspective | ||
| 441 | sodipodi:type="inkscape:persp3d" | ||
| 442 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 443 | inkscape:vp_y="0 : 1000 : 0" | ||
| 444 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 445 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 446 | id="perspective8562-0" /><inkscape:perspective | ||
| 447 | sodipodi:type="inkscape:persp3d" | ||
| 448 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 449 | inkscape:vp_y="0 : 1000 : 0" | ||
| 450 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 451 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 452 | id="perspective9337-1" /><inkscape:perspective | ||
| 453 | sodipodi:type="inkscape:persp3d" | ||
| 454 | inkscape:vp_x="0 : 270.7085 : 1" | ||
| 455 | inkscape:vp_y="0 : 1000 : 0" | ||
| 456 | inkscape:vp_z="541.41699 : 270.7085 : 1" | ||
| 457 | inkscape:persp3d-origin="270.7085 : 180.47233 : 1" | ||
| 458 | id="perspective12409-00" /><inkscape:perspective | ||
| 459 | sodipodi:type="inkscape:persp3d" | ||
| 460 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 461 | inkscape:vp_y="0 : 1000 : 0" | ||
| 462 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 463 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 464 | id="perspective16301-7" /><inkscape:perspective | ||
| 465 | sodipodi:type="inkscape:persp3d" | ||
| 466 | inkscape:vp_x="0 : 338.38501 : 1" | ||
| 467 | inkscape:vp_y="0 : 1000 : 0" | ||
| 468 | inkscape:vp_z="676.77124 : 338.38501 : 1" | ||
| 469 | inkscape:persp3d-origin="338.38562 : 225.59001 : 1" | ||
| 470 | id="perspective37556-3" /><inkscape:perspective | ||
| 471 | sodipodi:type="inkscape:persp3d" | ||
| 472 | inkscape:vp_x="0 : 0.5 : 1" | ||
| 473 | inkscape:vp_y="0 : 1000 : 0" | ||
| 474 | inkscape:vp_z="1 : 0.5 : 1" | ||
| 475 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | ||
| 476 | id="perspective3083-79" /><marker | ||
| 477 | orient="auto" | ||
| 478 | id="DistanceX" | ||
| 479 | style="overflow:visible" | ||
| 480 | refX="0.0" | ||
| 481 | refY="0.0"><path | ||
| 482 | id="path9" | ||
| 483 | d="M 3,-3 L -3,3 M 0,-5 L 0,5" | ||
| 484 | style="stroke:#000000; stroke-width:0.5" /></marker><pattern | ||
| 485 | id="Hatch" | ||
| 486 | x="0" | ||
| 487 | y="0" | ||
| 488 | patternUnits="userSpaceOnUse" | ||
| 489 | width="8" | ||
| 490 | height="8"><path | ||
| 491 | id="path12" | ||
| 492 | d="M8 4 l-4,4" | ||
| 493 | stroke-width="0.25" | ||
| 494 | stroke="#000000" | ||
| 495 | linecap="square" /><path | ||
| 496 | id="path14" | ||
| 497 | d="M6 2 l-4,4" | ||
| 498 | stroke-width="0.25" | ||
| 499 | stroke="#000000" | ||
| 500 | linecap="square" /><path | ||
| 501 | id="path16" | ||
| 502 | d="M4 0 l-4,4" | ||
| 503 | stroke-width="0.25" | ||
| 504 | stroke="#000000" | ||
| 505 | linecap="square" /></pattern><symbol | ||
| 506 | id="*Model_Space" /><symbol | ||
| 507 | id="*Paper_Space" /><symbol | ||
| 508 | id="*Paper_Space0" /><marker | ||
| 509 | orient="auto" | ||
| 510 | id="DistanceX-8" | ||
| 511 | style="overflow:visible" | ||
| 512 | refX="0.0" | ||
| 513 | refY="0.0"><path | ||
| 514 | id="path9-7" | ||
| 515 | d="M 3,-3 L -3,3 M 0,-5 L 0,5" | ||
| 516 | style="stroke:#000000; stroke-width:0.5" /></marker><pattern | ||
| 517 | id="Hatch-9" | ||
| 518 | x="0" | ||
| 519 | y="0" | ||
| 520 | patternUnits="userSpaceOnUse" | ||
| 521 | width="8" | ||
| 522 | height="8"><path | ||
| 523 | id="path12-5" | ||
| 524 | d="M8 4 l-4,4" | ||
| 525 | stroke-width="0.25" | ||
| 526 | stroke="#000000" | ||
| 527 | linecap="square" /><path | ||
| 528 | id="path14-5" | ||
| 529 | d="M6 2 l-4,4" | ||
| 530 | stroke-width="0.25" | ||
| 531 | stroke="#000000" | ||
| 532 | linecap="square" /><path | ||
| 533 | id="path16-2" | ||
| 534 | d="M4 0 l-4,4" | ||
| 535 | stroke-width="0.25" | ||
| 536 | stroke="#000000" | ||
| 537 | linecap="square" /></pattern><symbol | ||
| 538 | id="*Model_Space-0" /><symbol | ||
| 539 | id="*Paper_Space-5" /><symbol | ||
| 540 | id="*Paper_Space0-0" /></defs><sodipodi:namedview | ||
| 541 | inkscape:window-height="1019" | ||
| 542 | inkscape:window-width="1920" | ||
| 543 | inkscape:pageshadow="2" | ||
| 544 | inkscape:pageopacity="0.0" | ||
| 545 | guidetolerance="10.0" | ||
| 546 | gridtolerance="10.0" | ||
| 547 | objecttolerance="10.0" | ||
| 548 | borderopacity="1.0" | ||
| 549 | bordercolor="#666666" | ||
| 550 | pagecolor="#ffffff" | ||
| 551 | id="base" | ||
| 552 | inkscape:zoom="0.66928853" | ||
| 553 | inkscape:cx="198.17365" | ||
| 554 | inkscape:cy="416.82194" | ||
| 555 | inkscape:window-x="0" | ||
| 556 | inkscape:window-y="0" | ||
| 557 | inkscape:current-layer="g21-5" | ||
| 558 | showgrid="false" | ||
| 559 | inkscape:window-maximized="1" | ||
| 560 | inkscape:document-units="mm" | ||
| 561 | units="mm" /><g | ||
| 562 | inkscape:groupmode="layer" | ||
| 563 | id="layer7" | ||
| 564 | inkscape:label="Design Template" | ||
| 565 | style="display:inline" | ||
| 566 | sodipodi:insensitive="true"><g | ||
| 567 | id="layer7-8" | ||
| 568 | inkscape:label="Design Template" | ||
| 569 | transform="translate(0.7799525,0.1277278)" /><g | ||
| 570 | id="layer6" | ||
| 571 | inkscape:label="Design Template" | ||
| 572 | transform="translate(0.5338379,0.419927)" /><g | ||
| 573 | id="Layer_x0020_1-6" | ||
| 574 | style="fill:#f6921e;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4" | ||
| 575 | transform="translate(681.42836,-160.06815)"><g | ||
| 576 | id="g4698-5" | ||
| 577 | transform="translate(-46.145191,-43.270487)" /></g><rect | ||
| 578 | id="rect21823" | ||
| 579 | height="541.41736" | ||
| 580 | width="541.41736" | ||
| 581 | x="0.89512694" | ||
| 582 | y="0.57997072" | ||
| 583 | style="fill:#f6921e" /><rect | ||
| 584 | id="rect21825" | ||
| 585 | height="513.0722" | ||
| 586 | width="513.07129" | ||
| 587 | y="14.753002" | ||
| 588 | x="15.068135" | ||
| 589 | style="fill:#ffffff" /><g | ||
| 590 | id="layer5" | ||
| 591 | inkscape:label="Your Design" | ||
| 592 | transform="translate(681.42836,-160.06815)" /><g | ||
| 593 | id="layer9-1" | ||
| 594 | inkscape:label="Your Design" | ||
| 595 | transform="translate(0.7799525,0.1277278)" /><g | ||
| 596 | 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" | ||
| 597 | id="text4741"><path | ||
| 598 | 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" | ||
| 599 | id="path3154" | ||
| 600 | inkscape:connector-curvature="0" /><path | ||
| 601 | 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" | ||
| 602 | id="path3156" | ||
| 603 | inkscape:connector-curvature="0" /><path | ||
| 604 | 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" | ||
| 605 | id="path3158" | ||
| 606 | inkscape:connector-curvature="0" /><path | ||
| 607 | 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" | ||
| 608 | id="path3160" | ||
| 609 | inkscape:connector-curvature="0" /><path | ||
| 610 | d="m 600.8894,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 611 | id="path3162" | ||
| 612 | inkscape:connector-curvature="0" /><path | ||
| 613 | 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" | ||
| 614 | id="path3164" | ||
| 615 | inkscape:connector-curvature="0" /><path | ||
| 616 | 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" | ||
| 617 | id="path3166" | ||
| 618 | inkscape:connector-curvature="0" /><path | ||
| 619 | 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" | ||
| 620 | id="path3168" | ||
| 621 | inkscape:connector-curvature="0" /><path | ||
| 622 | 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" | ||
| 623 | id="path3170" | ||
| 624 | inkscape:connector-curvature="0" /><path | ||
| 625 | 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" | ||
| 626 | id="path3172" | ||
| 627 | inkscape:connector-curvature="0" /><path | ||
| 628 | 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" | ||
| 629 | id="path3174" | ||
| 630 | inkscape:connector-curvature="0" /><path | ||
| 631 | 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" | ||
| 632 | id="path3176" | ||
| 633 | inkscape:connector-curvature="0" /><path | ||
| 634 | 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" | ||
| 635 | id="path3178" | ||
| 636 | inkscape:connector-curvature="0" /><path | ||
| 637 | 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" | ||
| 638 | id="path3180" | ||
| 639 | inkscape:connector-curvature="0" /><path | ||
| 640 | 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" | ||
| 641 | id="path3182" | ||
| 642 | inkscape:connector-curvature="0" /><path | ||
| 643 | 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" | ||
| 644 | id="path3184" | ||
| 645 | inkscape:connector-curvature="0" /><path | ||
| 646 | d="m 685.9394,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 647 | id="path3186" | ||
| 648 | inkscape:connector-curvature="0" /><path | ||
| 649 | 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" | ||
| 650 | id="path3188" | ||
| 651 | inkscape:connector-curvature="0" /><path | ||
| 652 | 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" | ||
| 653 | id="path3190" | ||
| 654 | inkscape:connector-curvature="0" /><path | ||
| 655 | 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" | ||
| 656 | id="path3192" | ||
| 657 | inkscape:connector-curvature="0" /><path | ||
| 658 | 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" | ||
| 659 | id="path3194" | ||
| 660 | inkscape:connector-curvature="0" /><path | ||
| 661 | 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" | ||
| 662 | id="path3196" | ||
| 663 | inkscape:connector-curvature="0" /><path | ||
| 664 | 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" | ||
| 665 | id="path3198" | ||
| 666 | inkscape:connector-curvature="0" /><path | ||
| 667 | 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" | ||
| 668 | id="path3200" | ||
| 669 | inkscape:connector-curvature="0" /><path | ||
| 670 | 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" | ||
| 671 | id="path3202" | ||
| 672 | inkscape:connector-curvature="0" /><path | ||
| 673 | 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" | ||
| 674 | id="path3204" | ||
| 675 | inkscape:connector-curvature="0" /><path | ||
| 676 | 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" | ||
| 677 | id="path3206" | ||
| 678 | inkscape:connector-curvature="0" /><path | ||
| 679 | 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" | ||
| 680 | id="path3208" | ||
| 681 | inkscape:connector-curvature="0" /><path | ||
| 682 | d="m 765.56441,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 683 | id="path3210" | ||
| 684 | inkscape:connector-curvature="0" /><path | ||
| 685 | 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" | ||
| 686 | id="path3212" | ||
| 687 | inkscape:connector-curvature="0" /><path | ||
| 688 | 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" | ||
| 689 | id="path3214" | ||
| 690 | inkscape:connector-curvature="0" /><path | ||
| 691 | 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" | ||
| 692 | id="path3216" | ||
| 693 | inkscape:connector-curvature="0" /><path | ||
| 694 | 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" | ||
| 695 | id="path3218" | ||
| 696 | inkscape:connector-curvature="0" /><path | ||
| 697 | 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" | ||
| 698 | id="path3220" | ||
| 699 | inkscape:connector-curvature="0" /><path | ||
| 700 | 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" | ||
| 701 | id="path3222" | ||
| 702 | inkscape:connector-curvature="0" /><path | ||
| 703 | 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" | ||
| 704 | id="path3224" | ||
| 705 | inkscape:connector-curvature="0" /><path | ||
| 706 | 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" | ||
| 707 | id="path3226" | ||
| 708 | inkscape:connector-curvature="0" /><path | ||
| 709 | 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" | ||
| 710 | id="path3228" | ||
| 711 | inkscape:connector-curvature="0" /><path | ||
| 712 | 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" | ||
| 713 | id="path3230" | ||
| 714 | inkscape:connector-curvature="0" /><path | ||
| 715 | 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" | ||
| 716 | id="path3232" | ||
| 717 | inkscape:connector-curvature="0" /><path | ||
| 718 | 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" | ||
| 719 | id="path3234" | ||
| 720 | inkscape:connector-curvature="0" /><path | ||
| 721 | 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" | ||
| 722 | id="path3236" | ||
| 723 | inkscape:connector-curvature="0" /><path | ||
| 724 | 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" | ||
| 725 | id="path3238" | ||
| 726 | inkscape:connector-curvature="0" /><path | ||
| 727 | d="m 857.9644,336.49096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 728 | id="path3240" | ||
| 729 | inkscape:connector-curvature="0" /><path | ||
| 730 | 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" | ||
| 731 | id="path3242" | ||
| 732 | inkscape:connector-curvature="0" /><path | ||
| 733 | 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" | ||
| 734 | id="path3244" | ||
| 735 | inkscape:connector-curvature="0" /><path | ||
| 736 | 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" | ||
| 737 | id="path3246" | ||
| 738 | inkscape:connector-curvature="0" /><path | ||
| 739 | 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" | ||
| 740 | id="path3248" | ||
| 741 | inkscape:connector-curvature="0" /><path | ||
| 742 | 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" | ||
| 743 | id="path3250" | ||
| 744 | inkscape:connector-curvature="0" /><path | ||
| 745 | 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" | ||
| 746 | id="path3252" | ||
| 747 | inkscape:connector-curvature="0" /><path | ||
| 748 | 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" | ||
| 749 | id="path3254" | ||
| 750 | inkscape:connector-curvature="0" /><path | ||
| 751 | 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" | ||
| 752 | id="path3256" | ||
| 753 | inkscape:connector-curvature="0" /><path | ||
| 754 | 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" | ||
| 755 | id="path3258" | ||
| 756 | inkscape:connector-curvature="0" /><path | ||
| 757 | 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" | ||
| 758 | id="path3260" | ||
| 759 | inkscape:connector-curvature="0" /><path | ||
| 760 | 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" | ||
| 761 | id="path3262" | ||
| 762 | inkscape:connector-curvature="0" /><path | ||
| 763 | 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" | ||
| 764 | id="path3264" | ||
| 765 | inkscape:connector-curvature="0" /><path | ||
| 766 | 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" | ||
| 767 | id="path3266" | ||
| 768 | inkscape:connector-curvature="0" /><path | ||
| 769 | 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" | ||
| 770 | id="path3268" | ||
| 771 | inkscape:connector-curvature="0" /><path | ||
| 772 | 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" | ||
| 773 | id="path3270" | ||
| 774 | inkscape:connector-curvature="0" /><path | ||
| 775 | 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" | ||
| 776 | id="path3272" | ||
| 777 | inkscape:connector-curvature="0" /><path | ||
| 778 | 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" | ||
| 779 | id="path3274" | ||
| 780 | inkscape:connector-curvature="0" /><path | ||
| 781 | 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" | ||
| 782 | id="path3276" | ||
| 783 | inkscape:connector-curvature="0" /><path | ||
| 784 | 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" | ||
| 785 | id="path3278" | ||
| 786 | inkscape:connector-curvature="0" /><path | ||
| 787 | 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" | ||
| 788 | id="path3280" | ||
| 789 | inkscape:connector-curvature="0" /><path | ||
| 790 | d="m 995.85345,343.61127 1.1539,0 0,1.38907 -1.1539,0 0,-1.38907" | ||
| 791 | id="path3282" | ||
| 792 | inkscape:connector-curvature="0" /><path | ||
| 793 | 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" | ||
| 794 | id="path3284" | ||
| 795 | inkscape:connector-curvature="0" /><path | ||
| 796 | 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" | ||
| 797 | id="path3286" | ||
| 798 | inkscape:connector-curvature="0" /><path | ||
| 799 | 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" | ||
| 800 | id="path3288" | ||
| 801 | inkscape:connector-curvature="0" /><path | ||
| 802 | 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" | ||
| 803 | id="path3290" | ||
| 804 | inkscape:connector-curvature="0" /><path | ||
| 805 | 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" | ||
| 806 | id="path3292" | ||
| 807 | inkscape:connector-curvature="0" /><path | ||
| 808 | 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" | ||
| 809 | id="path3294" | ||
| 810 | inkscape:connector-curvature="0" /><path | ||
| 811 | 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" | ||
| 812 | id="path3296" | ||
| 813 | inkscape:connector-curvature="0" /><path | ||
| 814 | 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" | ||
| 815 | id="path3298" | ||
| 816 | inkscape:connector-curvature="0" /><path | ||
| 817 | 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" | ||
| 818 | id="path3300" | ||
| 819 | inkscape:connector-curvature="0" /><path | ||
| 820 | 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" | ||
| 821 | id="path3302" | ||
| 822 | inkscape:connector-curvature="0" /><path | ||
| 823 | 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" | ||
| 824 | id="path3304" | ||
| 825 | inkscape:connector-curvature="0" /><path | ||
| 826 | 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" | ||
| 827 | id="path3306" | ||
| 828 | inkscape:connector-curvature="0" /><path | ||
| 829 | 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" | ||
| 830 | id="path3308" | ||
| 831 | inkscape:connector-curvature="0" /><path | ||
| 832 | 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" | ||
| 833 | id="path3310" | ||
| 834 | inkscape:connector-curvature="0" /><path | ||
| 835 | 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" | ||
| 836 | id="path3312" | ||
| 837 | inkscape:connector-curvature="0" /><path | ||
| 838 | 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" | ||
| 839 | id="path3314" | ||
| 840 | inkscape:connector-curvature="0" /><path | ||
| 841 | 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" | ||
| 842 | id="path3316" | ||
| 843 | inkscape:connector-curvature="0" /><path | ||
| 844 | 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" | ||
| 845 | id="path3318" | ||
| 846 | inkscape:connector-curvature="0" /><path | ||
| 847 | 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" | ||
| 848 | id="path3320" | ||
| 849 | inkscape:connector-curvature="0" /><path | ||
| 850 | 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" | ||
| 851 | id="path3322" | ||
| 852 | inkscape:connector-curvature="0" /><path | ||
| 853 | 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" | ||
| 854 | id="path3324" | ||
| 855 | inkscape:connector-curvature="0" /><path | ||
| 856 | 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" | ||
| 857 | id="path3326" | ||
| 858 | inkscape:connector-curvature="0" /><path | ||
| 859 | 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" | ||
| 860 | id="path3328" | ||
| 861 | inkscape:connector-curvature="0" /><path | ||
| 862 | 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" | ||
| 863 | id="path3330" | ||
| 864 | inkscape:connector-curvature="0" /><path | ||
| 865 | 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" | ||
| 866 | id="path3332" | ||
| 867 | inkscape:connector-curvature="0" /><path | ||
| 868 | d="m 753.81752,354.97096 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 869 | id="path3334" | ||
| 870 | inkscape:connector-curvature="0" /><path | ||
| 871 | 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" | ||
| 872 | id="path3336" | ||
| 873 | inkscape:connector-curvature="0" /><path | ||
| 874 | d="m 763.9566,362.09127 1.1539,0 0,1.38907 -1.1539,0 0,-1.38907" | ||
| 875 | id="path3338" | ||
| 876 | inkscape:connector-curvature="0" /><path | ||
| 877 | 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" | ||
| 878 | id="path3340" | ||
| 879 | inkscape:connector-curvature="0" /><path | ||
| 880 | 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" | ||
| 881 | id="path3342" | ||
| 882 | inkscape:connector-curvature="0" /><path | ||
| 883 | 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" | ||
| 884 | id="path3344" | ||
| 885 | inkscape:connector-curvature="0" /><path | ||
| 886 | 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" | ||
| 887 | id="path3346" | ||
| 888 | inkscape:connector-curvature="0" /><path | ||
| 889 | d="m 600.69253,373.45096 1.00625,0 0,8.50937 -1.00625,0 0,-8.50937" | ||
| 890 | id="path3348" | ||
| 891 | inkscape:connector-curvature="0" /><path | ||
| 892 | 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" | ||
| 893 | id="path3350" | ||
| 894 | inkscape:connector-curvature="0" /><path | ||
| 895 | 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" | ||
| 896 | id="path3352" | ||
| 897 | inkscape:connector-curvature="0" /><path | ||
| 898 | 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" | ||
| 899 | id="path3354" | ||
| 900 | inkscape:connector-curvature="0" /><path | ||
| 901 | 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" | ||
| 902 | id="path3356" | ||
| 903 | inkscape:connector-curvature="0" /><path | ||
| 904 | 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" | ||
| 905 | id="path3358" | ||
| 906 | inkscape:connector-curvature="0" /><path | ||
| 907 | 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" | ||
| 908 | id="path3360" | ||
| 909 | inkscape:connector-curvature="0" /><path | ||
| 910 | 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" | ||
| 911 | id="path3362" | ||
| 912 | inkscape:connector-curvature="0" /><path | ||
| 913 | 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" | ||
| 914 | id="path3364" | ||
| 915 | inkscape:connector-curvature="0" /><path | ||
| 916 | 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" | ||
| 917 | id="path3366" | ||
| 918 | inkscape:connector-curvature="0" /><path | ||
| 919 | 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" | ||
| 920 | id="path3368" | ||
| 921 | inkscape:connector-curvature="0" /><path | ||
| 922 | 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" | ||
| 923 | id="path3370" | ||
| 924 | inkscape:connector-curvature="0" /><path | ||
| 925 | 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" | ||
| 926 | id="path3372" | ||
| 927 | inkscape:connector-curvature="0" /><path | ||
| 928 | 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" | ||
| 929 | id="path3374" | ||
| 930 | inkscape:connector-curvature="0" /><path | ||
| 931 | 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" | ||
| 932 | id="path3376" | ||
| 933 | inkscape:connector-curvature="0" /><path | ||
| 934 | 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" | ||
| 935 | id="path3378" | ||
| 936 | inkscape:connector-curvature="0" /><path | ||
| 937 | 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" | ||
| 938 | id="path3380" | ||
| 939 | inkscape:connector-curvature="0" /><path | ||
| 940 | 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" | ||
| 941 | id="path3382" | ||
| 942 | inkscape:connector-curvature="0" /><path | ||
| 943 | 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" | ||
| 944 | id="path3384" | ||
| 945 | inkscape:connector-curvature="0" /><path | ||
| 946 | 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" | ||
| 947 | id="path3386" | ||
| 948 | inkscape:connector-curvature="0" /><path | ||
| 949 | 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" | ||
| 950 | id="path3388" | ||
| 951 | inkscape:connector-curvature="0" /><path | ||
| 952 | 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" | ||
| 953 | id="path3390" | ||
| 954 | inkscape:connector-curvature="0" /><path | ||
| 955 | d="m 752.19877,380.57127 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" | ||
| 956 | id="path3392" | ||
| 957 | inkscape:connector-curvature="0" /><path | ||
| 958 | 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" | ||
| 959 | id="path3394" | ||
| 960 | inkscape:connector-curvature="0" /><path | ||
| 961 | 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" | ||
| 962 | id="path3396" | ||
| 963 | inkscape:connector-curvature="0" /><path | ||
| 964 | 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" | ||
| 965 | id="path3398" | ||
| 966 | inkscape:connector-curvature="0" /><path | ||
| 967 | 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" | ||
| 968 | id="path3400" | ||
| 969 | inkscape:connector-curvature="0" /><path | ||
| 970 | 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" | ||
| 971 | id="path3402" | ||
| 972 | inkscape:connector-curvature="0" /><path | ||
| 973 | 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" | ||
| 974 | id="path3404" | ||
| 975 | inkscape:connector-curvature="0" /><path | ||
| 976 | d="m 796.4519,380.57127 1.1539,0 0,1.38906 -1.1539,0 0,-1.38906" | ||
| 977 | id="path3406" | ||
| 978 | inkscape:connector-curvature="0" /><path | ||
| 979 | 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" | ||
| 980 | id="path3408" | ||
| 981 | inkscape:connector-curvature="0" /><path | ||
| 982 | 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" | ||
| 983 | id="path3410" | ||
| 984 | inkscape:connector-curvature="0" /><path | ||
| 985 | 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" | ||
| 986 | id="path3412" | ||
| 987 | inkscape:connector-curvature="0" /><path | ||
| 988 | d="m 825.6058,373.79549 0.92969,0 -2.84375,9.20391 -0.92969,0 2.84375,-9.20391" | ||
| 989 | id="path3414" | ||
| 990 | inkscape:connector-curvature="0" /><path | ||
| 991 | 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" | ||
| 992 | id="path3416" | ||
| 993 | inkscape:connector-curvature="0" /><path | ||
| 994 | 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" | ||
| 995 | id="path3418" | ||
| 996 | inkscape:connector-curvature="0" /><path | ||
| 997 | 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" | ||
| 998 | id="path3420" | ||
| 999 | inkscape:connector-curvature="0" /><path | ||
| 1000 | 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" | ||
| 1001 | id="path3422" | ||
| 1002 | inkscape:connector-curvature="0" /><path | ||
| 1003 | 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" | ||
| 1004 | id="path3424" | ||
| 1005 | inkscape:connector-curvature="0" /></g><g | ||
| 1006 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1007 | id="text4751"><path | ||
| 1008 | 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" | ||
| 1009 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1010 | id="path3427" | ||
| 1011 | inkscape:connector-curvature="0" /><path | ||
| 1012 | 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" | ||
| 1013 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1014 | id="path3429" | ||
| 1015 | inkscape:connector-curvature="0" /><path | ||
| 1016 | 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" | ||
| 1017 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1018 | id="path3431" | ||
| 1019 | inkscape:connector-curvature="0" /><path | ||
| 1020 | 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" | ||
| 1021 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1022 | id="path3433" | ||
| 1023 | inkscape:connector-curvature="0" /><path | ||
| 1024 | 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" | ||
| 1025 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1026 | id="path3435" | ||
| 1027 | inkscape:connector-curvature="0" /><path | ||
| 1028 | 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" | ||
| 1029 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1030 | id="path3437" | ||
| 1031 | inkscape:connector-curvature="0" /><path | ||
| 1032 | 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" | ||
| 1033 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1034 | id="path3439" | ||
| 1035 | inkscape:connector-curvature="0" /><path | ||
| 1036 | 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" | ||
| 1037 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1038 | id="path3441" | ||
| 1039 | inkscape:connector-curvature="0" /><path | ||
| 1040 | d="m 661.6937,302.78981 1.65704,0 0,12.24727 -1.65704,0 0,-12.24727" | ||
| 1041 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1042 | id="path3443" | ||
| 1043 | inkscape:connector-curvature="0" /><path | ||
| 1044 | 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" | ||
| 1045 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1046 | id="path3445" | ||
| 1047 | inkscape:connector-curvature="0" /><path | ||
| 1048 | 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" | ||
| 1049 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1050 | id="path3447" | ||
| 1051 | inkscape:connector-curvature="0" /><path | ||
| 1052 | 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" | ||
| 1053 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1054 | id="path3449" | ||
| 1055 | inkscape:connector-curvature="0" /><path | ||
| 1056 | 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" | ||
| 1057 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1058 | id="path3451" | ||
| 1059 | inkscape:connector-curvature="0" /><path | ||
| 1060 | 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" | ||
| 1061 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1062 | id="path3453" | ||
| 1063 | inkscape:connector-curvature="0" /><path | ||
| 1064 | 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" | ||
| 1065 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1066 | id="path3455" | ||
| 1067 | inkscape:connector-curvature="0" /><path | ||
| 1068 | 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" | ||
| 1069 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1070 | id="path3457" | ||
| 1071 | inkscape:connector-curvature="0" /><path | ||
| 1072 | 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" | ||
| 1073 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1074 | id="path3459" | ||
| 1075 | inkscape:connector-curvature="0" /><path | ||
| 1076 | 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" | ||
| 1077 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1078 | id="path3461" | ||
| 1079 | inkscape:connector-curvature="0" /><path | ||
| 1080 | 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" | ||
| 1081 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1082 | id="path3463" | ||
| 1083 | inkscape:connector-curvature="0" /><path | ||
| 1084 | 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" | ||
| 1085 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1086 | id="path3465" | ||
| 1087 | inkscape:connector-curvature="0" /></g><g | ||
| 1088 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1089 | id="text4803"><path | ||
| 1090 | 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" | ||
| 1091 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1092 | id="path4445" | ||
| 1093 | inkscape:connector-curvature="0" /><path | ||
| 1094 | 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" | ||
| 1095 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1096 | id="path4447" | ||
| 1097 | inkscape:connector-curvature="0" /><path | ||
| 1098 | 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" | ||
| 1099 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1100 | id="path4449" | ||
| 1101 | inkscape:connector-curvature="0" /><path | ||
| 1102 | 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" | ||
| 1103 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1104 | id="path4451" | ||
| 1105 | inkscape:connector-curvature="0" /><path | ||
| 1106 | 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" | ||
| 1107 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1108 | id="path4453" | ||
| 1109 | inkscape:connector-curvature="0" /><path | ||
| 1110 | 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" | ||
| 1111 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1112 | id="path4455" | ||
| 1113 | inkscape:connector-curvature="0" /><path | ||
| 1114 | d="m 626.01831,10.626528 4.42149,0 0,1.345312 -4.42149,0 0,-1.345312" | ||
| 1115 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1116 | id="path4457" | ||
| 1117 | inkscape:connector-curvature="0" /><path | ||
| 1118 | 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" | ||
| 1119 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1120 | id="path4459" | ||
| 1121 | inkscape:connector-curvature="0" /><path | ||
| 1122 | 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" | ||
| 1123 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1124 | id="path4461" | ||
| 1125 | inkscape:connector-curvature="0" /><path | ||
| 1126 | 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" | ||
| 1127 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1128 | id="path4463" | ||
| 1129 | inkscape:connector-curvature="0" /><path | ||
| 1130 | 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" | ||
| 1131 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1132 | id="path4465" | ||
| 1133 | inkscape:connector-curvature="0" /><path | ||
| 1134 | 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" | ||
| 1135 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1136 | id="path4467" | ||
| 1137 | inkscape:connector-curvature="0" /><path | ||
| 1138 | 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" | ||
| 1139 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1140 | id="path4469" | ||
| 1141 | inkscape:connector-curvature="0" /><path | ||
| 1142 | 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" | ||
| 1143 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1144 | id="path4471" | ||
| 1145 | inkscape:connector-curvature="0" /><path | ||
| 1146 | 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" | ||
| 1147 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1148 | id="path4473" | ||
| 1149 | inkscape:connector-curvature="0" /><path | ||
| 1150 | 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" | ||
| 1151 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1152 | id="path4475" | ||
| 1153 | inkscape:connector-curvature="0" /><path | ||
| 1154 | 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" | ||
| 1155 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1156 | id="path4477" | ||
| 1157 | inkscape:connector-curvature="0" /><path | ||
| 1158 | d="m 741.69059,3.137074 1.50938,0 0,12.764063 -1.50938,0 0,-12.764063" | ||
| 1159 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1160 | id="path4479" | ||
| 1161 | inkscape:connector-curvature="0" /><path | ||
| 1162 | 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" | ||
| 1163 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1164 | id="path4481" | ||
| 1165 | inkscape:connector-curvature="0" /><path | ||
| 1166 | 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" | ||
| 1167 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1168 | id="path4483" | ||
| 1169 | inkscape:connector-curvature="0" /><path | ||
| 1170 | 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" | ||
| 1171 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1172 | id="path4485" | ||
| 1173 | inkscape:connector-curvature="0" /></g><g | ||
| 1174 | transform="matrix(0.80000001,0,0,0.80000001,118.01204,0.26753544)" | ||
| 1175 | id="g4805"><path | ||
| 1176 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1177 | d="m 564.05103,55.710999 12.757,0 0,12.755999 -12.757,0 z" | ||
| 1178 | id="rect4807" | ||
| 1179 | inkscape:connector-curvature="0" /><path | ||
| 1180 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1181 | d="m 564.05103,78.594002 12.757,0 0,12.755999 -12.757,0 z" | ||
| 1182 | id="rect4809" | ||
| 1183 | inkscape:connector-curvature="0" /><path | ||
| 1184 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1185 | d="m 564.05103,101.477 12.757,0 0,12.756 -12.757,0 z" | ||
| 1186 | id="rect4811" | ||
| 1187 | inkscape:connector-curvature="0" /><path | ||
| 1188 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1189 | d="m 564.05103,124.359 12.757,0 0,12.756 -12.757,0 z" | ||
| 1190 | id="rect4813" | ||
| 1191 | inkscape:connector-curvature="0" /><path | ||
| 1192 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1193 | d="m 564.05103,147.242 12.757,0 0,12.756 -12.757,0 z" | ||
| 1194 | id="rect4815" | ||
| 1195 | inkscape:connector-curvature="0" /><path | ||
| 1196 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1197 | d="m 564.05103,170.12399 12.757,0 0,12.756 -12.757,0 z" | ||
| 1198 | id="rect4817" | ||
| 1199 | inkscape:connector-curvature="0" /><path | ||
| 1200 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1201 | d="m 564.05103,193.007 12.757,0 0,12.756 -12.757,0 z" | ||
| 1202 | id="rect4819" | ||
| 1203 | inkscape:connector-curvature="0" /><path | ||
| 1204 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1205 | d="m 564.05103,215.89 12.757,0 0,12.756 -12.757,0 z" | ||
| 1206 | id="rect4821" | ||
| 1207 | inkscape:connector-curvature="0" /><path | ||
| 1208 | style="fill:none;stroke:#f6921e;stroke-width:1.41729999" | ||
| 1209 | d="m 564.05103,238.772 12.757,0 0,12.756 -12.757,0 z" | ||
| 1210 | id="rect4825" | ||
| 1211 | inkscape:connector-curvature="0" /></g><g | ||
| 1212 | style="font-size:9.60000038px" | ||
| 1213 | id="text4831-2"><path | ||
| 1214 | 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" | ||
| 1215 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1216 | id="path4499" | ||
| 1217 | inkscape:connector-curvature="0" /><path | ||
| 1218 | 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" | ||
| 1219 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1220 | id="path4501" | ||
| 1221 | inkscape:connector-curvature="0" /><path | ||
| 1222 | 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" | ||
| 1223 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1224 | id="path4503" | ||
| 1225 | inkscape:connector-curvature="0" /><path | ||
| 1226 | 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" | ||
| 1227 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1228 | id="path4505" | ||
| 1229 | inkscape:connector-curvature="0" /><path | ||
| 1230 | 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" | ||
| 1231 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1232 | id="path4507" | ||
| 1233 | inkscape:connector-curvature="0" /><path | ||
| 1234 | 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" | ||
| 1235 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1236 | id="path4509" | ||
| 1237 | inkscape:connector-curvature="0" /><path | ||
| 1238 | 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" | ||
| 1239 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1240 | id="path4511" | ||
| 1241 | inkscape:connector-curvature="0" /><path | ||
| 1242 | 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" | ||
| 1243 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1244 | id="path4513" | ||
| 1245 | inkscape:connector-curvature="0" /><path | ||
| 1246 | 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" | ||
| 1247 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1248 | id="path4515" | ||
| 1249 | inkscape:connector-curvature="0" /><path | ||
| 1250 | 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" | ||
| 1251 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1252 | id="path4517" | ||
| 1253 | inkscape:connector-curvature="0" /><path | ||
| 1254 | d="m -127.41218,331.74354 1.10469,0 0,7.23516 3.97578,0 0,0.92969 -5.08047,0 0,-8.16485" | ||
| 1255 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1256 | id="path4519" | ||
| 1257 | inkscape:connector-curvature="0" /><path | ||
| 1258 | 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" | ||
| 1259 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1260 | id="path4521" | ||
| 1261 | inkscape:connector-curvature="0" /><path | ||
| 1262 | 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" | ||
| 1263 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1264 | id="path4523" | ||
| 1265 | inkscape:connector-curvature="0" /><path | ||
| 1266 | 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" | ||
| 1267 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1268 | id="path4525" | ||
| 1269 | inkscape:connector-curvature="0" /><path | ||
| 1270 | 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" | ||
| 1271 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1272 | id="path4527" | ||
| 1273 | inkscape:connector-curvature="0" /><path | ||
| 1274 | 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" | ||
| 1275 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1276 | id="path4529" | ||
| 1277 | inkscape:connector-curvature="0" /><path | ||
| 1278 | 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" | ||
| 1279 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1280 | id="path4531" | ||
| 1281 | inkscape:connector-curvature="0" /><path | ||
| 1282 | 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" | ||
| 1283 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1284 | id="path4533" | ||
| 1285 | inkscape:connector-curvature="0" /><path | ||
| 1286 | 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" | ||
| 1287 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1288 | id="path4535" | ||
| 1289 | inkscape:connector-curvature="0" /><path | ||
| 1290 | 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" | ||
| 1291 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1292 | id="path4537" | ||
| 1293 | inkscape:connector-curvature="0" /><path | ||
| 1294 | 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" | ||
| 1295 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1296 | id="path4539" | ||
| 1297 | inkscape:connector-curvature="0" /><path | ||
| 1298 | 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" | ||
| 1299 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1300 | id="path4541" | ||
| 1301 | inkscape:connector-curvature="0" /><path | ||
| 1302 | 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" | ||
| 1303 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1304 | id="path4543" | ||
| 1305 | inkscape:connector-curvature="0" /><path | ||
| 1306 | d="m -150.81843,344.83901 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 1307 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1308 | id="path4545" | ||
| 1309 | inkscape:connector-curvature="0" /><path | ||
| 1310 | 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" | ||
| 1311 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1312 | id="path4547" | ||
| 1313 | inkscape:connector-curvature="0" /><path | ||
| 1314 | 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" | ||
| 1315 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1316 | id="path4549" | ||
| 1317 | inkscape:connector-curvature="0" /><path | ||
| 1318 | 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" | ||
| 1319 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1320 | id="path4551" | ||
| 1321 | inkscape:connector-curvature="0" /><path | ||
| 1322 | 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" | ||
| 1323 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1324 | id="path4553" | ||
| 1325 | inkscape:connector-curvature="0" /><path | ||
| 1326 | 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" | ||
| 1327 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1328 | id="path4555" | ||
| 1329 | inkscape:connector-curvature="0" /><path | ||
| 1330 | 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" | ||
| 1331 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1332 | id="path4557" | ||
| 1333 | inkscape:connector-curvature="0" /><path | ||
| 1334 | d="m -104.7114,349.83198 2.94765,0 0,0.89688 -2.94765,0 0,-0.89688" | ||
| 1335 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1336 | id="path4559" | ||
| 1337 | inkscape:connector-curvature="0" /><path | ||
| 1338 | 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" | ||
| 1339 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1340 | id="path4561" | ||
| 1341 | inkscape:connector-curvature="0" /><path | ||
| 1342 | 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" | ||
| 1343 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1344 | id="path4563" | ||
| 1345 | inkscape:connector-curvature="0" /><path | ||
| 1346 | 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" | ||
| 1347 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1348 | id="path4565" | ||
| 1349 | inkscape:connector-curvature="0" /><path | ||
| 1350 | 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" | ||
| 1351 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1352 | id="path4567" | ||
| 1353 | inkscape:connector-curvature="0" /><path | ||
| 1354 | 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" | ||
| 1355 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1356 | id="path4569" | ||
| 1357 | inkscape:connector-curvature="0" /><path | ||
| 1358 | 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" | ||
| 1359 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1360 | id="path4571" | ||
| 1361 | inkscape:connector-curvature="0" /><path | ||
| 1362 | 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" | ||
| 1363 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1364 | id="path4573" | ||
| 1365 | inkscape:connector-curvature="0" /><path | ||
| 1366 | 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" | ||
| 1367 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1368 | id="path4575" | ||
| 1369 | inkscape:connector-curvature="0" /><path | ||
| 1370 | 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" | ||
| 1371 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1372 | id="path4577" | ||
| 1373 | inkscape:connector-curvature="0" /><path | ||
| 1374 | 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" | ||
| 1375 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1376 | id="path4579" | ||
| 1377 | inkscape:connector-curvature="0" /><path | ||
| 1378 | 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" | ||
| 1379 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1380 | id="path4581" | ||
| 1381 | inkscape:connector-curvature="0" /><path | ||
| 1382 | 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" | ||
| 1383 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1384 | id="path4583" | ||
| 1385 | inkscape:connector-curvature="0" /><path | ||
| 1386 | 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" | ||
| 1387 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1388 | id="path4585" | ||
| 1389 | inkscape:connector-curvature="0" /><path | ||
| 1390 | 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" | ||
| 1391 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1392 | id="path4587" | ||
| 1393 | inkscape:connector-curvature="0" /><path | ||
| 1394 | 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" | ||
| 1395 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1396 | id="path4589" | ||
| 1397 | inkscape:connector-curvature="0" /><path | ||
| 1398 | 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" | ||
| 1399 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1400 | id="path4591" | ||
| 1401 | inkscape:connector-curvature="0" /><path | ||
| 1402 | 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" | ||
| 1403 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1404 | id="path4593" | ||
| 1405 | inkscape:connector-curvature="0" /><path | ||
| 1406 | 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" | ||
| 1407 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1408 | id="path4595" | ||
| 1409 | inkscape:connector-curvature="0" /><path | ||
| 1410 | 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" | ||
| 1411 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1412 | id="path4597" | ||
| 1413 | inkscape:connector-curvature="0" /><path | ||
| 1414 | 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" | ||
| 1415 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1416 | id="path4599" | ||
| 1417 | inkscape:connector-curvature="0" /><path | ||
| 1418 | 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" | ||
| 1419 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1420 | id="path4601" | ||
| 1421 | inkscape:connector-curvature="0" /><path | ||
| 1422 | 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" | ||
| 1423 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1424 | id="path4603" | ||
| 1425 | inkscape:connector-curvature="0" /><path | ||
| 1426 | 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" | ||
| 1427 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1428 | id="path4605" | ||
| 1429 | inkscape:connector-curvature="0" /><path | ||
| 1430 | 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" | ||
| 1431 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1432 | id="path4607" | ||
| 1433 | inkscape:connector-curvature="0" /><path | ||
| 1434 | 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" | ||
| 1435 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1436 | id="path4609" | ||
| 1437 | inkscape:connector-curvature="0" /><path | ||
| 1438 | d="m -111.43249,365.39933 1.1539,0 0,1.38906 -1.1539,0 0,-1.38906" | ||
| 1439 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1440 | id="path4611" | ||
| 1441 | inkscape:connector-curvature="0" /><path | ||
| 1442 | 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" | ||
| 1443 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1444 | id="path4613" | ||
| 1445 | inkscape:connector-curvature="0" /><path | ||
| 1446 | 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" | ||
| 1447 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1448 | id="path4615" | ||
| 1449 | inkscape:connector-curvature="0" /><path | ||
| 1450 | 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" | ||
| 1451 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1452 | id="path4617" | ||
| 1453 | inkscape:connector-curvature="0" /><path | ||
| 1454 | 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" | ||
| 1455 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1456 | id="path4619" | ||
| 1457 | inkscape:connector-curvature="0" /></g><g | ||
| 1458 | style="font-size:9.60000038px" | ||
| 1459 | id="text4841-4"><path | ||
| 1460 | 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" | ||
| 1461 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1462 | id="path4622" | ||
| 1463 | inkscape:connector-curvature="0" /><path | ||
| 1464 | 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" | ||
| 1465 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1466 | id="path4624" | ||
| 1467 | inkscape:connector-curvature="0" /><path | ||
| 1468 | 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" | ||
| 1469 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1470 | id="path4626" | ||
| 1471 | inkscape:connector-curvature="0" /><path | ||
| 1472 | 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" | ||
| 1473 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1474 | id="path4628" | ||
| 1475 | inkscape:connector-curvature="0" /><path | ||
| 1476 | 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" | ||
| 1477 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1478 | id="path4630" | ||
| 1479 | inkscape:connector-curvature="0" /><path | ||
| 1480 | 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" | ||
| 1481 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1482 | id="path4632" | ||
| 1483 | inkscape:connector-curvature="0" /><path | ||
| 1484 | d="m -154.38485,201.04194 1.10469,0 0,7.23516 3.97578,0 0,0.92969 -5.08047,0 0,-8.16485" | ||
| 1485 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1486 | id="path4634" | ||
| 1487 | inkscape:connector-curvature="0" /><path | ||
| 1488 | 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" | ||
| 1489 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1490 | id="path4636" | ||
| 1491 | inkscape:connector-curvature="0" /><path | ||
| 1492 | 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" | ||
| 1493 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1494 | id="path4638" | ||
| 1495 | inkscape:connector-curvature="0" /><path | ||
| 1496 | 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" | ||
| 1497 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1498 | id="path4640" | ||
| 1499 | inkscape:connector-curvature="0" /><path | ||
| 1500 | 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" | ||
| 1501 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1502 | id="path4642" | ||
| 1503 | inkscape:connector-curvature="0" /><path | ||
| 1504 | 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" | ||
| 1505 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1506 | id="path4644" | ||
| 1507 | inkscape:connector-curvature="0" /><path | ||
| 1508 | 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" | ||
| 1509 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1510 | id="path4646" | ||
| 1511 | inkscape:connector-curvature="0" /><path | ||
| 1512 | 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" | ||
| 1513 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1514 | id="path4648" | ||
| 1515 | inkscape:connector-curvature="0" /><path | ||
| 1516 | 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" | ||
| 1517 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1518 | id="path4650" | ||
| 1519 | inkscape:connector-curvature="0" /><path | ||
| 1520 | 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" | ||
| 1521 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1522 | id="path4652" | ||
| 1523 | inkscape:connector-curvature="0" /><path | ||
| 1524 | 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" | ||
| 1525 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1526 | id="path4654" | ||
| 1527 | inkscape:connector-curvature="0" /><path | ||
| 1528 | 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" | ||
| 1529 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1530 | id="path4656" | ||
| 1531 | inkscape:connector-curvature="0" /><path | ||
| 1532 | 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" | ||
| 1533 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1534 | id="path4658" | ||
| 1535 | inkscape:connector-curvature="0" /><path | ||
| 1536 | d="m -150.81923,214.13741 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 1537 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1538 | id="path4660" | ||
| 1539 | inkscape:connector-curvature="0" /><path | ||
| 1540 | 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" | ||
| 1541 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1542 | id="path4662" | ||
| 1543 | inkscape:connector-curvature="0" /><path | ||
| 1544 | 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" | ||
| 1545 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1546 | id="path4664" | ||
| 1547 | inkscape:connector-curvature="0" /><path | ||
| 1548 | 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" | ||
| 1549 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1550 | id="path4666" | ||
| 1551 | inkscape:connector-curvature="0" /><path | ||
| 1552 | 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" | ||
| 1553 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1554 | id="path4668" | ||
| 1555 | inkscape:connector-curvature="0" /><path | ||
| 1556 | d="m -121.39735,214.13741 1.00625,0 0,8.50938 -1.00625,0 0,-8.50938" | ||
| 1557 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1558 | id="path4670" | ||
| 1559 | inkscape:connector-curvature="0" /><path | ||
| 1560 | 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" | ||
| 1561 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1562 | id="path4672" | ||
| 1563 | inkscape:connector-curvature="0" /><path | ||
| 1564 | 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" | ||
| 1565 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1566 | id="path4674" | ||
| 1567 | inkscape:connector-curvature="0" /><path | ||
| 1568 | d="m -101.23407,219.13038 2.947656,0 0,0.89688 -2.947656,0 0,-0.89688" | ||
| 1569 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1570 | id="path4676" | ||
| 1571 | inkscape:connector-curvature="0" /><path | ||
| 1572 | 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" | ||
| 1573 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1574 | id="path4678" | ||
| 1575 | inkscape:connector-curvature="0" /><path | ||
| 1576 | 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" | ||
| 1577 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1578 | id="path4680" | ||
| 1579 | inkscape:connector-curvature="0" /><path | ||
| 1580 | 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" | ||
| 1581 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1582 | id="path4682" | ||
| 1583 | inkscape:connector-curvature="0" /><path | ||
| 1584 | 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" | ||
| 1585 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1586 | id="path4684" | ||
| 1587 | inkscape:connector-curvature="0" /><path | ||
| 1588 | 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" | ||
| 1589 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1590 | id="path4686" | ||
| 1591 | inkscape:connector-curvature="0" /><path | ||
| 1592 | 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" | ||
| 1593 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1594 | id="path4688" | ||
| 1595 | inkscape:connector-curvature="0" /><path | ||
| 1596 | 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" | ||
| 1597 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1598 | id="path4690" | ||
| 1599 | inkscape:connector-curvature="0" /><path | ||
| 1600 | 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" | ||
| 1601 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1602 | id="path4692" | ||
| 1603 | inkscape:connector-curvature="0" /><path | ||
| 1604 | 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" | ||
| 1605 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1606 | id="path4694" | ||
| 1607 | inkscape:connector-curvature="0" /><path | ||
| 1608 | 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" | ||
| 1609 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1610 | id="path4696" | ||
| 1611 | inkscape:connector-curvature="0" /><path | ||
| 1612 | 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" | ||
| 1613 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1614 | id="path4698" | ||
| 1615 | inkscape:connector-curvature="0" /><path | ||
| 1616 | 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" | ||
| 1617 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1618 | id="path4700" | ||
| 1619 | inkscape:connector-curvature="0" /><path | ||
| 1620 | 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" | ||
| 1621 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1622 | id="path4702" | ||
| 1623 | inkscape:connector-curvature="0" /><path | ||
| 1624 | 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" | ||
| 1625 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1626 | id="path4704" | ||
| 1627 | inkscape:connector-curvature="0" /><path | ||
| 1628 | 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" | ||
| 1629 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1630 | id="path4706" | ||
| 1631 | inkscape:connector-curvature="0" /><path | ||
| 1632 | 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" | ||
| 1633 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1634 | id="path4708" | ||
| 1635 | inkscape:connector-curvature="0" /><path | ||
| 1636 | 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" | ||
| 1637 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1638 | id="path4710" | ||
| 1639 | inkscape:connector-curvature="0" /><path | ||
| 1640 | 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" | ||
| 1641 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1642 | id="path4712" | ||
| 1643 | inkscape:connector-curvature="0" /><path | ||
| 1644 | 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" | ||
| 1645 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1646 | id="path4714" | ||
| 1647 | inkscape:connector-curvature="0" /><path | ||
| 1648 | 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" | ||
| 1649 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1650 | id="path4716" | ||
| 1651 | inkscape:connector-curvature="0" /><path | ||
| 1652 | 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" | ||
| 1653 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1654 | id="path4718" | ||
| 1655 | inkscape:connector-curvature="0" /><path | ||
| 1656 | 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" | ||
| 1657 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1658 | id="path4720" | ||
| 1659 | inkscape:connector-curvature="0" /><path | ||
| 1660 | 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" | ||
| 1661 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1662 | id="path4722" | ||
| 1663 | inkscape:connector-curvature="0" /><path | ||
| 1664 | 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" | ||
| 1665 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1666 | id="path4724" | ||
| 1667 | inkscape:connector-curvature="0" /><path | ||
| 1668 | 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" | ||
| 1669 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1670 | id="path4726" | ||
| 1671 | inkscape:connector-curvature="0" /><path | ||
| 1672 | d="m -111.43329,234.69773 1.15391,0 0,1.38906 -1.15391,0 0,-1.38906" | ||
| 1673 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1674 | id="path4728" | ||
| 1675 | inkscape:connector-curvature="0" /><path | ||
| 1676 | 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" | ||
| 1677 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1678 | id="path4730" | ||
| 1679 | inkscape:connector-curvature="0" /><path | ||
| 1680 | 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" | ||
| 1681 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1682 | id="path4732" | ||
| 1683 | inkscape:connector-curvature="0" /><path | ||
| 1684 | 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" | ||
| 1685 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1686 | id="path4734" | ||
| 1687 | inkscape:connector-curvature="0" /><path | ||
| 1688 | 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" | ||
| 1689 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1690 | id="path4736" | ||
| 1691 | inkscape:connector-curvature="0" /></g><g | ||
| 1692 | style="font-size:9.60000038px" | ||
| 1693 | id="text4851-7"><path | ||
| 1694 | 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" | ||
| 1695 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1696 | id="path4739" | ||
| 1697 | inkscape:connector-curvature="0" /><path | ||
| 1698 | 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" | ||
| 1699 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1700 | id="path4741" | ||
| 1701 | inkscape:connector-curvature="0" /><path | ||
| 1702 | 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" | ||
| 1703 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1704 | id="path4743" | ||
| 1705 | inkscape:connector-curvature="0" /><path | ||
| 1706 | 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" | ||
| 1707 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1708 | id="path4745" | ||
| 1709 | inkscape:connector-curvature="0" /><path | ||
| 1710 | 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" | ||
| 1711 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1712 | id="path4747" | ||
| 1713 | inkscape:connector-curvature="0" /><path | ||
| 1714 | 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" | ||
| 1715 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1716 | id="path4749" | ||
| 1717 | inkscape:connector-curvature="0" /><path | ||
| 1718 | 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" | ||
| 1719 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1720 | id="path4751" | ||
| 1721 | inkscape:connector-curvature="0" /><path | ||
| 1722 | 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" | ||
| 1723 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1724 | id="path4753" | ||
| 1725 | inkscape:connector-curvature="0" /><path | ||
| 1726 | 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" | ||
| 1727 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1728 | id="path4755" | ||
| 1729 | inkscape:connector-curvature="0" /><path | ||
| 1730 | 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" | ||
| 1731 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1732 | id="path4757" | ||
| 1733 | inkscape:connector-curvature="0" /><path | ||
| 1734 | 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" | ||
| 1735 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1736 | id="path4759" | ||
| 1737 | inkscape:connector-curvature="0" /><path | ||
| 1738 | 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" | ||
| 1739 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1740 | id="path4761" | ||
| 1741 | inkscape:connector-curvature="0" /><path | ||
| 1742 | 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" | ||
| 1743 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1744 | id="path4763" | ||
| 1745 | inkscape:connector-curvature="0" /><path | ||
| 1746 | 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" | ||
| 1747 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1748 | id="path4765" | ||
| 1749 | inkscape:connector-curvature="0" /><path | ||
| 1750 | 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" | ||
| 1751 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1752 | id="path4767" | ||
| 1753 | inkscape:connector-curvature="0" /><path | ||
| 1754 | 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" | ||
| 1755 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1756 | id="path4769" | ||
| 1757 | inkscape:connector-curvature="0" /><path | ||
| 1758 | 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" | ||
| 1759 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1760 | id="path4771" | ||
| 1761 | inkscape:connector-curvature="0" /><path | ||
| 1762 | 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" | ||
| 1763 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1764 | id="path4773" | ||
| 1765 | inkscape:connector-curvature="0" /><path | ||
| 1766 | d="m -200.04499,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" | ||
| 1767 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1768 | id="path4775" | ||
| 1769 | inkscape:connector-curvature="0" /><path | ||
| 1770 | d="m -196.93874,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" | ||
| 1771 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1772 | id="path4777" | ||
| 1773 | inkscape:connector-curvature="0" /><path | ||
| 1774 | 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" | ||
| 1775 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1776 | id="path4779" | ||
| 1777 | inkscape:connector-curvature="0" /><path | ||
| 1778 | 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" | ||
| 1779 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1780 | id="path4781" | ||
| 1781 | inkscape:connector-curvature="0" /><path | ||
| 1782 | d="m -175.58874,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" | ||
| 1783 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1784 | id="path4783" | ||
| 1785 | inkscape:connector-curvature="0" /><path | ||
| 1786 | 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" | ||
| 1787 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1788 | id="path4785" | ||
| 1789 | inkscape:connector-curvature="0" /><path | ||
| 1790 | 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" | ||
| 1791 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1792 | id="path4787" | ||
| 1793 | inkscape:connector-curvature="0" /><path | ||
| 1794 | 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" | ||
| 1795 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1796 | id="path4789" | ||
| 1797 | inkscape:connector-curvature="0" /><path | ||
| 1798 | 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" | ||
| 1799 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1800 | id="path4791" | ||
| 1801 | inkscape:connector-curvature="0" /><path | ||
| 1802 | d="m -142.42624,93.680773 1.00625,0 0,8.509377 -1.00625,0 0,-8.509377" | ||
| 1803 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1804 | id="path4793" | ||
| 1805 | inkscape:connector-curvature="0" /><path | ||
| 1806 | 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" | ||
| 1807 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1808 | id="path4795" | ||
| 1809 | inkscape:connector-curvature="0" /><path | ||
| 1810 | 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" | ||
| 1811 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1812 | id="path4797" | ||
| 1813 | inkscape:connector-curvature="0" /><path | ||
| 1814 | 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" | ||
| 1815 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1816 | id="path4799" | ||
| 1817 | inkscape:connector-curvature="0" /><path | ||
| 1818 | d="m -116.72858,98.673741 2.94765,0 0,0.896875 -2.94765,0 0,-0.896875" | ||
| 1819 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1820 | id="path4801" | ||
| 1821 | inkscape:connector-curvature="0" /><path | ||
| 1822 | 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" | ||
| 1823 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1824 | id="path4803" | ||
| 1825 | inkscape:connector-curvature="0" /><path | ||
| 1826 | 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" | ||
| 1827 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1828 | id="path4805" | ||
| 1829 | inkscape:connector-curvature="0" /><path | ||
| 1830 | 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" | ||
| 1831 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1832 | id="path4807" | ||
| 1833 | inkscape:connector-curvature="0" /><path | ||
| 1834 | 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" | ||
| 1835 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1836 | id="path4809" | ||
| 1837 | inkscape:connector-curvature="0" /><path | ||
| 1838 | 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" | ||
| 1839 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1840 | id="path4811" | ||
| 1841 | inkscape:connector-curvature="0" /><path | ||
| 1842 | 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" | ||
| 1843 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1844 | id="path4813" | ||
| 1845 | inkscape:connector-curvature="0" /><path | ||
| 1846 | 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" | ||
| 1847 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1848 | id="path4815" | ||
| 1849 | inkscape:connector-curvature="0" /><path | ||
| 1850 | 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" | ||
| 1851 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1852 | id="path4817" | ||
| 1853 | inkscape:connector-curvature="0" /><path | ||
| 1854 | 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" | ||
| 1855 | style="font-size:11.19999981px;font-family:HelveticaNeueLTPro-Roman;fill:#f6921e" | ||
| 1856 | id="path4819" | ||
| 1857 | inkscape:connector-curvature="0" /></g><g | ||
| 1858 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1859 | id="text4859-4"><path | ||
| 1860 | 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" | ||
| 1861 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1862 | id="path4822" | ||
| 1863 | inkscape:connector-curvature="0" /><path | ||
| 1864 | 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" | ||
| 1865 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1866 | id="path4824" | ||
| 1867 | inkscape:connector-curvature="0" /><path | ||
| 1868 | 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" | ||
| 1869 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1870 | id="path4826" | ||
| 1871 | inkscape:connector-curvature="0" /><path | ||
| 1872 | 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" | ||
| 1873 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1874 | id="path4828" | ||
| 1875 | inkscape:connector-curvature="0" /><path | ||
| 1876 | 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" | ||
| 1877 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1878 | id="path4830" | ||
| 1879 | inkscape:connector-curvature="0" /><path | ||
| 1880 | 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" | ||
| 1881 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1882 | id="path4832" | ||
| 1883 | inkscape:connector-curvature="0" /><path | ||
| 1884 | 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" | ||
| 1885 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1886 | id="path4834" | ||
| 1887 | inkscape:connector-curvature="0" /><path | ||
| 1888 | 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" | ||
| 1889 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1890 | id="path4836" | ||
| 1891 | inkscape:connector-curvature="0" /><path | ||
| 1892 | 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" | ||
| 1893 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1894 | id="path4838" | ||
| 1895 | inkscape:connector-curvature="0" /><path | ||
| 1896 | 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" | ||
| 1897 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1898 | id="path4840" | ||
| 1899 | inkscape:connector-curvature="0" /><path | ||
| 1900 | 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" | ||
| 1901 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1902 | id="path4842" | ||
| 1903 | inkscape:connector-curvature="0" /><path | ||
| 1904 | 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" | ||
| 1905 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1906 | id="path4844" | ||
| 1907 | inkscape:connector-curvature="0" /><path | ||
| 1908 | 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" | ||
| 1909 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1910 | id="path4846" | ||
| 1911 | inkscape:connector-curvature="0" /><path | ||
| 1912 | 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" | ||
| 1913 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1914 | id="path4848" | ||
| 1915 | inkscape:connector-curvature="0" /><path | ||
| 1916 | 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" | ||
| 1917 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1918 | id="path4850" | ||
| 1919 | inkscape:connector-curvature="0" /><path | ||
| 1920 | 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" | ||
| 1921 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1922 | id="path4852" | ||
| 1923 | inkscape:connector-curvature="0" /><path | ||
| 1924 | 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" | ||
| 1925 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1926 | id="path4854" | ||
| 1927 | inkscape:connector-curvature="0" /><path | ||
| 1928 | 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" | ||
| 1929 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1930 | id="path4856" | ||
| 1931 | inkscape:connector-curvature="0" /><path | ||
| 1932 | 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" | ||
| 1933 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1934 | id="path4858" | ||
| 1935 | inkscape:connector-curvature="0" /><path | ||
| 1936 | 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" | ||
| 1937 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1938 | id="path4860" | ||
| 1939 | inkscape:connector-curvature="0" /><path | ||
| 1940 | 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" | ||
| 1941 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1942 | id="path4862" | ||
| 1943 | inkscape:connector-curvature="0" /><path | ||
| 1944 | 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" | ||
| 1945 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1946 | id="path4864" | ||
| 1947 | inkscape:connector-curvature="0" /><path | ||
| 1948 | 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" | ||
| 1949 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1950 | id="path4866" | ||
| 1951 | inkscape:connector-curvature="0" /><path | ||
| 1952 | 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" | ||
| 1953 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1954 | id="path4868" | ||
| 1955 | inkscape:connector-curvature="0" /><path | ||
| 1956 | 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" | ||
| 1957 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1958 | id="path4870" | ||
| 1959 | inkscape:connector-curvature="0" /><path | ||
| 1960 | 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" | ||
| 1961 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1962 | id="path4872" | ||
| 1963 | inkscape:connector-curvature="0" /><path | ||
| 1964 | 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" | ||
| 1965 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1966 | id="path4874" | ||
| 1967 | inkscape:connector-curvature="0" /><path | ||
| 1968 | 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" | ||
| 1969 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1970 | id="path4876" | ||
| 1971 | inkscape:connector-curvature="0" /><path | ||
| 1972 | 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" | ||
| 1973 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1974 | id="path4878" | ||
| 1975 | inkscape:connector-curvature="0" /><path | ||
| 1976 | 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" | ||
| 1977 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1978 | id="path4880" | ||
| 1979 | inkscape:connector-curvature="0" /><path | ||
| 1980 | 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" | ||
| 1981 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1982 | id="path4882" | ||
| 1983 | inkscape:connector-curvature="0" /><path | ||
| 1984 | 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" | ||
| 1985 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1986 | id="path4884" | ||
| 1987 | inkscape:connector-curvature="0" /><path | ||
| 1988 | 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" | ||
| 1989 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1990 | id="path4886" | ||
| 1991 | inkscape:connector-curvature="0" /><path | ||
| 1992 | 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" | ||
| 1993 | style="font-size:16.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 1994 | id="path4888" | ||
| 1995 | inkscape:connector-curvature="0" /></g><g | ||
| 1996 | style="font-size:9.60000038px" | ||
| 1997 | id="text4863-9"><path | ||
| 1998 | 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" | ||
| 1999 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2000 | id="path4891" | ||
| 2001 | inkscape:connector-curvature="0" /><path | ||
| 2002 | 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" | ||
| 2003 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2004 | id="path4893" | ||
| 2005 | inkscape:connector-curvature="0" /><path | ||
| 2006 | 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" | ||
| 2007 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2008 | id="path4895" | ||
| 2009 | inkscape:connector-curvature="0" /><path | ||
| 2010 | 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" | ||
| 2011 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2012 | id="path4897" | ||
| 2013 | inkscape:connector-curvature="0" /><path | ||
| 2014 | 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" | ||
| 2015 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2016 | id="path4899" | ||
| 2017 | inkscape:connector-curvature="0" /><path | ||
| 2018 | 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" | ||
| 2019 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2020 | id="path4901" | ||
| 2021 | inkscape:connector-curvature="0" /><path | ||
| 2022 | 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" | ||
| 2023 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2024 | id="path4903" | ||
| 2025 | inkscape:connector-curvature="0" /><path | ||
| 2026 | 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" | ||
| 2027 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2028 | id="path4905" | ||
| 2029 | inkscape:connector-curvature="0" /><path | ||
| 2030 | 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" | ||
| 2031 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2032 | id="path4907" | ||
| 2033 | inkscape:connector-curvature="0" /><path | ||
| 2034 | 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" | ||
| 2035 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2036 | id="path4909" | ||
| 2037 | inkscape:connector-curvature="0" /><path | ||
| 2038 | 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" | ||
| 2039 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2040 | id="path4911" | ||
| 2041 | inkscape:connector-curvature="0" /><path | ||
| 2042 | 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" | ||
| 2043 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2044 | id="path4913" | ||
| 2045 | inkscape:connector-curvature="0" /><path | ||
| 2046 | 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" | ||
| 2047 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2048 | id="path4915" | ||
| 2049 | inkscape:connector-curvature="0" /><path | ||
| 2050 | 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" | ||
| 2051 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2052 | id="path4917" | ||
| 2053 | inkscape:connector-curvature="0" /><path | ||
| 2054 | 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" | ||
| 2055 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2056 | id="path4919" | ||
| 2057 | inkscape:connector-curvature="0" /><path | ||
| 2058 | 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" | ||
| 2059 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2060 | id="path4921" | ||
| 2061 | inkscape:connector-curvature="0" /><path | ||
| 2062 | 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" | ||
| 2063 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2064 | id="path4923" | ||
| 2065 | inkscape:connector-curvature="0" /><path | ||
| 2066 | d="m -176.30434,-69.740828 1.86875,0 0,15.803126 -1.86875,0 0,-15.803126" | ||
| 2067 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2068 | id="path4925" | ||
| 2069 | inkscape:connector-curvature="0" /><path | ||
| 2070 | 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" | ||
| 2071 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2072 | id="path4927" | ||
| 2073 | inkscape:connector-curvature="0" /><path | ||
| 2074 | 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" | ||
| 2075 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2076 | id="path4929" | ||
| 2077 | inkscape:connector-curvature="0" /><path | ||
| 2078 | 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" | ||
| 2079 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2080 | id="path4931" | ||
| 2081 | inkscape:connector-curvature="0" /><path | ||
| 2082 | d="m -131.1395,-60.468171 5.47422,0 0,1.665625 -5.47422,0 0,-1.665625" | ||
| 2083 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2084 | id="path4933" | ||
| 2085 | inkscape:connector-curvature="0" /><path | ||
| 2086 | d="m -115.97623,-69.100984 2.05156,0 0,15.163282 -2.05156,0 0,-15.163282" | ||
| 2087 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2088 | id="path4935" | ||
| 2089 | inkscape:connector-curvature="0" /><path | ||
| 2090 | 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" | ||
| 2091 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2092 | id="path4937" | ||
| 2093 | inkscape:connector-curvature="0" /><path | ||
| 2094 | 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" | ||
| 2095 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2096 | id="path4939" | ||
| 2097 | inkscape:connector-curvature="0" /><path | ||
| 2098 | 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" | ||
| 2099 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2100 | id="path4941" | ||
| 2101 | inkscape:connector-curvature="0" /><path | ||
| 2102 | 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" | ||
| 2103 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2104 | id="path4943" | ||
| 2105 | inkscape:connector-curvature="0" /><path | ||
| 2106 | 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" | ||
| 2107 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2108 | id="path4945" | ||
| 2109 | inkscape:connector-curvature="0" /><path | ||
| 2110 | 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" | ||
| 2111 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2112 | id="path4947" | ||
| 2113 | inkscape:connector-curvature="0" /><path | ||
| 2114 | 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" | ||
| 2115 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2116 | id="path4949" | ||
| 2117 | inkscape:connector-curvature="0" /></g><g | ||
| 2118 | style="font-size:9.60000038px" | ||
| 2119 | id="text5819"><path | ||
| 2120 | 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" | ||
| 2121 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2122 | id="path4952" | ||
| 2123 | inkscape:connector-curvature="0" /><path | ||
| 2124 | 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" | ||
| 2125 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2126 | id="path4954" | ||
| 2127 | inkscape:connector-curvature="0" /><path | ||
| 2128 | 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" | ||
| 2129 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2130 | id="path4956" | ||
| 2131 | inkscape:connector-curvature="0" /><path | ||
| 2132 | 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" | ||
| 2133 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2134 | id="path4958" | ||
| 2135 | inkscape:connector-curvature="0" /><path | ||
| 2136 | 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" | ||
| 2137 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2138 | id="path4960" | ||
| 2139 | inkscape:connector-curvature="0" /><path | ||
| 2140 | 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" | ||
| 2141 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2142 | id="path4962" | ||
| 2143 | inkscape:connector-curvature="0" /><path | ||
| 2144 | 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" | ||
| 2145 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2146 | id="path4964" | ||
| 2147 | inkscape:connector-curvature="0" /><path | ||
| 2148 | 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" | ||
| 2149 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2150 | id="path4966" | ||
| 2151 | inkscape:connector-curvature="0" /><path | ||
| 2152 | 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" | ||
| 2153 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2154 | id="path4968" | ||
| 2155 | inkscape:connector-curvature="0" /><path | ||
| 2156 | d="m -284.7731,-42.540831 1.86875,0 0,15.803126 -1.86875,0 0,-15.803126" | ||
| 2157 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2158 | id="path4970" | ||
| 2159 | inkscape:connector-curvature="0" /><path | ||
| 2160 | 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" | ||
| 2161 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2162 | id="path4972" | ||
| 2163 | inkscape:connector-curvature="0" /><path | ||
| 2164 | 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" | ||
| 2165 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2166 | id="path4974" | ||
| 2167 | inkscape:connector-curvature="0" /><path | ||
| 2168 | 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" | ||
| 2169 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2170 | id="path4976" | ||
| 2171 | inkscape:connector-curvature="0" /><path | ||
| 2172 | 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" | ||
| 2173 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2174 | id="path4978" | ||
| 2175 | inkscape:connector-curvature="0" /><path | ||
| 2176 | 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" | ||
| 2177 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2178 | id="path4980" | ||
| 2179 | inkscape:connector-curvature="0" /><path | ||
| 2180 | d="m -206.5395,-33.268174 5.47421,0 0,1.665625 -5.47421,0 0,-1.665625" | ||
| 2181 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2182 | id="path4982" | ||
| 2183 | inkscape:connector-curvature="0" /><path | ||
| 2184 | 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" | ||
| 2185 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2186 | id="path4984" | ||
| 2187 | inkscape:connector-curvature="0" /><path | ||
| 2188 | 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" | ||
| 2189 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2190 | id="path4986" | ||
| 2191 | inkscape:connector-curvature="0" /><path | ||
| 2192 | 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" | ||
| 2193 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2194 | id="path4988" | ||
| 2195 | inkscape:connector-curvature="0" /><path | ||
| 2196 | 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" | ||
| 2197 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2198 | id="path4990" | ||
| 2199 | inkscape:connector-curvature="0" /><path | ||
| 2200 | 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" | ||
| 2201 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2202 | id="path4992" | ||
| 2203 | inkscape:connector-curvature="0" /><path | ||
| 2204 | 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" | ||
| 2205 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2206 | id="path4994" | ||
| 2207 | inkscape:connector-curvature="0" /><path | ||
| 2208 | 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" | ||
| 2209 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2210 | id="path4996" | ||
| 2211 | inkscape:connector-curvature="0" /><path | ||
| 2212 | 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" | ||
| 2213 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2214 | id="path4998" | ||
| 2215 | inkscape:connector-curvature="0" /><path | ||
| 2216 | 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" | ||
| 2217 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2218 | id="path5000" | ||
| 2219 | inkscape:connector-curvature="0" /><path | ||
| 2220 | 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" | ||
| 2221 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2222 | id="path5002" | ||
| 2223 | inkscape:connector-curvature="0" /><path | ||
| 2224 | 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" | ||
| 2225 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2226 | id="path5004" | ||
| 2227 | inkscape:connector-curvature="0" /><path | ||
| 2228 | d="m 4.5886233,-41.900987 1.7265626,0 -5.2812503,17.092969 -1.72656255,0 5.28125025,-17.092969" | ||
| 2229 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2230 | id="path5006" | ||
| 2231 | inkscape:connector-curvature="0" /><path | ||
| 2232 | 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" | ||
| 2233 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2234 | id="path5008" | ||
| 2235 | inkscape:connector-curvature="0" /><path | ||
| 2236 | d="m 28.42536,-29.317393 2.142969,0 0,2.579688 -2.142969,0 0,-2.579688" | ||
| 2237 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2238 | id="path5010" | ||
| 2239 | inkscape:connector-curvature="0" /><path | ||
| 2240 | 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" | ||
| 2241 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2242 | id="path5012" | ||
| 2243 | inkscape:connector-curvature="0" /><path | ||
| 2244 | 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" | ||
| 2245 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2246 | id="path5014" | ||
| 2247 | inkscape:connector-curvature="0" /><path | ||
| 2248 | 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" | ||
| 2249 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2250 | id="path5016" | ||
| 2251 | inkscape:connector-curvature="0" /><path | ||
| 2252 | 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" | ||
| 2253 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2254 | id="path5018" | ||
| 2255 | inkscape:connector-curvature="0" /><path | ||
| 2256 | d="m 97.853491,-29.317393 2.142969,0 0,2.579688 -2.142969,0 0,-2.579688" | ||
| 2257 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2258 | id="path5020" | ||
| 2259 | inkscape:connector-curvature="0" /><path | ||
| 2260 | 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" | ||
| 2261 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2262 | id="path5022" | ||
| 2263 | inkscape:connector-curvature="0" /><path | ||
| 2264 | 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" | ||
| 2265 | style="font-size:20.80000114px;font-family:HelveticaNeueLTPro-Md;fill:#f6921e" | ||
| 2266 | id="path5024" | ||
| 2267 | inkscape:connector-curvature="0" /></g><g | ||
| 2268 | 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" | ||
| 2269 | id="text4741-7"><path | ||
| 2270 | 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" | ||
| 2271 | id="path5027" | ||
| 2272 | inkscape:connector-curvature="0" /><path | ||
| 2273 | 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" | ||
| 2274 | id="path5029" | ||
| 2275 | inkscape:connector-curvature="0" /><path | ||
| 2276 | 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" | ||
| 2277 | id="path5031" | ||
| 2278 | inkscape:connector-curvature="0" /><path | ||
| 2279 | d="m -326.60875,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" | ||
| 2280 | id="path5033" | ||
| 2281 | inkscape:connector-curvature="0" /><path | ||
| 2282 | 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" | ||
| 2283 | id="path5035" | ||
| 2284 | inkscape:connector-curvature="0" /><path | ||
| 2285 | 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" | ||
| 2286 | id="path5037" | ||
| 2287 | inkscape:connector-curvature="0" /><path | ||
| 2288 | 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" | ||
| 2289 | id="path5039" | ||
| 2290 | inkscape:connector-curvature="0" /><path | ||
| 2291 | 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" | ||
| 2292 | id="path5041" | ||
| 2293 | inkscape:connector-curvature="0" /><path | ||
| 2294 | 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" | ||
| 2295 | id="path5043" | ||
| 2296 | inkscape:connector-curvature="0" /><path | ||
| 2297 | 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" | ||
| 2298 | id="path5045" | ||
| 2299 | inkscape:connector-curvature="0" /><path | ||
| 2300 | 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" | ||
| 2301 | id="path5047" | ||
| 2302 | inkscape:connector-curvature="0" /><path | ||
| 2303 | 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" | ||
| 2304 | id="path5049" | ||
| 2305 | inkscape:connector-curvature="0" /><path | ||
| 2306 | 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" | ||
| 2307 | id="path5051" | ||
| 2308 | inkscape:connector-curvature="0" /><path | ||
| 2309 | 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" | ||
| 2310 | id="path5053" | ||
| 2311 | inkscape:connector-curvature="0" /><path | ||
| 2312 | 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" | ||
| 2313 | id="path5055" | ||
| 2314 | inkscape:connector-curvature="0" /><path | ||
| 2315 | d="m -229.40875,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" | ||
| 2316 | id="path5057" | ||
| 2317 | inkscape:connector-curvature="0" /><path | ||
| 2318 | 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" | ||
| 2319 | id="path5059" | ||
| 2320 | inkscape:connector-curvature="0" /><path | ||
| 2321 | 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" | ||
| 2322 | id="path5061" | ||
| 2323 | inkscape:connector-curvature="0" /><path | ||
| 2324 | 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" | ||
| 2325 | id="path5063" | ||
| 2326 | inkscape:connector-curvature="0" /><path | ||
| 2327 | 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" | ||
| 2328 | id="path5065" | ||
| 2329 | inkscape:connector-curvature="0" /><path | ||
| 2330 | 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" | ||
| 2331 | id="path5067" | ||
| 2332 | inkscape:connector-curvature="0" /><path | ||
| 2333 | 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" | ||
| 2334 | id="path5069" | ||
| 2335 | inkscape:connector-curvature="0" /><path | ||
| 2336 | 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" | ||
| 2337 | id="path5071" | ||
| 2338 | inkscape:connector-curvature="0" /><path | ||
| 2339 | 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" | ||
| 2340 | id="path5073" | ||
| 2341 | inkscape:connector-curvature="0" /><path | ||
| 2342 | 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" | ||
| 2343 | id="path5075" | ||
| 2344 | inkscape:connector-curvature="0" /><path | ||
| 2345 | 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" | ||
| 2346 | id="path5077" | ||
| 2347 | inkscape:connector-curvature="0" /><path | ||
| 2348 | 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" | ||
| 2349 | id="path5079" | ||
| 2350 | inkscape:connector-curvature="0" /><path | ||
| 2351 | 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" | ||
| 2352 | id="path5081" | ||
| 2353 | inkscape:connector-curvature="0" /><path | ||
| 2354 | 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" | ||
| 2355 | id="path5083" | ||
| 2356 | inkscape:connector-curvature="0" /><path | ||
| 2357 | 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" | ||
| 2358 | id="path5085" | ||
| 2359 | inkscape:connector-curvature="0" /><path | ||
| 2360 | 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" | ||
| 2361 | id="path5087" | ||
| 2362 | inkscape:connector-curvature="0" /><path | ||
| 2363 | 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" | ||
| 2364 | id="path5089" | ||
| 2365 | inkscape:connector-curvature="0" /><path | ||
| 2366 | 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" | ||
| 2367 | id="path5091" | ||
| 2368 | inkscape:connector-curvature="0" /><path | ||
| 2369 | 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" | ||
| 2370 | id="path5093" | ||
| 2371 | inkscape:connector-curvature="0" /><path | ||
| 2372 | 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" | ||
| 2373 | id="path5095" | ||
| 2374 | inkscape:connector-curvature="0" /><path | ||
| 2375 | 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" | ||
| 2376 | id="path5097" | ||
| 2377 | inkscape:connector-curvature="0" /><path | ||
| 2378 | d="m -70.183734,418.14203 1.15,0 0,9.725 -1.15,0 0,-9.725" | ||
| 2379 | id="path5099" | ||
| 2380 | inkscape:connector-curvature="0" /><path | ||
| 2381 | 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" | ||
| 2382 | id="path5101" | ||
| 2383 | inkscape:connector-curvature="0" /><path | ||
| 2384 | 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" | ||
| 2385 | id="path5103" | ||
| 2386 | inkscape:connector-curvature="0" /><path | ||
| 2387 | 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" | ||
| 2388 | id="path5105" | ||
| 2389 | inkscape:connector-curvature="0" /><path | ||
| 2390 | 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" | ||
| 2391 | id="path5107" | ||
| 2392 | inkscape:connector-curvature="0" /><path | ||
| 2393 | 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" | ||
| 2394 | id="path5109" | ||
| 2395 | inkscape:connector-curvature="0" /><path | ||
| 2396 | 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" | ||
| 2397 | id="path5111" | ||
| 2398 | inkscape:connector-curvature="0" /><path | ||
| 2399 | 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" | ||
| 2400 | id="path5113" | ||
| 2401 | inkscape:connector-curvature="0" /></g><g | ||
| 2402 | id="g14777"><path | ||
| 2403 | 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" | ||
| 2404 | id="path3477" | ||
| 2405 | inkscape:connector-curvature="0" | ||
| 2406 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2407 | 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" | ||
| 2408 | id="path3479" | ||
| 2409 | inkscape:connector-curvature="0" | ||
| 2410 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2411 | 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" | ||
| 2412 | id="path3481" | ||
| 2413 | inkscape:connector-curvature="0" | ||
| 2414 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2415 | 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" | ||
| 2416 | id="path3483" | ||
| 2417 | inkscape:connector-curvature="0" | ||
| 2418 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2419 | 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" | ||
| 2420 | id="path3485" | ||
| 2421 | inkscape:connector-curvature="0" | ||
| 2422 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2423 | 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" | ||
| 2424 | id="path3487" | ||
| 2425 | inkscape:connector-curvature="0" | ||
| 2426 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2427 | 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" | ||
| 2428 | id="path3489" | ||
| 2429 | inkscape:connector-curvature="0" | ||
| 2430 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2431 | 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" | ||
| 2432 | id="path3491" | ||
| 2433 | inkscape:connector-curvature="0" | ||
| 2434 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2435 | 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" | ||
| 2436 | id="path3493" | ||
| 2437 | inkscape:connector-curvature="0" | ||
| 2438 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2439 | 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" | ||
| 2440 | id="path3495" | ||
| 2441 | inkscape:connector-curvature="0" | ||
| 2442 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2443 | 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" | ||
| 2444 | id="path3497" | ||
| 2445 | inkscape:connector-curvature="0" | ||
| 2446 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2447 | 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" | ||
| 2448 | id="path3499" | ||
| 2449 | inkscape:connector-curvature="0" | ||
| 2450 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2451 | 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" | ||
| 2452 | id="path3501" | ||
| 2453 | inkscape:connector-curvature="0" | ||
| 2454 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2455 | 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" | ||
| 2456 | id="path3503" | ||
| 2457 | inkscape:connector-curvature="0" | ||
| 2458 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2459 | 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" | ||
| 2460 | id="path3505" | ||
| 2461 | inkscape:connector-curvature="0" | ||
| 2462 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2463 | 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" | ||
| 2464 | id="path3507" | ||
| 2465 | inkscape:connector-curvature="0" | ||
| 2466 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2467 | 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" | ||
| 2468 | id="path3509" | ||
| 2469 | inkscape:connector-curvature="0" | ||
| 2470 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2471 | 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" | ||
| 2472 | id="path3511" | ||
| 2473 | inkscape:connector-curvature="0" | ||
| 2474 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2475 | 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" | ||
| 2476 | id="path3513" | ||
| 2477 | inkscape:connector-curvature="0" | ||
| 2478 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2479 | 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" | ||
| 2480 | id="path3515" | ||
| 2481 | inkscape:connector-curvature="0" | ||
| 2482 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2483 | 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" | ||
| 2484 | id="path3517" | ||
| 2485 | inkscape:connector-curvature="0" | ||
| 2486 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2487 | 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" | ||
| 2488 | id="path3519" | ||
| 2489 | inkscape:connector-curvature="0" | ||
| 2490 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2491 | 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" | ||
| 2492 | id="path3521" | ||
| 2493 | inkscape:connector-curvature="0" | ||
| 2494 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2495 | 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" | ||
| 2496 | id="path3523" | ||
| 2497 | inkscape:connector-curvature="0" | ||
| 2498 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2499 | 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" | ||
| 2500 | id="path3525" | ||
| 2501 | inkscape:connector-curvature="0" | ||
| 2502 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2503 | 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" | ||
| 2504 | id="path3527" | ||
| 2505 | inkscape:connector-curvature="0" | ||
| 2506 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2507 | 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" | ||
| 2508 | id="path3529" | ||
| 2509 | inkscape:connector-curvature="0" | ||
| 2510 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2511 | 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" | ||
| 2512 | id="path3531" | ||
| 2513 | inkscape:connector-curvature="0" | ||
| 2514 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2515 | 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" | ||
| 2516 | id="path3533" | ||
| 2517 | inkscape:connector-curvature="0" | ||
| 2518 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2519 | 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" | ||
| 2520 | id="path3535" | ||
| 2521 | inkscape:connector-curvature="0" | ||
| 2522 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2523 | 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" | ||
| 2524 | id="path3537" | ||
| 2525 | inkscape:connector-curvature="0" | ||
| 2526 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2527 | 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" | ||
| 2528 | id="path3539" | ||
| 2529 | inkscape:connector-curvature="0" | ||
| 2530 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2531 | 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" | ||
| 2532 | id="path3541" | ||
| 2533 | inkscape:connector-curvature="0" | ||
| 2534 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2535 | 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" | ||
| 2536 | id="path3543" | ||
| 2537 | inkscape:connector-curvature="0" | ||
| 2538 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2539 | d="m 843.83678,43.008264 1.122,0 0,9.488358 -1.122,0 0,-9.488358" | ||
| 2540 | id="path3545" | ||
| 2541 | inkscape:connector-curvature="0" | ||
| 2542 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2543 | 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" | ||
| 2544 | id="path3547" | ||
| 2545 | inkscape:connector-curvature="0" | ||
| 2546 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2547 | d="m 853.08124,50.947751 1.28664,0 0,1.548871 -1.28664,0 0,-1.548871" | ||
| 2548 | id="path3549" | ||
| 2549 | inkscape:connector-curvature="0" | ||
| 2550 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2551 | d="m 588.79755,62.12523 1.23177,0 0,8.067546 4.4332,0 0,1.036644 -5.66497,0 0,-9.10419" | ||
| 2552 | id="path3551" | ||
| 2553 | inkscape:connector-curvature="0" | ||
| 2554 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2555 | 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" | ||
| 2556 | id="path3553" | ||
| 2557 | inkscape:connector-curvature="0" | ||
| 2558 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2559 | 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" | ||
| 2560 | id="path3555" | ||
| 2561 | inkscape:connector-curvature="0" | ||
| 2562 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2563 | 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" | ||
| 2564 | id="path3557" | ||
| 2565 | inkscape:connector-curvature="0" | ||
| 2566 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2567 | 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" | ||
| 2568 | id="path3559" | ||
| 2569 | inkscape:connector-curvature="0" | ||
| 2570 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2571 | 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" | ||
| 2572 | id="path3561" | ||
| 2573 | inkscape:connector-curvature="0" | ||
| 2574 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2575 | 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" | ||
| 2576 | id="path3563" | ||
| 2577 | inkscape:connector-curvature="0" | ||
| 2578 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2579 | 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" | ||
| 2580 | id="path3565" | ||
| 2581 | inkscape:connector-curvature="0" | ||
| 2582 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2583 | 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" | ||
| 2584 | id="path3567" | ||
| 2585 | inkscape:connector-curvature="0" | ||
| 2586 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2587 | 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" | ||
| 2588 | id="path3569" | ||
| 2589 | inkscape:connector-curvature="0" | ||
| 2590 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2591 | 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" | ||
| 2592 | id="path3571" | ||
| 2593 | inkscape:connector-curvature="0" | ||
| 2594 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2595 | 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" | ||
| 2596 | id="path3573" | ||
| 2597 | inkscape:connector-curvature="0" | ||
| 2598 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2599 | 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" | ||
| 2600 | id="path3575" | ||
| 2601 | inkscape:connector-curvature="0" | ||
| 2602 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2603 | 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" | ||
| 2604 | id="path3577" | ||
| 2605 | inkscape:connector-curvature="0" | ||
| 2606 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2607 | 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" | ||
| 2608 | id="path3579" | ||
| 2609 | inkscape:connector-curvature="0" | ||
| 2610 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2611 | 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" | ||
| 2612 | id="path3581" | ||
| 2613 | inkscape:connector-curvature="0" | ||
| 2614 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2615 | 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" | ||
| 2616 | id="path3583" | ||
| 2617 | inkscape:connector-curvature="0" | ||
| 2618 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2619 | 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" | ||
| 2620 | id="path3585" | ||
| 2621 | inkscape:connector-curvature="0" | ||
| 2622 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2623 | 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" | ||
| 2624 | id="path3587" | ||
| 2625 | inkscape:connector-curvature="0" | ||
| 2626 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2627 | d="m 747.52628,69.680548 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872" | ||
| 2628 | id="path3589" | ||
| 2629 | inkscape:connector-curvature="0" | ||
| 2630 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2631 | 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" | ||
| 2632 | id="path3591" | ||
| 2633 | inkscape:connector-curvature="0" | ||
| 2634 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2635 | d="m 762.70403,67.308457 3.28678,0 0,1.000061 -3.28678,0 0,-1.000061" | ||
| 2636 | id="path3593" | ||
| 2637 | inkscape:connector-curvature="0" | ||
| 2638 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2639 | 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" | ||
| 2640 | id="path3595" | ||
| 2641 | inkscape:connector-curvature="0" | ||
| 2642 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2643 | d="m 779.86965,69.680548 1.28664,0 0,1.548872 -1.28664,0 0,-1.548872" | ||
| 2644 | id="path3597" | ||
| 2645 | inkscape:connector-curvature="0" | ||
| 2646 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2647 | 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" | ||
| 2648 | id="path3599" | ||
| 2649 | inkscape:connector-curvature="0" | ||
| 2650 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2651 | 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" | ||
| 2652 | id="path3601" | ||
| 2653 | inkscape:connector-curvature="0" | ||
| 2654 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2655 | 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" | ||
| 2656 | id="path3603" | ||
| 2657 | inkscape:connector-curvature="0" | ||
| 2658 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2659 | 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" | ||
| 2660 | id="path3605" | ||
| 2661 | inkscape:connector-curvature="0" | ||
| 2662 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2663 | 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" | ||
| 2664 | id="path3607" | ||
| 2665 | inkscape:connector-curvature="0" | ||
| 2666 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2667 | 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" | ||
| 2668 | id="path3609" | ||
| 2669 | inkscape:connector-curvature="0" | ||
| 2670 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2671 | 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" | ||
| 2672 | id="path3611" | ||
| 2673 | inkscape:connector-curvature="0" | ||
| 2674 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2675 | 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" | ||
| 2676 | id="path3613" | ||
| 2677 | inkscape:connector-curvature="0" | ||
| 2678 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2679 | 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" | ||
| 2680 | id="path3615" | ||
| 2681 | inkscape:connector-curvature="0" | ||
| 2682 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2683 | 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" | ||
| 2684 | id="path3617" | ||
| 2685 | inkscape:connector-curvature="0" | ||
| 2686 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2687 | 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" | ||
| 2688 | id="path3619" | ||
| 2689 | inkscape:connector-curvature="0" | ||
| 2690 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2691 | 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" | ||
| 2692 | id="path3621" | ||
| 2693 | inkscape:connector-curvature="0" | ||
| 2694 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2695 | 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" | ||
| 2696 | id="path3623" | ||
| 2697 | inkscape:connector-curvature="0" | ||
| 2698 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2699 | 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" | ||
| 2700 | id="path3625" | ||
| 2701 | inkscape:connector-curvature="0" | ||
| 2702 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2703 | 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" | ||
| 2704 | id="path3627" | ||
| 2705 | inkscape:connector-curvature="0" | ||
| 2706 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2707 | 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" | ||
| 2708 | id="path3629" | ||
| 2709 | inkscape:connector-curvature="0" | ||
| 2710 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2711 | 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" | ||
| 2712 | id="path3631" | ||
| 2713 | inkscape:connector-curvature="0" | ||
| 2714 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2715 | 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" | ||
| 2716 | id="path3633" | ||
| 2717 | inkscape:connector-curvature="0" | ||
| 2718 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2719 | 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" | ||
| 2720 | id="path3635" | ||
| 2721 | inkscape:connector-curvature="0" | ||
| 2722 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2723 | 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" | ||
| 2724 | id="path3637" | ||
| 2725 | inkscape:connector-curvature="0" | ||
| 2726 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2727 | 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" | ||
| 2728 | id="path3639" | ||
| 2729 | inkscape:connector-curvature="0" | ||
| 2730 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2731 | d="m 952.30652,61.741061 1.122,0 0,9.488359 -1.122,0 0,-9.488359" | ||
| 2732 | id="path3641" | ||
| 2733 | inkscape:connector-curvature="0" | ||
| 2734 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2735 | 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" | ||
| 2736 | id="path3643" | ||
| 2737 | inkscape:connector-curvature="0" | ||
| 2738 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2739 | 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" | ||
| 2740 | id="path3645" | ||
| 2741 | inkscape:connector-curvature="0" | ||
| 2742 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2743 | 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" | ||
| 2744 | id="path3647" | ||
| 2745 | inkscape:connector-curvature="0" | ||
| 2746 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2747 | 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" | ||
| 2748 | id="path3649" | ||
| 2749 | inkscape:connector-curvature="0" | ||
| 2750 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2751 | d="m 981.51555,69.680548 1.28664,0 0,1.548872 -1.28664,0 0,-1.548872" | ||
| 2752 | id="path3651" | ||
| 2753 | inkscape:connector-curvature="0" | ||
| 2754 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2755 | 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" | ||
| 2756 | id="path3653" | ||
| 2757 | inkscape:connector-curvature="0" | ||
| 2758 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2759 | 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" | ||
| 2760 | id="path3655" | ||
| 2761 | inkscape:connector-curvature="0" | ||
| 2762 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2763 | 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" | ||
| 2764 | id="path3657" | ||
| 2765 | inkscape:connector-curvature="0" | ||
| 2766 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2767 | 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" | ||
| 2768 | id="path3659" | ||
| 2769 | inkscape:connector-curvature="0" | ||
| 2770 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2771 | 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" | ||
| 2772 | id="path3661" | ||
| 2773 | inkscape:connector-curvature="0" | ||
| 2774 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2775 | 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" | ||
| 2776 | id="path3663" | ||
| 2777 | inkscape:connector-curvature="0" | ||
| 2778 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2779 | 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" | ||
| 2780 | id="path3665" | ||
| 2781 | inkscape:connector-curvature="0" | ||
| 2782 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2783 | 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" | ||
| 2784 | id="path3667" | ||
| 2785 | inkscape:connector-curvature="0" | ||
| 2786 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2787 | 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" | ||
| 2788 | id="path3669" | ||
| 2789 | inkscape:connector-curvature="0" | ||
| 2790 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2791 | 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" | ||
| 2792 | id="path3671" | ||
| 2793 | inkscape:connector-curvature="0" | ||
| 2794 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2795 | 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" | ||
| 2796 | id="path3673" | ||
| 2797 | inkscape:connector-curvature="0" | ||
| 2798 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2799 | 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" | ||
| 2800 | id="path3675" | ||
| 2801 | inkscape:connector-curvature="0" | ||
| 2802 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2803 | 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" | ||
| 2804 | id="path3677" | ||
| 2805 | inkscape:connector-curvature="0" | ||
| 2806 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2807 | 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" | ||
| 2808 | id="path3679" | ||
| 2809 | inkscape:connector-curvature="0" | ||
| 2810 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2811 | 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" | ||
| 2812 | id="path3681" | ||
| 2813 | inkscape:connector-curvature="0" | ||
| 2814 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2815 | 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" | ||
| 2816 | id="path3683" | ||
| 2817 | inkscape:connector-curvature="0" | ||
| 2818 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2819 | 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" | ||
| 2820 | id="path3685" | ||
| 2821 | inkscape:connector-curvature="0" | ||
| 2822 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2823 | d="m 721.25647,88.413346 1.28669,0 0,1.548872 -1.28669,0 0,-1.548872" | ||
| 2824 | id="path3687" | ||
| 2825 | inkscape:connector-curvature="0" | ||
| 2826 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2827 | 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" | ||
| 2828 | id="path3689" | ||
| 2829 | inkscape:connector-curvature="0" | ||
| 2830 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2831 | 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" | ||
| 2832 | id="path3691" | ||
| 2833 | inkscape:connector-curvature="0" | ||
| 2834 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2835 | 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" | ||
| 2836 | id="path3693" | ||
| 2837 | inkscape:connector-curvature="0" | ||
| 2838 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2839 | 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" | ||
| 2840 | id="path3695" | ||
| 2841 | inkscape:connector-curvature="0" | ||
| 2842 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2843 | 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" | ||
| 2844 | id="path3697" | ||
| 2845 | inkscape:connector-curvature="0" | ||
| 2846 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2847 | 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" | ||
| 2848 | id="path3699" | ||
| 2849 | inkscape:connector-curvature="0" | ||
| 2850 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2851 | 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" | ||
| 2852 | id="path3701" | ||
| 2853 | inkscape:connector-curvature="0" | ||
| 2854 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2855 | 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" | ||
| 2856 | id="path3703" | ||
| 2857 | inkscape:connector-curvature="0" | ||
| 2858 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2859 | 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" | ||
| 2860 | id="path3705" | ||
| 2861 | inkscape:connector-curvature="0" | ||
| 2862 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2863 | d="m 805.95044,80.858028 1.03664,0 -3.1709,10.262795 -1.03664,0 3.1709,-10.262795" | ||
| 2864 | id="path3707" | ||
| 2865 | inkscape:connector-curvature="0" | ||
| 2866 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2867 | 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" | ||
| 2868 | id="path3709" | ||
| 2869 | inkscape:connector-curvature="0" | ||
| 2870 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2871 | 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" | ||
| 2872 | id="path3711" | ||
| 2873 | inkscape:connector-curvature="0" | ||
| 2874 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2875 | 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" | ||
| 2876 | id="path3713" | ||
| 2877 | inkscape:connector-curvature="0" | ||
| 2878 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2879 | 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" | ||
| 2880 | id="path3715" | ||
| 2881 | inkscape:connector-curvature="0" | ||
| 2882 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2883 | 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" | ||
| 2884 | id="path3717" | ||
| 2885 | inkscape:connector-curvature="0" | ||
| 2886 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2887 | 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" | ||
| 2888 | id="path3719" | ||
| 2889 | inkscape:connector-curvature="0" | ||
| 2890 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2891 | 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" | ||
| 2892 | id="path3721" | ||
| 2893 | inkscape:connector-curvature="0" | ||
| 2894 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2895 | 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" | ||
| 2896 | id="path3723" | ||
| 2897 | inkscape:connector-curvature="0" | ||
| 2898 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2899 | d="m 863.83795,88.413346 1.28668,0 0,1.548872 -1.28668,0 0,-1.548872" | ||
| 2900 | id="path3725" | ||
| 2901 | inkscape:connector-curvature="0" | ||
| 2902 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2903 | 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" | ||
| 2904 | id="path3727" | ||
| 2905 | inkscape:connector-curvature="0" | ||
| 2906 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2907 | 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" | ||
| 2908 | id="path3729" | ||
| 2909 | inkscape:connector-curvature="0" | ||
| 2910 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2911 | 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" | ||
| 2912 | id="path3731" | ||
| 2913 | inkscape:connector-curvature="0" | ||
| 2914 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2915 | 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" | ||
| 2916 | id="path3733" | ||
| 2917 | inkscape:connector-curvature="0" | ||
| 2918 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2919 | 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" | ||
| 2920 | id="path3735" | ||
| 2921 | inkscape:connector-curvature="0" | ||
| 2922 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2923 | 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" | ||
| 2924 | id="path3737" | ||
| 2925 | inkscape:connector-curvature="0" | ||
| 2926 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2927 | 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" | ||
| 2928 | id="path3739" | ||
| 2929 | inkscape:connector-curvature="0" | ||
| 2930 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2931 | 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" | ||
| 2932 | id="path3741" | ||
| 2933 | inkscape:connector-curvature="0" | ||
| 2934 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2935 | 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" | ||
| 2936 | id="path3743" | ||
| 2937 | inkscape:connector-curvature="0" | ||
| 2938 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2939 | 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" | ||
| 2940 | id="path3745" | ||
| 2941 | inkscape:connector-curvature="0" | ||
| 2942 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2943 | 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" | ||
| 2944 | id="path3747" | ||
| 2945 | inkscape:connector-curvature="0" | ||
| 2946 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2947 | 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" | ||
| 2948 | id="path3749" | ||
| 2949 | inkscape:connector-curvature="0" | ||
| 2950 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2951 | 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" | ||
| 2952 | id="path3751" | ||
| 2953 | inkscape:connector-curvature="0" | ||
| 2954 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2955 | 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" | ||
| 2956 | id="path3753" | ||
| 2957 | inkscape:connector-curvature="0" | ||
| 2958 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2959 | 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" | ||
| 2960 | id="path3755" | ||
| 2961 | inkscape:connector-curvature="0" | ||
| 2962 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2963 | 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" | ||
| 2964 | id="path3757" | ||
| 2965 | inkscape:connector-curvature="0" | ||
| 2966 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2967 | 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" | ||
| 2968 | id="path3759" | ||
| 2969 | inkscape:connector-curvature="0" | ||
| 2970 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2971 | 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" | ||
| 2972 | id="path3761" | ||
| 2973 | inkscape:connector-curvature="0" | ||
| 2974 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2975 | 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" | ||
| 2976 | id="path3763" | ||
| 2977 | inkscape:connector-curvature="0" | ||
| 2978 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2979 | 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" | ||
| 2980 | id="path3765" | ||
| 2981 | inkscape:connector-curvature="0" | ||
| 2982 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2983 | d="m 743.81875,107.14614 1.28669,0 0,1.54888 -1.28669,0 0,-1.54888" | ||
| 2984 | id="path3767" | ||
| 2985 | inkscape:connector-curvature="0" | ||
| 2986 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2987 | 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" | ||
| 2988 | id="path3769" | ||
| 2989 | inkscape:connector-curvature="0" | ||
| 2990 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2991 | 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" | ||
| 2992 | id="path3771" | ||
| 2993 | inkscape:connector-curvature="0" | ||
| 2994 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2995 | 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" | ||
| 2996 | id="path3773" | ||
| 2997 | inkscape:connector-curvature="0" | ||
| 2998 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 2999 | 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" | ||
| 3000 | id="path3775" | ||
| 3001 | inkscape:connector-curvature="0" | ||
| 3002 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3003 | 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" | ||
| 3004 | id="path3777" | ||
| 3005 | inkscape:connector-curvature="0" | ||
| 3006 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3007 | 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" | ||
| 3008 | id="path3779" | ||
| 3009 | inkscape:connector-curvature="0" | ||
| 3010 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3011 | 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" | ||
| 3012 | id="path3781" | ||
| 3013 | inkscape:connector-curvature="0" | ||
| 3014 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3015 | d="m 813.35939,107.14614 1.28669,0 0,1.54888 -1.28669,0 0,-1.54888" | ||
| 3016 | id="path3783" | ||
| 3017 | inkscape:connector-curvature="0" | ||
| 3018 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3019 | d="m 588.79755,118.32363 1.23177,0 0,9.10418 -1.23177,0 0,-9.10418" | ||
| 3020 | id="path3785" | ||
| 3021 | inkscape:connector-curvature="0" | ||
| 3022 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3023 | 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" | ||
| 3024 | id="path3787" | ||
| 3025 | inkscape:connector-curvature="0" | ||
| 3026 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3027 | 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" | ||
| 3028 | id="path3789" | ||
| 3029 | inkscape:connector-curvature="0" | ||
| 3030 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3031 | 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" | ||
| 3032 | id="path3791" | ||
| 3033 | inkscape:connector-curvature="0" | ||
| 3034 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3035 | 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" | ||
| 3036 | id="path3793" | ||
| 3037 | inkscape:connector-curvature="0" | ||
| 3038 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3039 | 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" | ||
| 3040 | id="path3795" | ||
| 3041 | inkscape:connector-curvature="0" | ||
| 3042 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3043 | 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" | ||
| 3044 | id="path3797" | ||
| 3045 | inkscape:connector-curvature="0" | ||
| 3046 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3047 | 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" | ||
| 3048 | id="path3799" | ||
| 3049 | inkscape:connector-curvature="0" | ||
| 3050 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3051 | 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" | ||
| 3052 | id="path3801" | ||
| 3053 | inkscape:connector-curvature="0" | ||
| 3054 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3055 | 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" | ||
| 3056 | id="path3803" | ||
| 3057 | inkscape:connector-curvature="0" | ||
| 3058 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3059 | 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" | ||
| 3060 | id="path3805" | ||
| 3061 | inkscape:connector-curvature="0" | ||
| 3062 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3063 | 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" | ||
| 3064 | id="path3807" | ||
| 3065 | inkscape:connector-curvature="0" | ||
| 3066 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3067 | 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" | ||
| 3068 | id="path3809" | ||
| 3069 | inkscape:connector-curvature="0" | ||
| 3070 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3071 | 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" | ||
| 3072 | id="path3811" | ||
| 3073 | inkscape:connector-curvature="0" | ||
| 3074 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3075 | 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" | ||
| 3076 | id="path3813" | ||
| 3077 | inkscape:connector-curvature="0" | ||
| 3078 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3079 | 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" | ||
| 3080 | id="path3815" | ||
| 3081 | inkscape:connector-curvature="0" | ||
| 3082 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3083 | 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" | ||
| 3084 | id="path3817" | ||
| 3085 | inkscape:connector-curvature="0" | ||
| 3086 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3087 | 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" | ||
| 3088 | id="path3819" | ||
| 3089 | inkscape:connector-curvature="0" | ||
| 3090 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3091 | 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" | ||
| 3092 | id="path3821" | ||
| 3093 | inkscape:connector-curvature="0" | ||
| 3094 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3095 | 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" | ||
| 3096 | id="path3823" | ||
| 3097 | inkscape:connector-curvature="0" | ||
| 3098 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3099 | 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" | ||
| 3100 | id="path3825" | ||
| 3101 | inkscape:connector-curvature="0" | ||
| 3102 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3103 | 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" | ||
| 3104 | id="path3827" | ||
| 3105 | inkscape:connector-curvature="0" | ||
| 3106 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3107 | 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" | ||
| 3108 | id="path3829" | ||
| 3109 | inkscape:connector-curvature="0" | ||
| 3110 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3111 | 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" | ||
| 3112 | id="path3831" | ||
| 3113 | inkscape:connector-curvature="0" | ||
| 3114 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3115 | 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" | ||
| 3116 | id="path3833" | ||
| 3117 | inkscape:connector-curvature="0" | ||
| 3118 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3119 | 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" | ||
| 3120 | id="path3835" | ||
| 3121 | inkscape:connector-curvature="0" | ||
| 3122 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3123 | 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" | ||
| 3124 | id="path3837" | ||
| 3125 | inkscape:connector-curvature="0" | ||
| 3126 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3127 | 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" | ||
| 3128 | id="path3839" | ||
| 3129 | inkscape:connector-curvature="0" | ||
| 3130 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3131 | 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" | ||
| 3132 | id="path3841" | ||
| 3133 | inkscape:connector-curvature="0" | ||
| 3134 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3135 | 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" | ||
| 3136 | id="path3843" | ||
| 3137 | inkscape:connector-curvature="0" | ||
| 3138 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3139 | 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" | ||
| 3140 | id="path3845" | ||
| 3141 | inkscape:connector-curvature="0" | ||
| 3142 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3143 | 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" | ||
| 3144 | id="path3847" | ||
| 3145 | inkscape:connector-curvature="0" | ||
| 3146 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3147 | 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" | ||
| 3148 | id="path3849" | ||
| 3149 | inkscape:connector-curvature="0" | ||
| 3150 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3151 | 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" | ||
| 3152 | id="path3851" | ||
| 3153 | inkscape:connector-curvature="0" | ||
| 3154 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3155 | 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" | ||
| 3156 | id="path3853" | ||
| 3157 | inkscape:connector-curvature="0" | ||
| 3158 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3159 | 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" | ||
| 3160 | id="path3855" | ||
| 3161 | inkscape:connector-curvature="0" | ||
| 3162 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3163 | 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" | ||
| 3164 | id="path3857" | ||
| 3165 | inkscape:connector-curvature="0" | ||
| 3166 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3167 | 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" | ||
| 3168 | id="path3859" | ||
| 3169 | inkscape:connector-curvature="0" | ||
| 3170 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3171 | 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" | ||
| 3172 | id="path3861" | ||
| 3173 | inkscape:connector-curvature="0" | ||
| 3174 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3175 | 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" | ||
| 3176 | id="path3863" | ||
| 3177 | inkscape:connector-curvature="0" | ||
| 3178 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3179 | 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" | ||
| 3180 | id="path3865" | ||
| 3181 | inkscape:connector-curvature="0" | ||
| 3182 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3183 | 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" | ||
| 3184 | id="path3867" | ||
| 3185 | inkscape:connector-curvature="0" | ||
| 3186 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3187 | 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" | ||
| 3188 | id="path3869" | ||
| 3189 | inkscape:connector-curvature="0" | ||
| 3190 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3191 | 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" | ||
| 3192 | id="path3871" | ||
| 3193 | inkscape:connector-curvature="0" | ||
| 3194 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3195 | 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" | ||
| 3196 | id="path3873" | ||
| 3197 | inkscape:connector-curvature="0" | ||
| 3198 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3199 | 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" | ||
| 3200 | id="path3875" | ||
| 3201 | inkscape:connector-curvature="0" | ||
| 3202 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3203 | 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" | ||
| 3204 | id="path3877" | ||
| 3205 | inkscape:connector-curvature="0" | ||
| 3206 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3207 | 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" | ||
| 3208 | id="path3879" | ||
| 3209 | inkscape:connector-curvature="0" | ||
| 3210 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3211 | 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" | ||
| 3212 | id="path3881" | ||
| 3213 | inkscape:connector-curvature="0" | ||
| 3214 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3215 | 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" | ||
| 3216 | id="path3883" | ||
| 3217 | inkscape:connector-curvature="0" | ||
| 3218 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3219 | d="m 962.75832,125.87894 1.28669,0 0,1.54887 -1.28669,0 0,-1.54887" | ||
| 3220 | id="path3885" | ||
| 3221 | inkscape:connector-curvature="0" | ||
| 3222 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3223 | 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" | ||
| 3224 | id="path3887" | ||
| 3225 | inkscape:connector-curvature="0" | ||
| 3226 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3227 | 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" | ||
| 3228 | id="path3889" | ||
| 3229 | inkscape:connector-curvature="0" | ||
| 3230 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3231 | 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" | ||
| 3232 | id="path3891" | ||
| 3233 | inkscape:connector-curvature="0" | ||
| 3234 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3235 | 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" | ||
| 3236 | id="path3893" | ||
| 3237 | inkscape:connector-curvature="0" | ||
| 3238 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3239 | 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" | ||
| 3240 | id="path3895" | ||
| 3241 | inkscape:connector-curvature="0" | ||
| 3242 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3243 | 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" | ||
| 3244 | id="path3897" | ||
| 3245 | inkscape:connector-curvature="0" | ||
| 3246 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3247 | 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" | ||
| 3248 | id="path3899" | ||
| 3249 | inkscape:connector-curvature="0" | ||
| 3250 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3251 | 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" | ||
| 3252 | id="path3901" | ||
| 3253 | inkscape:connector-curvature="0" | ||
| 3254 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3255 | 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" | ||
| 3256 | id="path3903" | ||
| 3257 | inkscape:connector-curvature="0" | ||
| 3258 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3259 | 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" | ||
| 3260 | id="path3905" | ||
| 3261 | inkscape:connector-curvature="0" | ||
| 3262 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3263 | 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" | ||
| 3264 | id="path3907" | ||
| 3265 | inkscape:connector-curvature="0" | ||
| 3266 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3267 | 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" | ||
| 3268 | id="path3909" | ||
| 3269 | inkscape:connector-curvature="0" | ||
| 3270 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3271 | 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" | ||
| 3272 | id="path3911" | ||
| 3273 | inkscape:connector-curvature="0" | ||
| 3274 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3275 | 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" | ||
| 3276 | id="path3913" | ||
| 3277 | inkscape:connector-curvature="0" | ||
| 3278 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3279 | 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" | ||
| 3280 | id="path3915" | ||
| 3281 | inkscape:connector-curvature="0" | ||
| 3282 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3283 | 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" | ||
| 3284 | id="path3917" | ||
| 3285 | inkscape:connector-curvature="0" | ||
| 3286 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3287 | 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" | ||
| 3288 | id="path3919" | ||
| 3289 | inkscape:connector-curvature="0" | ||
| 3290 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3291 | 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" | ||
| 3292 | id="path3921" | ||
| 3293 | inkscape:connector-curvature="0" | ||
| 3294 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3295 | 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" | ||
| 3296 | id="path3923" | ||
| 3297 | inkscape:connector-curvature="0" | ||
| 3298 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3299 | 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" | ||
| 3300 | id="path3925" | ||
| 3301 | inkscape:connector-curvature="0" | ||
| 3302 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3303 | 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" | ||
| 3304 | id="path3927" | ||
| 3305 | inkscape:connector-curvature="0" | ||
| 3306 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3307 | 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" | ||
| 3308 | id="path3929" | ||
| 3309 | inkscape:connector-curvature="0" | ||
| 3310 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3311 | 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" | ||
| 3312 | id="path3931" | ||
| 3313 | inkscape:connector-curvature="0" | ||
| 3314 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3315 | 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" | ||
| 3316 | id="path3933" | ||
| 3317 | inkscape:connector-curvature="0" | ||
| 3318 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3319 | 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" | ||
| 3320 | id="path3935" | ||
| 3321 | inkscape:connector-curvature="0" | ||
| 3322 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3323 | 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" | ||
| 3324 | id="path3937" | ||
| 3325 | inkscape:connector-curvature="0" | ||
| 3326 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3327 | 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" | ||
| 3328 | id="path3939" | ||
| 3329 | inkscape:connector-curvature="0" | ||
| 3330 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3331 | 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" | ||
| 3332 | id="path3941" | ||
| 3333 | inkscape:connector-curvature="0" | ||
| 3334 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3335 | 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" | ||
| 3336 | id="path3943" | ||
| 3337 | inkscape:connector-curvature="0" | ||
| 3338 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3339 | 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" | ||
| 3340 | id="path3945" | ||
| 3341 | inkscape:connector-curvature="0" | ||
| 3342 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3343 | 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" | ||
| 3344 | id="path3947" | ||
| 3345 | inkscape:connector-curvature="0" | ||
| 3346 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3347 | 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" | ||
| 3348 | id="path3949" | ||
| 3349 | inkscape:connector-curvature="0" | ||
| 3350 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3351 | 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" | ||
| 3352 | id="path3951" | ||
| 3353 | inkscape:connector-curvature="0" | ||
| 3354 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3355 | 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" | ||
| 3356 | id="path3953" | ||
| 3357 | inkscape:connector-curvature="0" | ||
| 3358 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3359 | 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" | ||
| 3360 | id="path3955" | ||
| 3361 | inkscape:connector-curvature="0" | ||
| 3362 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3363 | 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" | ||
| 3364 | id="path3957" | ||
| 3365 | inkscape:connector-curvature="0" | ||
| 3366 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3367 | 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" | ||
| 3368 | id="path3959" | ||
| 3369 | inkscape:connector-curvature="0" | ||
| 3370 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3371 | 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" | ||
| 3372 | id="path3961" | ||
| 3373 | inkscape:connector-curvature="0" | ||
| 3374 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3375 | 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" | ||
| 3376 | id="path3963" | ||
| 3377 | inkscape:connector-curvature="0" | ||
| 3378 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3379 | 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" | ||
| 3380 | id="path3965" | ||
| 3381 | inkscape:connector-curvature="0" | ||
| 3382 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3383 | 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" | ||
| 3384 | id="path3967" | ||
| 3385 | inkscape:connector-curvature="0" | ||
| 3386 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3387 | 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" | ||
| 3388 | id="path3969" | ||
| 3389 | inkscape:connector-curvature="0" | ||
| 3390 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3391 | 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" | ||
| 3392 | id="path3971" | ||
| 3393 | inkscape:connector-curvature="0" | ||
| 3394 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3395 | 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" | ||
| 3396 | id="path3973" | ||
| 3397 | inkscape:connector-curvature="0" | ||
| 3398 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3399 | d="m 916.17027,144.61174 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" | ||
| 3400 | id="path3975" | ||
| 3401 | inkscape:connector-curvature="0" | ||
| 3402 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3403 | 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" | ||
| 3404 | id="path3977" | ||
| 3405 | inkscape:connector-curvature="0" | ||
| 3406 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3407 | 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" | ||
| 3408 | id="path3979" | ||
| 3409 | inkscape:connector-curvature="0" | ||
| 3410 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3411 | 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" | ||
| 3412 | id="path3981" | ||
| 3413 | inkscape:connector-curvature="0" | ||
| 3414 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3415 | 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" | ||
| 3416 | id="path3983" | ||
| 3417 | inkscape:connector-curvature="0" | ||
| 3418 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3419 | d="m 621.84826,155.40505 1.122,0 0,9.48836 -1.122,0 0,-9.48836" | ||
| 3420 | id="path3985" | ||
| 3421 | inkscape:connector-curvature="0" | ||
| 3422 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3423 | 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" | ||
| 3424 | id="path3987" | ||
| 3425 | inkscape:connector-curvature="0" | ||
| 3426 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3427 | d="m 637.01986,155.78922 1.23177,0 0,8.06754 4.4332,0 0,1.03665 -5.66497,0 0,-9.10419" | ||
| 3428 | id="path3989" | ||
| 3429 | inkscape:connector-curvature="0" | ||
| 3430 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3431 | 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" | ||
| 3432 | id="path3991" | ||
| 3433 | inkscape:connector-curvature="0" | ||
| 3434 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3435 | 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" | ||
| 3436 | id="path3993" | ||
| 3437 | inkscape:connector-curvature="0" | ||
| 3438 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3439 | 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" | ||
| 3440 | id="path3995" | ||
| 3441 | inkscape:connector-curvature="0" | ||
| 3442 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3443 | 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" | ||
| 3444 | id="path3997" | ||
| 3445 | inkscape:connector-curvature="0" | ||
| 3446 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3447 | 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" | ||
| 3448 | id="path3999" | ||
| 3449 | inkscape:connector-curvature="0" | ||
| 3450 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3451 | 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" | ||
| 3452 | id="path4001" | ||
| 3453 | inkscape:connector-curvature="0" | ||
| 3454 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3455 | 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" | ||
| 3456 | id="path4003" | ||
| 3457 | inkscape:connector-curvature="0" | ||
| 3458 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3459 | d="m 694.99883,155.40505 1.12204,0 0,9.48836 -1.12204,0 0,-9.48836" | ||
| 3460 | id="path4005" | ||
| 3461 | inkscape:connector-curvature="0" | ||
| 3462 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3463 | 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" | ||
| 3464 | id="path4007" | ||
| 3465 | inkscape:connector-curvature="0" | ||
| 3466 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3467 | 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" | ||
| 3468 | id="path4009" | ||
| 3469 | inkscape:connector-curvature="0" | ||
| 3470 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3471 | 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" | ||
| 3472 | id="path4011" | ||
| 3473 | inkscape:connector-curvature="0" | ||
| 3474 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3475 | 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" | ||
| 3476 | id="path4013" | ||
| 3477 | inkscape:connector-curvature="0" | ||
| 3478 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3479 | 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" | ||
| 3480 | id="path4015" | ||
| 3481 | inkscape:connector-curvature="0" | ||
| 3482 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3483 | 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" | ||
| 3484 | id="path4017" | ||
| 3485 | inkscape:connector-curvature="0" | ||
| 3486 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3487 | 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" | ||
| 3488 | id="path4019" | ||
| 3489 | inkscape:connector-curvature="0" | ||
| 3490 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3491 | 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" | ||
| 3492 | id="path4021" | ||
| 3493 | inkscape:connector-curvature="0" | ||
| 3494 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3495 | 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" | ||
| 3496 | id="path4023" | ||
| 3497 | inkscape:connector-curvature="0" | ||
| 3498 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3499 | 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" | ||
| 3500 | id="path4025" | ||
| 3501 | inkscape:connector-curvature="0" | ||
| 3502 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3503 | 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" | ||
| 3504 | id="path4027" | ||
| 3505 | inkscape:connector-curvature="0" | ||
| 3506 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3507 | 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" | ||
| 3508 | id="path4029" | ||
| 3509 | inkscape:connector-curvature="0" | ||
| 3510 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3511 | 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" | ||
| 3512 | id="path4031" | ||
| 3513 | inkscape:connector-curvature="0" | ||
| 3514 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3515 | 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" | ||
| 3516 | id="path4033" | ||
| 3517 | inkscape:connector-curvature="0" | ||
| 3518 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3519 | 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" | ||
| 3520 | id="path4035" | ||
| 3521 | inkscape:connector-curvature="0" | ||
| 3522 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3523 | 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" | ||
| 3524 | id="path4037" | ||
| 3525 | inkscape:connector-curvature="0" | ||
| 3526 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3527 | 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" | ||
| 3528 | id="path4039" | ||
| 3529 | inkscape:connector-curvature="0" | ||
| 3530 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3531 | 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" | ||
| 3532 | id="path4041" | ||
| 3533 | inkscape:connector-curvature="0" | ||
| 3534 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3535 | 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" | ||
| 3536 | id="path4043" | ||
| 3537 | inkscape:connector-curvature="0" | ||
| 3538 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3539 | 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" | ||
| 3540 | id="path4045" | ||
| 3541 | inkscape:connector-curvature="0" | ||
| 3542 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3543 | 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" | ||
| 3544 | id="path4047" | ||
| 3545 | inkscape:connector-curvature="0" | ||
| 3546 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3547 | 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" | ||
| 3548 | id="path4049" | ||
| 3549 | inkscape:connector-curvature="0" | ||
| 3550 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3551 | 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" | ||
| 3552 | id="path4051" | ||
| 3553 | inkscape:connector-curvature="0" | ||
| 3554 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3555 | 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" | ||
| 3556 | id="path4053" | ||
| 3557 | inkscape:connector-curvature="0" | ||
| 3558 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3559 | 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" | ||
| 3560 | id="path4055" | ||
| 3561 | inkscape:connector-curvature="0" | ||
| 3562 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3563 | 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" | ||
| 3564 | id="path4057" | ||
| 3565 | inkscape:connector-curvature="0" | ||
| 3566 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3567 | 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" | ||
| 3568 | id="path4059" | ||
| 3569 | inkscape:connector-curvature="0" | ||
| 3570 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3571 | 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" | ||
| 3572 | id="path4061" | ||
| 3573 | inkscape:connector-curvature="0" | ||
| 3574 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3575 | 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" | ||
| 3576 | id="path4063" | ||
| 3577 | inkscape:connector-curvature="0" | ||
| 3578 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3579 | 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" | ||
| 3580 | id="path4065" | ||
| 3581 | inkscape:connector-curvature="0" | ||
| 3582 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3583 | 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" | ||
| 3584 | id="path4067" | ||
| 3585 | inkscape:connector-curvature="0" | ||
| 3586 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3587 | 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" | ||
| 3588 | id="path4069" | ||
| 3589 | inkscape:connector-curvature="0" | ||
| 3590 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3591 | d="m 941.08636,155.40505 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" | ||
| 3592 | id="path4071" | ||
| 3593 | inkscape:connector-curvature="0" | ||
| 3594 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3595 | d="m 944.70849,163.34454 1.28669,0 0,1.54887 -1.28669,0 0,-1.54887" | ||
| 3596 | id="path4073" | ||
| 3597 | inkscape:connector-curvature="0" | ||
| 3598 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3599 | 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" | ||
| 3600 | id="path4075" | ||
| 3601 | inkscape:connector-curvature="0" | ||
| 3602 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3603 | d="m 597.48098,174.13785 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" | ||
| 3604 | id="path4077" | ||
| 3605 | inkscape:connector-curvature="0" | ||
| 3606 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3607 | 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" | ||
| 3608 | id="path4079" | ||
| 3609 | inkscape:connector-curvature="0" | ||
| 3610 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3611 | 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" | ||
| 3612 | id="path4081" | ||
| 3613 | inkscape:connector-curvature="0" | ||
| 3614 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3615 | 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" | ||
| 3616 | id="path4083" | ||
| 3617 | inkscape:connector-curvature="0" | ||
| 3618 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3619 | 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" | ||
| 3620 | id="path4085" | ||
| 3621 | inkscape:connector-curvature="0" | ||
| 3622 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3623 | 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" | ||
| 3624 | id="path4087" | ||
| 3625 | inkscape:connector-curvature="0" | ||
| 3626 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3627 | 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" | ||
| 3628 | id="path4089" | ||
| 3629 | inkscape:connector-curvature="0" | ||
| 3630 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3631 | 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" | ||
| 3632 | id="path4091" | ||
| 3633 | inkscape:connector-curvature="0" | ||
| 3634 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3635 | 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" | ||
| 3636 | id="path4093" | ||
| 3637 | inkscape:connector-curvature="0" | ||
| 3638 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3639 | 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" | ||
| 3640 | id="path4095" | ||
| 3641 | inkscape:connector-curvature="0" | ||
| 3642 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3643 | 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" | ||
| 3644 | id="path4097" | ||
| 3645 | inkscape:connector-curvature="0" | ||
| 3646 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3647 | d="m 675.4855,174.13785 1.12204,0 0,9.48836 -1.12204,0 0,-9.48836" | ||
| 3648 | id="path4099" | ||
| 3649 | inkscape:connector-curvature="0" | ||
| 3650 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3651 | 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" | ||
| 3652 | id="path4101" | ||
| 3653 | inkscape:connector-curvature="0" | ||
| 3654 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3655 | 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" | ||
| 3656 | id="path4103" | ||
| 3657 | inkscape:connector-curvature="0" | ||
| 3658 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3659 | 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" | ||
| 3660 | id="path4105" | ||
| 3661 | inkscape:connector-curvature="0" | ||
| 3662 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3663 | 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" | ||
| 3664 | id="path4107" | ||
| 3665 | inkscape:connector-curvature="0" | ||
| 3666 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3667 | 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" | ||
| 3668 | id="path4109" | ||
| 3669 | inkscape:connector-curvature="0" | ||
| 3670 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3671 | 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" | ||
| 3672 | id="path4111" | ||
| 3673 | inkscape:connector-curvature="0" | ||
| 3674 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3675 | 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" | ||
| 3676 | id="path4113" | ||
| 3677 | inkscape:connector-curvature="0" | ||
| 3678 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3679 | 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" | ||
| 3680 | id="path4115" | ||
| 3681 | inkscape:connector-curvature="0" | ||
| 3682 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3683 | 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" | ||
| 3684 | id="path4117" | ||
| 3685 | inkscape:connector-curvature="0" | ||
| 3686 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3687 | 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" | ||
| 3688 | id="path4119" | ||
| 3689 | inkscape:connector-curvature="0" | ||
| 3690 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3691 | 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" | ||
| 3692 | id="path4121" | ||
| 3693 | inkscape:connector-curvature="0" | ||
| 3694 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3695 | 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" | ||
| 3696 | id="path4123" | ||
| 3697 | inkscape:connector-curvature="0" | ||
| 3698 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3699 | 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" | ||
| 3700 | id="path4125" | ||
| 3701 | inkscape:connector-curvature="0" | ||
| 3702 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3703 | 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" | ||
| 3704 | id="path4127" | ||
| 3705 | inkscape:connector-curvature="0" | ||
| 3706 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3707 | 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" | ||
| 3708 | id="path4129" | ||
| 3709 | inkscape:connector-curvature="0" | ||
| 3710 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3711 | 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" | ||
| 3712 | id="path4131" | ||
| 3713 | inkscape:connector-curvature="0" | ||
| 3714 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3715 | 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" | ||
| 3716 | id="path4133" | ||
| 3717 | inkscape:connector-curvature="0" | ||
| 3718 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3719 | d="m 816.78644,174.13785 1.12199,0 0,9.48836 -1.12199,0 0,-9.48836" | ||
| 3720 | id="path4135" | ||
| 3721 | inkscape:connector-curvature="0" | ||
| 3722 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3723 | 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" | ||
| 3724 | id="path4137" | ||
| 3725 | inkscape:connector-curvature="0" | ||
| 3726 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3727 | 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" | ||
| 3728 | id="path4139" | ||
| 3729 | inkscape:connector-curvature="0" | ||
| 3730 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3731 | 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" | ||
| 3732 | id="path4141" | ||
| 3733 | inkscape:connector-curvature="0" | ||
| 3734 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3735 | 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" | ||
| 3736 | id="path4143" | ||
| 3737 | inkscape:connector-curvature="0" | ||
| 3738 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3739 | 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" | ||
| 3740 | id="path4145" | ||
| 3741 | inkscape:connector-curvature="0" | ||
| 3742 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3743 | 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" | ||
| 3744 | id="path4147" | ||
| 3745 | inkscape:connector-curvature="0" | ||
| 3746 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3747 | 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" | ||
| 3748 | id="path4149" | ||
| 3749 | inkscape:connector-curvature="0" | ||
| 3750 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3751 | 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" | ||
| 3752 | id="path4151" | ||
| 3753 | inkscape:connector-curvature="0" | ||
| 3754 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3755 | 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" | ||
| 3756 | id="path4153" | ||
| 3757 | inkscape:connector-curvature="0" | ||
| 3758 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3759 | 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" | ||
| 3760 | id="path4155" | ||
| 3761 | inkscape:connector-curvature="0" | ||
| 3762 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3763 | 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" | ||
| 3764 | id="path4157" | ||
| 3765 | inkscape:connector-curvature="0" | ||
| 3766 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3767 | 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" | ||
| 3768 | id="path4159" | ||
| 3769 | inkscape:connector-curvature="0" | ||
| 3770 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3771 | 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" | ||
| 3772 | id="path4161" | ||
| 3773 | inkscape:connector-curvature="0" | ||
| 3774 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3775 | 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" | ||
| 3776 | id="path4163" | ||
| 3777 | inkscape:connector-curvature="0" | ||
| 3778 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3779 | 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" | ||
| 3780 | id="path4165" | ||
| 3781 | inkscape:connector-curvature="0" | ||
| 3782 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3783 | 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" | ||
| 3784 | id="path4167" | ||
| 3785 | inkscape:connector-curvature="0" | ||
| 3786 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3787 | 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" | ||
| 3788 | id="path4169" | ||
| 3789 | inkscape:connector-curvature="0" | ||
| 3790 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3791 | 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" | ||
| 3792 | id="path4171" | ||
| 3793 | inkscape:connector-curvature="0" | ||
| 3794 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3795 | 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" | ||
| 3796 | id="path4173" | ||
| 3797 | inkscape:connector-curvature="0" | ||
| 3798 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3799 | 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" | ||
| 3800 | id="path4175" | ||
| 3801 | inkscape:connector-curvature="0" | ||
| 3802 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3803 | 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" | ||
| 3804 | id="path4177" | ||
| 3805 | inkscape:connector-curvature="0" | ||
| 3806 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3807 | 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" | ||
| 3808 | id="path4179" | ||
| 3809 | inkscape:connector-curvature="0" | ||
| 3810 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3811 | d="m 983.30834,182.07734 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" | ||
| 3812 | id="path4181" | ||
| 3813 | inkscape:connector-curvature="0" | ||
| 3814 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3815 | 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" | ||
| 3816 | id="path4183" | ||
| 3817 | inkscape:connector-curvature="0" | ||
| 3818 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3819 | 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" | ||
| 3820 | id="path4185" | ||
| 3821 | inkscape:connector-curvature="0" | ||
| 3822 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3823 | 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" | ||
| 3824 | id="path4187" | ||
| 3825 | inkscape:connector-curvature="0" | ||
| 3826 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3827 | 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" | ||
| 3828 | id="path4189" | ||
| 3829 | inkscape:connector-curvature="0" | ||
| 3830 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3831 | 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" | ||
| 3832 | id="path4191" | ||
| 3833 | inkscape:connector-curvature="0" | ||
| 3834 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3835 | 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" | ||
| 3836 | id="path4193" | ||
| 3837 | inkscape:connector-curvature="0" | ||
| 3838 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3839 | 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" | ||
| 3840 | id="path4195" | ||
| 3841 | inkscape:connector-curvature="0" | ||
| 3842 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3843 | 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" | ||
| 3844 | id="path4197" | ||
| 3845 | inkscape:connector-curvature="0" | ||
| 3846 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3847 | 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" | ||
| 3848 | id="path4199" | ||
| 3849 | inkscape:connector-curvature="0" | ||
| 3850 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3851 | 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" | ||
| 3852 | id="path4201" | ||
| 3853 | inkscape:connector-curvature="0" | ||
| 3854 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3855 | 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" | ||
| 3856 | id="path4203" | ||
| 3857 | inkscape:connector-curvature="0" | ||
| 3858 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3859 | 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" | ||
| 3860 | id="path4205" | ||
| 3861 | inkscape:connector-curvature="0" | ||
| 3862 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3863 | 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" | ||
| 3864 | id="path4207" | ||
| 3865 | inkscape:connector-curvature="0" | ||
| 3866 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3867 | d="m 681.681,192.87065 1.122,0 0,9.48836 -1.122,0 0,-9.48836" | ||
| 3868 | id="path4209" | ||
| 3869 | inkscape:connector-curvature="0" | ||
| 3870 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3871 | 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" | ||
| 3872 | id="path4211" | ||
| 3873 | inkscape:connector-curvature="0" | ||
| 3874 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3875 | 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" | ||
| 3876 | id="path4213" | ||
| 3877 | inkscape:connector-curvature="0" | ||
| 3878 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3879 | 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" | ||
| 3880 | id="path4215" | ||
| 3881 | inkscape:connector-curvature="0" | ||
| 3882 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3883 | 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" | ||
| 3884 | id="path4217" | ||
| 3885 | inkscape:connector-curvature="0" | ||
| 3886 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3887 | 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" | ||
| 3888 | id="path4219" | ||
| 3889 | inkscape:connector-curvature="0" | ||
| 3890 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3891 | 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" | ||
| 3892 | id="path4221" | ||
| 3893 | inkscape:connector-curvature="0" | ||
| 3894 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3895 | 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" | ||
| 3896 | id="path4223" | ||
| 3897 | inkscape:connector-curvature="0" | ||
| 3898 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3899 | 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" | ||
| 3900 | id="path4225" | ||
| 3901 | inkscape:connector-curvature="0" | ||
| 3902 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3903 | d="m 756.66096,192.87065 1.12203,0 0,9.48836 -1.12203,0 0,-9.48836" | ||
| 3904 | id="path4227" | ||
| 3905 | inkscape:connector-curvature="0" | ||
| 3906 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3907 | 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" | ||
| 3908 | id="path4229" | ||
| 3909 | inkscape:connector-curvature="0" | ||
| 3910 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3911 | 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" | ||
| 3912 | id="path4231" | ||
| 3913 | inkscape:connector-curvature="0" | ||
| 3914 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3915 | 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" | ||
| 3916 | id="path4233" | ||
| 3917 | inkscape:connector-curvature="0" | ||
| 3918 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3919 | 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" | ||
| 3920 | id="path4235" | ||
| 3921 | inkscape:connector-curvature="0" | ||
| 3922 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3923 | 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" | ||
| 3924 | id="path4237" | ||
| 3925 | inkscape:connector-curvature="0" | ||
| 3926 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3927 | 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" | ||
| 3928 | id="path4239" | ||
| 3929 | inkscape:connector-curvature="0" | ||
| 3930 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3931 | 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" | ||
| 3932 | id="path4241" | ||
| 3933 | inkscape:connector-curvature="0" | ||
| 3934 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:150%;font-family:Sans;-inkscape-font-specification:Sans;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#f6921e;fill-opacity:1" /><path | ||
| 3935 | d="m 813.21307,200.81014 1.28664,0 0,1.54887 -1.28664,0 0,-1.54887" | ||
| 3936 | id="path4243" | ||
| 3937 | inkscape:connector-curvature="0" | ||
| 3938 | style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-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 | ||
| 3939 | inkscape:groupmode="layer" | ||
| 3940 | id="layer1" | ||
| 3941 | inkscape:label="DELETE bird before uploading" | ||
| 3942 | style="display:inline" /><g | ||
| 3943 | inkscape:groupmode="layer" | ||
| 3944 | id="layer9" | ||
| 3945 | inkscape:label="Your Design"><g | ||
| 3946 | id="g21" | ||
| 3947 | inkscape:label="0" | ||
| 3948 | transform="matrix(0.8,0,0,0.8,-113.89464,-481.88053)" | ||
| 3949 | style="stroke:#0000ff;stroke-opacity:1;stroke-width:0.03543307;stroke-miterlimit:4;stroke-dasharray:none"><path | ||
| 3950 | inkscape:connector-curvature="0" | ||
| 3951 | id="path23" | ||
| 3952 | 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" | ||
| 3953 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3954 | inkscape:connector-curvature="0" | ||
| 3955 | id="path25" | ||
| 3956 | 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" | ||
| 3957 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3958 | inkscape:connector-curvature="0" | ||
| 3959 | id="path27" | ||
| 3960 | 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" | ||
| 3961 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3962 | inkscape:connector-curvature="0" | ||
| 3963 | id="path29" | ||
| 3964 | 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" | ||
| 3965 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path | ||
| 3966 | inkscape:connector-curvature="0" | ||
| 3967 | id="path31" | ||
| 3968 | d="m 568.78387,625.5946 0.55008,0.0196" | ||
| 3969 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3970 | inkscape:connector-curvature="0" | ||
| 3971 | id="path33" | ||
| 3972 | d="m 569.33395,625.61422 0.54307,0.062" | ||
| 3973 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3974 | inkscape:connector-curvature="0" | ||
| 3975 | id="path35" | ||
| 3976 | d="m 569.87702,625.67624 0.54307,0.11107" | ||
| 3977 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3978 | inkscape:connector-curvature="0" | ||
| 3979 | id="path37" | ||
| 3980 | d="m 570.42009,625.78731 0.53256,0.1447" | ||
| 3981 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3982 | inkscape:connector-curvature="0" | ||
| 3983 | id="path39" | ||
| 3984 | d="m 570.95265,625.93201 0.51504,0.1941" | ||
| 3985 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3986 | inkscape:connector-curvature="0" | ||
| 3987 | id="path41" | ||
| 3988 | d="m 571.46769,626.12611 0.49753,0.2309" | ||
| 3989 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3990 | inkscape:connector-curvature="0" | ||
| 3991 | id="path43" | ||
| 3992 | d="m 571.96522,626.35701 0.4765,0.26593" | ||
| 3993 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3994 | inkscape:connector-curvature="0" | ||
| 3995 | id="path45" | ||
| 3996 | d="m 572.44172,626.62294 0.45898,0.30902" | ||
| 3997 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 3998 | inkscape:connector-curvature="0" | ||
| 3999 | id="path47" | ||
| 4000 | d="m 572.9007,626.93196 0.43446,0.34231" | ||
| 4001 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4002 | inkscape:connector-curvature="0" | ||
| 4003 | id="path49" | ||
| 4004 | d="m 573.33516,627.27427 0.40642,0.37209" | ||
| 4005 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4006 | inkscape:connector-curvature="0" | ||
| 4007 | id="path51" | ||
| 4008 | d="m 573.74158,627.64636 0.37139,0.40538" | ||
| 4009 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4010 | inkscape:connector-curvature="0" | ||
| 4011 | id="path53" | ||
| 4012 | d="m 574.11297,628.05174 0.34337,0.43025" | ||
| 4013 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4014 | inkscape:connector-curvature="0" | ||
| 4015 | id="path55" | ||
| 4016 | d="m 574.45634,628.48199 0.30482,0.45828" | ||
| 4017 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4018 | inkscape:connector-curvature="0" | ||
| 4019 | id="path57" | ||
| 4020 | d="m 574.76116,628.94027 0.26978,0.47861" | ||
| 4021 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4022 | inkscape:connector-curvature="0" | ||
| 4023 | id="path59" | ||
| 4024 | d="m 575.03094,629.41888 0.22774,0.50173" | ||
| 4025 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4026 | inkscape:connector-curvature="0" | ||
| 4027 | id="path61" | ||
| 4028 | d="m 575.25868,629.92061 0.1927,0.51153" | ||
| 4029 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4030 | inkscape:connector-curvature="0" | ||
| 4031 | id="path63" | ||
| 4032 | d="m 575.45138,630.43214 0.14365,0.53151" | ||
| 4033 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4034 | inkscape:connector-curvature="0" | ||
| 4035 | id="path65" | ||
| 4036 | d="m 575.59503,630.96365 0.11212,0.54027" | ||
| 4037 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4038 | inkscape:connector-curvature="0" | ||
| 4039 | id="path67" | ||
| 4040 | d="m 575.70715,631.50392 0.0631,0.54623" | ||
| 4041 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4042 | inkscape:connector-curvature="0" | ||
| 4043 | id="path69" | ||
| 4044 | d="m 575.77022,632.05015 0.0175,0.55007" | ||
| 4045 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4046 | inkscape:connector-curvature="0" | ||
| 4047 | id="path71" | ||
| 4048 | d="m 575.78774,632.60022 0,288.00768" | ||
| 4049 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4050 | inkscape:connector-curvature="0" | ||
| 4051 | id="path73" | ||
| 4052 | d="m 575.78774,920.6079 -0.0175,0.54559" | ||
| 4053 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4054 | inkscape:connector-curvature="0" | ||
| 4055 | id="path75" | ||
| 4056 | d="m 575.77022,921.15349 -0.0631,0.55043" | ||
| 4057 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4058 | inkscape:connector-curvature="0" | ||
| 4059 | id="path77" | ||
| 4060 | d="m 575.70715,921.70392 -0.11212,0.53593" | ||
| 4061 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4062 | inkscape:connector-curvature="0" | ||
| 4063 | id="path79" | ||
| 4064 | d="m 575.59503,922.23985 -0.14365,0.53592" | ||
| 4065 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4066 | inkscape:connector-curvature="0" | ||
| 4067 | id="path81" | ||
| 4068 | d="m 575.45138,922.77577 -0.1927,0.51182" | ||
| 4069 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4070 | inkscape:connector-curvature="0" | ||
| 4071 | id="path83" | ||
| 4072 | d="m 575.25868,923.28759 -0.22774,0.49731" | ||
| 4073 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4074 | inkscape:connector-curvature="0" | ||
| 4075 | id="path85" | ||
| 4076 | d="m 575.03094,923.7849 -0.26978,0.48281" | ||
| 4077 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4078 | inkscape:connector-curvature="0" | ||
| 4079 | id="path87" | ||
| 4080 | d="m 574.76116,924.26771 -0.30482,0.45868" | ||
| 4081 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4082 | inkscape:connector-curvature="0" | ||
| 4083 | id="path89" | ||
| 4084 | d="m 574.45634,924.72639 -0.34337,0.42971" | ||
| 4085 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4086 | inkscape:connector-curvature="0" | ||
| 4087 | id="path91" | ||
| 4088 | d="m 574.11297,925.1561 -0.37139,0.40557" | ||
| 4089 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4090 | inkscape:connector-curvature="0" | ||
| 4091 | id="path93" | ||
| 4092 | d="m 573.74158,925.56167 -0.40642,0.37177" | ||
| 4093 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4094 | inkscape:connector-curvature="0" | ||
| 4095 | id="path95" | ||
| 4096 | d="m 573.33516,925.93344 -0.43446,0.3428" | ||
| 4097 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4098 | inkscape:connector-curvature="0" | ||
| 4099 | id="path97" | ||
| 4100 | d="m 572.9007,926.27624 -0.45898,0.30418" | ||
| 4101 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4102 | inkscape:connector-curvature="0" | ||
| 4103 | id="path99" | ||
| 4104 | d="m 572.44172,926.58042 -0.4765,0.27038" | ||
| 4105 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4106 | inkscape:connector-curvature="0" | ||
| 4107 | id="path101" | ||
| 4108 | d="m 571.96522,926.8508 -0.49753,0.22693" | ||
| 4109 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4110 | inkscape:connector-curvature="0" | ||
| 4111 | id="path103" | ||
| 4112 | d="m 571.46769,927.07773 -0.51504,0.19312" | ||
| 4113 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4114 | inkscape:connector-curvature="0" | ||
| 4115 | id="path105" | ||
| 4116 | d="m 570.95265,927.27085 -0.53256,0.14968" | ||
| 4117 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4118 | inkscape:connector-curvature="0" | ||
| 4119 | id="path107" | ||
| 4120 | d="m 570.42009,927.42053 -0.54307,0.10622" | ||
| 4121 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4122 | inkscape:connector-curvature="0" | ||
| 4123 | id="path109" | ||
| 4124 | d="m 569.87702,927.52675 -0.54307,0.0628" | ||
| 4125 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4126 | inkscape:connector-curvature="0" | ||
| 4127 | id="path111" | ||
| 4128 | d="m 569.33395,927.58952 -0.54658,0.0241" | ||
| 4129 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4130 | inkscape:connector-curvature="0" | ||
| 4131 | id="path113" | ||
| 4132 | d="m 568.78737,927.61366 -393.47009,0" | ||
| 4133 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4134 | inkscape:connector-curvature="0" | ||
| 4135 | id="path115" | ||
| 4136 | d="m 175.31728,927.61366 -0.55043,-0.0241" | ||
| 4137 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4138 | inkscape:connector-curvature="0" | ||
| 4139 | id="path117" | ||
| 4140 | d="m 174.76685,927.58952 -0.54556,-0.0628" | ||
| 4141 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4142 | inkscape:connector-curvature="0" | ||
| 4143 | id="path119" | ||
| 4144 | d="m 174.22129,927.52675 -0.54076,-0.10622" | ||
| 4145 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4146 | inkscape:connector-curvature="0" | ||
| 4147 | id="path121" | ||
| 4148 | d="m 173.68053,927.42053 -0.53112,-0.14968" | ||
| 4149 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4150 | inkscape:connector-curvature="0" | ||
| 4151 | id="path123" | ||
| 4152 | d="m 173.14941,927.27085 -0.51179,-0.19312" | ||
| 4153 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4154 | inkscape:connector-curvature="0" | ||
| 4155 | id="path125" | ||
| 4156 | d="m 172.63762,927.07773 -0.50214,-0.22693" | ||
| 4157 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4158 | inkscape:connector-curvature="0" | ||
| 4159 | id="path127" | ||
| 4160 | d="m 172.13548,926.8508 -0.47798,-0.27038" | ||
| 4161 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4162 | inkscape:connector-curvature="0" | ||
| 4163 | id="path129" | ||
| 4164 | d="m 171.6575,926.58042 -0.45869,-0.30418" | ||
| 4165 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4166 | inkscape:connector-curvature="0" | ||
| 4167 | id="path131" | ||
| 4168 | d="m 171.19881,926.27624 -0.42971,-0.3428" | ||
| 4169 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4170 | inkscape:connector-curvature="0" | ||
| 4171 | id="path133" | ||
| 4172 | d="m 170.7691,925.93344 -0.40557,-0.37177" | ||
| 4173 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4174 | inkscape:connector-curvature="0" | ||
| 4175 | id="path135" | ||
| 4176 | d="m 170.36353,925.56167 -0.37177,-0.40557" | ||
| 4177 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4178 | inkscape:connector-curvature="0" | ||
| 4179 | id="path137" | ||
| 4180 | d="m 169.99176,925.1561 -0.3428,-0.42971" | ||
| 4181 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4182 | inkscape:connector-curvature="0" | ||
| 4183 | id="path139" | ||
| 4184 | d="m 169.64896,924.72639 -0.30901,-0.45868" | ||
| 4185 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4186 | inkscape:connector-curvature="0" | ||
| 4187 | id="path141" | ||
| 4188 | d="M 169.33995,924.26771 169.0744,923.7849" | ||
| 4189 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4190 | inkscape:connector-curvature="0" | ||
| 4191 | id="path143" | ||
| 4192 | d="m 169.0744,923.7849 -0.23175,-0.49731" | ||
| 4193 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4194 | inkscape:connector-curvature="0" | ||
| 4195 | id="path145" | ||
| 4196 | d="m 168.84265,923.28759 -0.19314,-0.51182" | ||
| 4197 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4198 | inkscape:connector-curvature="0" | ||
| 4199 | id="path147" | ||
| 4200 | d="m 168.64951,922.77577 -0.14484,-0.53592" | ||
| 4201 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4202 | inkscape:connector-curvature="0" | ||
| 4203 | id="path149" | ||
| 4204 | d="m 168.50467,922.23985 -0.11105,-0.53593" | ||
| 4205 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4206 | inkscape:connector-curvature="0" | ||
| 4207 | id="path151" | ||
| 4208 | d="m 168.39362,921.70392 -0.0628,-0.55043" | ||
| 4209 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4210 | inkscape:connector-curvature="0" | ||
| 4211 | id="path153" | ||
| 4212 | d="m 168.33085,921.15349 -0.0241,-0.54559" | ||
| 4213 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4214 | inkscape:connector-curvature="0" | ||
| 4215 | id="path155" | ||
| 4216 | d="m 168.30671,920.6079 0.005,-288.00768" | ||
| 4217 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4218 | inkscape:connector-curvature="0" | ||
| 4219 | id="path157" | ||
| 4220 | d="m 168.31154,632.60022 0.0193,-0.55007" | ||
| 4221 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4222 | inkscape:connector-curvature="0" | ||
| 4223 | id="path159" | ||
| 4224 | d="m 168.33085,632.05015 0.0628,-0.54623" | ||
| 4225 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4226 | inkscape:connector-curvature="0" | ||
| 4227 | id="path161" | ||
| 4228 | d="m 168.39362,631.50392 0.11105,-0.54027" | ||
| 4229 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4230 | inkscape:connector-curvature="0" | ||
| 4231 | id="path163" | ||
| 4232 | d="m 168.50467,630.96365 0.14484,-0.53151" | ||
| 4233 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4234 | inkscape:connector-curvature="0" | ||
| 4235 | id="path165" | ||
| 4236 | d="m 168.64951,630.43214 0.19314,-0.51153" | ||
| 4237 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4238 | inkscape:connector-curvature="0" | ||
| 4239 | id="path167" | ||
| 4240 | d="m 168.84265,629.92061 0.23175,-0.50173" | ||
| 4241 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4242 | inkscape:connector-curvature="0" | ||
| 4243 | id="path169" | ||
| 4244 | d="m 169.0744,629.41888 0.26555,-0.47861" | ||
| 4245 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4246 | inkscape:connector-curvature="0" | ||
| 4247 | id="path171" | ||
| 4248 | d="m 169.33995,628.94027 0.30901,-0.45828" | ||
| 4249 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4250 | inkscape:connector-curvature="0" | ||
| 4251 | id="path173" | ||
| 4252 | d="m 169.64896,628.48199 0.3428,-0.43025" | ||
| 4253 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4254 | inkscape:connector-curvature="0" | ||
| 4255 | id="path175" | ||
| 4256 | d="m 169.99176,628.05174 0.37177,-0.40538" | ||
| 4257 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4258 | inkscape:connector-curvature="0" | ||
| 4259 | id="path177" | ||
| 4260 | d="m 170.36353,627.64636 0.40557,-0.37209" | ||
| 4261 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4262 | inkscape:connector-curvature="0" | ||
| 4263 | id="path179" | ||
| 4264 | d="m 170.7691,627.27427 0.42971,-0.34231" | ||
| 4265 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4266 | inkscape:connector-curvature="0" | ||
| 4267 | id="path181" | ||
| 4268 | d="m 171.19881,626.93196 0.45869,-0.30902" | ||
| 4269 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4270 | inkscape:connector-curvature="0" | ||
| 4271 | id="path183" | ||
| 4272 | d="m 171.6575,626.62294 0.47798,-0.26593" | ||
| 4273 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4274 | inkscape:connector-curvature="0" | ||
| 4275 | id="path185" | ||
| 4276 | d="m 172.13548,626.35701 0.50214,-0.2309" | ||
| 4277 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4278 | inkscape:connector-curvature="0" | ||
| 4279 | id="path187" | ||
| 4280 | d="m 172.63762,626.12611 0.51179,-0.1941" | ||
| 4281 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4282 | inkscape:connector-curvature="0" | ||
| 4283 | id="path189" | ||
| 4284 | d="m 173.14941,625.93201 0.53112,-0.1447" | ||
| 4285 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4286 | inkscape:connector-curvature="0" | ||
| 4287 | id="path191" | ||
| 4288 | d="m 173.68053,625.78731 0.54076,-0.11107" | ||
| 4289 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4290 | inkscape:connector-curvature="0" | ||
| 4291 | id="path193" | ||
| 4292 | d="m 174.22129,625.67624 0.54556,-0.062" | ||
| 4293 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4294 | inkscape:connector-curvature="0" | ||
| 4295 | id="path195" | ||
| 4296 | d="m 174.76685,625.61422 0.55043,-0.0245" | ||
| 4297 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4298 | inkscape:connector-curvature="0" | ||
| 4299 | id="path197" | ||
| 4300 | d="m 175.31728,625.5897 393.46659,0.005" | ||
| 4301 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4302 | inkscape:connector-curvature="0" | ||
| 4303 | id="path199" | ||
| 4304 | d="m 177.15682,862.70795 0,2.09555" | ||
| 4305 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4306 | inkscape:connector-curvature="0" | ||
| 4307 | id="path201" | ||
| 4308 | d="m 177.15682,864.8035 -2.80036,0" | ||
| 4309 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4310 | inkscape:connector-curvature="0" | ||
| 4311 | id="path203" | ||
| 4312 | d="m 174.35646,864.8035 0,44.85398" | ||
| 4313 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4314 | inkscape:connector-curvature="0" | ||
| 4315 | id="path205" | ||
| 4316 | d="m 174.35646,909.65748 2.80036,0" | ||
| 4317 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4318 | inkscape:connector-curvature="0" | ||
| 4319 | id="path207" | ||
| 4320 | d="m 177.15682,909.65748 0,2.10036" | ||
| 4321 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4322 | inkscape:connector-curvature="0" | ||
| 4323 | id="path209" | ||
| 4324 | d="m 177.15682,911.75784 49.05486,0" | ||
| 4325 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4326 | inkscape:connector-curvature="0" | ||
| 4327 | id="path211" | ||
| 4328 | d="m 226.21168,911.75784 0,-2.10036" | ||
| 4329 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4330 | inkscape:connector-curvature="0" | ||
| 4331 | id="path213" | ||
| 4332 | d="m 226.21168,909.65748 2.80015,0" | ||
| 4333 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4334 | inkscape:connector-curvature="0" | ||
| 4335 | id="path215" | ||
| 4336 | d="m 229.01183,909.65748 0,-44.85398" | ||
| 4337 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4338 | inkscape:connector-curvature="0" | ||
| 4339 | id="path217" | ||
| 4340 | d="m 229.01183,864.8035 -2.80015,0" | ||
| 4341 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4342 | inkscape:connector-curvature="0" | ||
| 4343 | id="path219" | ||
| 4344 | d="m 226.21168,864.8035 0,-2.09555" | ||
| 4345 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4346 | inkscape:connector-curvature="0" | ||
| 4347 | id="path221" | ||
| 4348 | d="m 226.21168,862.70795 -49.05486,0" | ||
| 4349 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4350 | inkscape:connector-curvature="0" | ||
| 4351 | id="path223" | ||
| 4352 | d="m 243.90214,862.70795 0,2.09555" | ||
| 4353 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4354 | inkscape:connector-curvature="0" | ||
| 4355 | id="path225" | ||
| 4356 | d="m 243.90214,864.8035 -2.8005,0" | ||
| 4357 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4358 | inkscape:connector-curvature="0" | ||
| 4359 | id="path227" | ||
| 4360 | d="m 241.10164,864.8035 0,44.85398" | ||
| 4361 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4362 | inkscape:connector-curvature="0" | ||
| 4363 | id="path229" | ||
| 4364 | d="m 241.10164,909.65748 2.8005,0" | ||
| 4365 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4366 | inkscape:connector-curvature="0" | ||
| 4367 | id="path231" | ||
| 4368 | d="m 243.90214,909.65748 0,2.10036" | ||
| 4369 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4370 | inkscape:connector-curvature="0" | ||
| 4371 | id="path233" | ||
| 4372 | d="m 243.90214,911.75784 49.05406,0" | ||
| 4373 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4374 | inkscape:connector-curvature="0" | ||
| 4375 | id="path235" | ||
| 4376 | d="m 292.9562,911.75784 0,-2.10036" | ||
| 4377 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4378 | inkscape:connector-curvature="0" | ||
| 4379 | id="path237" | ||
| 4380 | d="m 292.9562,909.65748 2.80084,0" | ||
| 4381 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4382 | inkscape:connector-curvature="0" | ||
| 4383 | id="path239" | ||
| 4384 | d="m 295.75704,909.65748 0,-44.85398" | ||
| 4385 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4386 | inkscape:connector-curvature="0" | ||
| 4387 | id="path241" | ||
| 4388 | d="m 295.75704,864.8035 -2.80084,0" | ||
| 4389 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4390 | inkscape:connector-curvature="0" | ||
| 4391 | id="path243" | ||
| 4392 | d="m 292.9562,864.8035 0,-2.09555" | ||
| 4393 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4394 | inkscape:connector-curvature="0" | ||
| 4395 | id="path245" | ||
| 4396 | d="m 292.9562,862.70795 -49.05406,0" | ||
| 4397 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4398 | inkscape:connector-curvature="0" | ||
| 4399 | id="path247" | ||
| 4400 | d="m 310.64736,862.70795 0,2.09555" | ||
| 4401 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4402 | inkscape:connector-curvature="0" | ||
| 4403 | id="path249" | ||
| 4404 | d="m 310.64736,864.8035 -2.80085,0" | ||
| 4405 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4406 | inkscape:connector-curvature="0" | ||
| 4407 | id="path251" | ||
| 4408 | d="m 307.84651,864.8035 0,44.85398" | ||
| 4409 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4410 | inkscape:connector-curvature="0" | ||
| 4411 | id="path253" | ||
| 4412 | d="m 307.84651,909.65748 2.80085,0" | ||
| 4413 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4414 | inkscape:connector-curvature="0" | ||
| 4415 | id="path255" | ||
| 4416 | d="m 310.64736,909.65748 0,2.10036" | ||
| 4417 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4418 | inkscape:connector-curvature="0" | ||
| 4419 | id="path257" | ||
| 4420 | d="m 310.64736,911.75784 49.05405,0" | ||
| 4421 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4422 | inkscape:connector-curvature="0" | ||
| 4423 | id="path259" | ||
| 4424 | d="m 359.70141,911.75784 0,-2.10036" | ||
| 4425 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4426 | inkscape:connector-curvature="0" | ||
| 4427 | id="path261" | ||
| 4428 | d="m 359.70141,909.65748 2.80085,0" | ||
| 4429 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4430 | inkscape:connector-curvature="0" | ||
| 4431 | id="path263" | ||
| 4432 | d="m 362.50226,909.65748 0,-44.85398" | ||
| 4433 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4434 | inkscape:connector-curvature="0" | ||
| 4435 | id="path265" | ||
| 4436 | d="m 362.50226,864.8035 -2.80085,0" | ||
| 4437 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4438 | inkscape:connector-curvature="0" | ||
| 4439 | id="path267" | ||
| 4440 | d="m 359.70141,864.8035 0,-2.09555" | ||
| 4441 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4442 | inkscape:connector-curvature="0" | ||
| 4443 | id="path269" | ||
| 4444 | d="m 359.70141,862.70795 -49.05405,0" | ||
| 4445 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4446 | inkscape:connector-curvature="0" | ||
| 4447 | id="path271" | ||
| 4448 | d="m 377.39257,862.70795 0,2.09555" | ||
| 4449 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4450 | inkscape:connector-curvature="0" | ||
| 4451 | id="path273" | ||
| 4452 | d="m 377.39257,864.8035 -2.80084,0" | ||
| 4453 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4454 | inkscape:connector-curvature="0" | ||
| 4455 | id="path275" | ||
| 4456 | d="m 374.59173,864.8035 0,44.85398" | ||
| 4457 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4458 | inkscape:connector-curvature="0" | ||
| 4459 | id="path277" | ||
| 4460 | d="m 374.59173,909.65748 2.80084,0" | ||
| 4461 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4462 | inkscape:connector-curvature="0" | ||
| 4463 | id="path279" | ||
| 4464 | d="m 377.39257,909.65748 0,2.10036" | ||
| 4465 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4466 | inkscape:connector-curvature="0" | ||
| 4467 | id="path281" | ||
| 4468 | d="m 377.39257,911.75784 49.05406,0" | ||
| 4469 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4470 | inkscape:connector-curvature="0" | ||
| 4471 | id="path283" | ||
| 4472 | d="m 426.44663,911.75784 0,-2.10036" | ||
| 4473 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4474 | inkscape:connector-curvature="0" | ||
| 4475 | id="path285" | ||
| 4476 | d="m 426.44663,909.65748 2.80084,0" | ||
| 4477 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4478 | inkscape:connector-curvature="0" | ||
| 4479 | id="path287" | ||
| 4480 | d="m 429.24747,909.65748 0,-44.85398" | ||
| 4481 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4482 | inkscape:connector-curvature="0" | ||
| 4483 | id="path289" | ||
| 4484 | d="m 429.24747,864.8035 -2.80084,0" | ||
| 4485 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4486 | inkscape:connector-curvature="0" | ||
| 4487 | id="path291" | ||
| 4488 | d="m 426.44663,864.8035 0,-2.09555" | ||
| 4489 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4490 | inkscape:connector-curvature="0" | ||
| 4491 | id="path293" | ||
| 4492 | d="m 426.44663,862.70795 -49.05406,0" | ||
| 4493 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4494 | inkscape:connector-curvature="0" | ||
| 4495 | id="path295" | ||
| 4496 | d="m 444.13779,862.70795 0,2.09555" | ||
| 4497 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4498 | inkscape:connector-curvature="0" | ||
| 4499 | id="path297" | ||
| 4500 | d="m 444.13779,864.8035 -2.80085,0" | ||
| 4501 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4502 | inkscape:connector-curvature="0" | ||
| 4503 | id="path299" | ||
| 4504 | d="m 441.33694,864.8035 0,44.85398" | ||
| 4505 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4506 | inkscape:connector-curvature="0" | ||
| 4507 | id="path301" | ||
| 4508 | d="m 441.33694,909.65748 2.80085,0" | ||
| 4509 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4510 | inkscape:connector-curvature="0" | ||
| 4511 | id="path303" | ||
| 4512 | d="m 444.13779,909.65748 0,2.10036" | ||
| 4513 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4514 | inkscape:connector-curvature="0" | ||
| 4515 | id="path305" | ||
| 4516 | d="m 444.13779,911.75784 49.05405,0" | ||
| 4517 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4518 | inkscape:connector-curvature="0" | ||
| 4519 | id="path307" | ||
| 4520 | d="m 493.19184,911.75784 0,-2.10036" | ||
| 4521 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4522 | inkscape:connector-curvature="0" | ||
| 4523 | id="path309" | ||
| 4524 | d="m 493.19184,909.65748 2.80085,0" | ||
| 4525 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4526 | inkscape:connector-curvature="0" | ||
| 4527 | id="path311" | ||
| 4528 | d="m 495.99269,909.65748 0,-44.85398" | ||
| 4529 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4530 | inkscape:connector-curvature="0" | ||
| 4531 | id="path313" | ||
| 4532 | d="m 495.99269,864.8035 -2.80085,0" | ||
| 4533 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4534 | inkscape:connector-curvature="0" | ||
| 4535 | id="path315" | ||
| 4536 | d="m 493.19184,864.8035 0,-2.09555" | ||
| 4537 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4538 | inkscape:connector-curvature="0" | ||
| 4539 | id="path317" | ||
| 4540 | d="m 493.19184,862.70795 -49.05405,0" | ||
| 4541 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4542 | inkscape:connector-curvature="0" | ||
| 4543 | id="path319" | ||
| 4544 | d="m 510.88301,862.70795 0,2.09555" | ||
| 4545 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4546 | inkscape:connector-curvature="0" | ||
| 4547 | id="path321" | ||
| 4548 | d="m 510.88301,864.8035 -2.80085,0" | ||
| 4549 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4550 | inkscape:connector-curvature="0" | ||
| 4551 | id="path323" | ||
| 4552 | d="m 508.08216,864.8035 0,44.85398" | ||
| 4553 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4554 | inkscape:connector-curvature="0" | ||
| 4555 | id="path325" | ||
| 4556 | d="m 508.08216,909.65748 2.80085,0" | ||
| 4557 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4558 | inkscape:connector-curvature="0" | ||
| 4559 | id="path327" | ||
| 4560 | d="m 510.88301,909.65748 0,2.10036" | ||
| 4561 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4562 | inkscape:connector-curvature="0" | ||
| 4563 | id="path329" | ||
| 4564 | d="m 510.88301,911.75784 49.05055,0" | ||
| 4565 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4566 | inkscape:connector-curvature="0" | ||
| 4567 | id="path331" | ||
| 4568 | d="m 559.93356,911.75784 0,-2.10036" | ||
| 4569 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4570 | inkscape:connector-curvature="0" | ||
| 4571 | id="path333" | ||
| 4572 | d="m 559.93356,909.65748 2.80295,0" | ||
| 4573 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4574 | inkscape:connector-curvature="0" | ||
| 4575 | id="path335" | ||
| 4576 | d="m 562.73651,909.65748 0,-44.85398" | ||
| 4577 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4578 | inkscape:connector-curvature="0" | ||
| 4579 | id="path337" | ||
| 4580 | d="m 562.73651,864.8035 -2.80295,0" | ||
| 4581 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4582 | inkscape:connector-curvature="0" | ||
| 4583 | id="path339" | ||
| 4584 | d="m 559.93356,864.8035 0,-2.09555" | ||
| 4585 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4586 | inkscape:connector-curvature="0" | ||
| 4587 | id="path341" | ||
| 4588 | d="m 559.93356,862.70795 -49.05055,0" | ||
| 4589 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4590 | inkscape:connector-curvature="0" | ||
| 4591 | id="path343" | ||
| 4592 | d="m 177.15682,795.96308 0,2.09976" | ||
| 4593 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4594 | inkscape:connector-curvature="0" | ||
| 4595 | id="path345" | ||
| 4596 | d="m 177.15682,798.06284 -2.80036,0" | ||
| 4597 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4598 | inkscape:connector-curvature="0" | ||
| 4599 | id="path347" | ||
| 4600 | d="m 174.35646,798.06284 0,44.84928" | ||
| 4601 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4602 | inkscape:connector-curvature="0" | ||
| 4603 | id="path349" | ||
| 4604 | d="m 174.35646,842.91212 2.80036,0" | ||
| 4605 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4606 | inkscape:connector-curvature="0" | ||
| 4607 | id="path351" | ||
| 4608 | d="m 177.15682,842.91212 0,2.10046" | ||
| 4609 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4610 | inkscape:connector-curvature="0" | ||
| 4611 | id="path353" | ||
| 4612 | d="m 177.15682,845.01258 49.05486,0" | ||
| 4613 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4614 | inkscape:connector-curvature="0" | ||
| 4615 | id="path355" | ||
| 4616 | d="m 226.21168,845.01258 0,-2.10046" | ||
| 4617 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4618 | inkscape:connector-curvature="0" | ||
| 4619 | id="path357" | ||
| 4620 | d="m 226.21168,842.91212 2.80015,0" | ||
| 4621 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4622 | inkscape:connector-curvature="0" | ||
| 4623 | id="path359" | ||
| 4624 | d="m 229.01183,842.91212 0,-44.84928" | ||
| 4625 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4626 | inkscape:connector-curvature="0" | ||
| 4627 | id="path361" | ||
| 4628 | d="m 229.01183,798.06284 -2.80015,0" | ||
| 4629 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4630 | inkscape:connector-curvature="0" | ||
| 4631 | id="path363" | ||
| 4632 | d="m 226.21168,798.06284 0,-2.09976" | ||
| 4633 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4634 | inkscape:connector-curvature="0" | ||
| 4635 | id="path365" | ||
| 4636 | d="m 226.21168,795.96308 -49.05486,0" | ||
| 4637 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4638 | inkscape:connector-curvature="0" | ||
| 4639 | id="path367" | ||
| 4640 | d="m 243.90214,795.96308 0,2.57589" | ||
| 4641 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4642 | inkscape:connector-curvature="0" | ||
| 4643 | id="path369" | ||
| 4644 | d="m 243.90214,798.53897 -2.8005,0" | ||
| 4645 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4646 | inkscape:connector-curvature="0" | ||
| 4647 | id="path371" | ||
| 4648 | d="m 241.10164,798.53897 0,44.84928" | ||
| 4649 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4650 | inkscape:connector-curvature="0" | ||
| 4651 | id="path373" | ||
| 4652 | d="m 241.10164,843.38825 2.8005,0" | ||
| 4653 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4654 | inkscape:connector-curvature="0" | ||
| 4655 | id="path375" | ||
| 4656 | d="m 243.90214,843.38825 0,1.62969" | ||
| 4657 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4658 | inkscape:connector-curvature="0" | ||
| 4659 | id="path377" | ||
| 4660 | d="m 243.90214,845.01794 49.05406,0" | ||
| 4661 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4662 | inkscape:connector-curvature="0" | ||
| 4663 | id="path379" | ||
| 4664 | d="m 292.9562,845.01794 0,-2.10045" | ||
| 4665 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4666 | inkscape:connector-curvature="0" | ||
| 4667 | id="path381" | ||
| 4668 | d="m 292.9562,842.91749 2.80084,0" | ||
| 4669 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4670 | inkscape:connector-curvature="0" | ||
| 4671 | id="path383" | ||
| 4672 | d="m 295.75704,842.91749 0,-44.85465" | ||
| 4673 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4674 | inkscape:connector-curvature="0" | ||
| 4675 | id="path385" | ||
| 4676 | d="m 295.75704,798.06284 -2.80084,0" | ||
| 4677 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4678 | inkscape:connector-curvature="0" | ||
| 4679 | id="path387" | ||
| 4680 | d="m 292.9562,798.06284 0,-2.09976" | ||
| 4681 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4682 | inkscape:connector-curvature="0" | ||
| 4683 | id="path389" | ||
| 4684 | d="m 292.9562,795.96308 -49.05406,0" | ||
| 4685 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4686 | inkscape:connector-curvature="0" | ||
| 4687 | id="path391" | ||
| 4688 | d="m 310.64736,795.96308 0,2.09976" | ||
| 4689 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4690 | inkscape:connector-curvature="0" | ||
| 4691 | id="path393" | ||
| 4692 | d="m 310.64736,798.06284 -2.80085,0" | ||
| 4693 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4694 | inkscape:connector-curvature="0" | ||
| 4695 | id="path395" | ||
| 4696 | d="m 307.84651,798.06284 0,44.84928" | ||
| 4697 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4698 | inkscape:connector-curvature="0" | ||
| 4699 | id="path397" | ||
| 4700 | d="m 307.84651,842.91212 2.80085,0" | ||
| 4701 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4702 | inkscape:connector-curvature="0" | ||
| 4703 | id="path399" | ||
| 4704 | d="m 310.64736,842.91212 0,2.10046" | ||
| 4705 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4706 | inkscape:connector-curvature="0" | ||
| 4707 | id="path401" | ||
| 4708 | d="m 310.64736,845.01258 49.05405,0" | ||
| 4709 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4710 | inkscape:connector-curvature="0" | ||
| 4711 | id="path403" | ||
| 4712 | d="m 359.70141,845.01258 0,-2.10046" | ||
| 4713 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4714 | inkscape:connector-curvature="0" | ||
| 4715 | id="path405" | ||
| 4716 | d="m 359.70141,842.91212 2.80085,0" | ||
| 4717 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4718 | inkscape:connector-curvature="0" | ||
| 4719 | id="path407" | ||
| 4720 | d="m 362.50226,842.91212 0,-44.84928" | ||
| 4721 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4722 | inkscape:connector-curvature="0" | ||
| 4723 | id="path409" | ||
| 4724 | d="m 362.50226,798.06284 -2.80085,0" | ||
| 4725 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4726 | inkscape:connector-curvature="0" | ||
| 4727 | id="path411" | ||
| 4728 | d="m 359.70141,798.06284 0,-2.09976" | ||
| 4729 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4730 | inkscape:connector-curvature="0" | ||
| 4731 | id="path413" | ||
| 4732 | d="m 359.70141,795.96308 -49.05405,0" | ||
| 4733 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4734 | inkscape:connector-curvature="0" | ||
| 4735 | id="path415" | ||
| 4736 | d="m 377.39257,795.96308 0,2.09976" | ||
| 4737 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4738 | inkscape:connector-curvature="0" | ||
| 4739 | id="path417" | ||
| 4740 | d="m 377.39257,798.06284 -2.80084,0" | ||
| 4741 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4742 | inkscape:connector-curvature="0" | ||
| 4743 | id="path419" | ||
| 4744 | d="m 374.59173,798.06284 0,44.84928" | ||
| 4745 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4746 | inkscape:connector-curvature="0" | ||
| 4747 | id="path421" | ||
| 4748 | d="m 374.59173,842.91212 2.80084,0" | ||
| 4749 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4750 | inkscape:connector-curvature="0" | ||
| 4751 | id="path423" | ||
| 4752 | d="m 377.39257,842.91212 0,2.10046" | ||
| 4753 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4754 | inkscape:connector-curvature="0" | ||
| 4755 | id="path425" | ||
| 4756 | d="m 377.39257,845.01258 49.05406,0" | ||
| 4757 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4758 | inkscape:connector-curvature="0" | ||
| 4759 | id="path427" | ||
| 4760 | d="m 426.44663,845.01258 0,-2.10046" | ||
| 4761 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4762 | inkscape:connector-curvature="0" | ||
| 4763 | id="path429" | ||
| 4764 | d="m 426.44663,842.91212 2.80084,0" | ||
| 4765 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4766 | inkscape:connector-curvature="0" | ||
| 4767 | id="path431" | ||
| 4768 | d="m 429.24747,842.91212 0,-44.84928" | ||
| 4769 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4770 | inkscape:connector-curvature="0" | ||
| 4771 | id="path433" | ||
| 4772 | d="m 429.24747,798.06284 -2.80084,0" | ||
| 4773 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4774 | inkscape:connector-curvature="0" | ||
| 4775 | id="path435" | ||
| 4776 | d="m 426.44663,798.06284 0,-2.09976" | ||
| 4777 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4778 | inkscape:connector-curvature="0" | ||
| 4779 | id="path437" | ||
| 4780 | d="m 426.44663,795.96308 -49.05406,0" | ||
| 4781 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4782 | inkscape:connector-curvature="0" | ||
| 4783 | id="path439" | ||
| 4784 | d="m 444.13779,795.96308 0,2.09976" | ||
| 4785 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4786 | inkscape:connector-curvature="0" | ||
| 4787 | id="path441" | ||
| 4788 | d="m 444.13779,798.06284 -2.80085,0" | ||
| 4789 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4790 | inkscape:connector-curvature="0" | ||
| 4791 | id="path443" | ||
| 4792 | d="m 441.33694,798.06284 0,44.84928" | ||
| 4793 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4794 | inkscape:connector-curvature="0" | ||
| 4795 | id="path445" | ||
| 4796 | d="m 441.33694,842.91212 2.80085,0" | ||
| 4797 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4798 | inkscape:connector-curvature="0" | ||
| 4799 | id="path447" | ||
| 4800 | d="m 444.13779,842.91212 0,2.10046" | ||
| 4801 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4802 | inkscape:connector-curvature="0" | ||
| 4803 | id="path449" | ||
| 4804 | d="m 444.13779,845.01258 49.05405,0" | ||
| 4805 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4806 | inkscape:connector-curvature="0" | ||
| 4807 | id="path451" | ||
| 4808 | d="m 493.19184,845.01258 0,-2.10046" | ||
| 4809 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4810 | inkscape:connector-curvature="0" | ||
| 4811 | id="path453" | ||
| 4812 | d="m 493.19184,842.91212 2.80085,0" | ||
| 4813 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4814 | inkscape:connector-curvature="0" | ||
| 4815 | id="path455" | ||
| 4816 | d="m 495.99269,842.91212 0,-44.84928" | ||
| 4817 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4818 | inkscape:connector-curvature="0" | ||
| 4819 | id="path457" | ||
| 4820 | d="m 495.99269,798.06284 -2.80085,0" | ||
| 4821 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4822 | inkscape:connector-curvature="0" | ||
| 4823 | id="path459" | ||
| 4824 | d="m 493.19184,798.06284 0,-2.09976" | ||
| 4825 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4826 | inkscape:connector-curvature="0" | ||
| 4827 | id="path461" | ||
| 4828 | d="m 493.19184,795.96308 -49.05405,0" | ||
| 4829 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4830 | inkscape:connector-curvature="0" | ||
| 4831 | id="path463" | ||
| 4832 | d="m 510.88301,795.96308 0,2.09976" | ||
| 4833 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4834 | inkscape:connector-curvature="0" | ||
| 4835 | id="path465" | ||
| 4836 | d="m 510.88301,798.06284 -2.80085,0" | ||
| 4837 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4838 | inkscape:connector-curvature="0" | ||
| 4839 | id="path467" | ||
| 4840 | d="m 508.08216,798.06284 0,44.84928" | ||
| 4841 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4842 | inkscape:connector-curvature="0" | ||
| 4843 | id="path469" | ||
| 4844 | d="m 508.08216,842.91212 2.80085,0" | ||
| 4845 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4846 | inkscape:connector-curvature="0" | ||
| 4847 | id="path471" | ||
| 4848 | d="m 510.88301,842.91212 0,2.10046" | ||
| 4849 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4850 | inkscape:connector-curvature="0" | ||
| 4851 | id="path473" | ||
| 4852 | d="m 510.88301,845.01258 49.05055,0" | ||
| 4853 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4854 | inkscape:connector-curvature="0" | ||
| 4855 | id="path475" | ||
| 4856 | d="m 559.93356,845.01258 0,-2.10046" | ||
| 4857 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4858 | inkscape:connector-curvature="0" | ||
| 4859 | id="path477" | ||
| 4860 | d="m 559.93356,842.91212 2.80295,0" | ||
| 4861 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4862 | inkscape:connector-curvature="0" | ||
| 4863 | id="path479" | ||
| 4864 | d="m 562.73651,842.91212 0,-44.84928" | ||
| 4865 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4866 | inkscape:connector-curvature="0" | ||
| 4867 | id="path481" | ||
| 4868 | d="m 562.73651,798.06284 -2.80295,0" | ||
| 4869 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4870 | inkscape:connector-curvature="0" | ||
| 4871 | id="path483" | ||
| 4872 | d="m 559.93356,798.06284 0,-2.09976" | ||
| 4873 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4874 | inkscape:connector-curvature="0" | ||
| 4875 | id="path485" | ||
| 4876 | d="m 559.93356,795.96308 -49.05055,0" | ||
| 4877 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4878 | inkscape:connector-curvature="0" | ||
| 4879 | id="path487" | ||
| 4880 | d="m 177.15682,729.21787 0,2.09976" | ||
| 4881 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4882 | inkscape:connector-curvature="0" | ||
| 4883 | id="path489" | ||
| 4884 | d="m 177.15682,731.31763 -2.80036,0" | ||
| 4885 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4886 | inkscape:connector-curvature="0" | ||
| 4887 | id="path491" | ||
| 4888 | d="m 174.35646,731.31763 0,44.84928" | ||
| 4889 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4890 | inkscape:connector-curvature="0" | ||
| 4891 | id="path493" | ||
| 4892 | d="m 174.35646,776.16691 2.80036,0" | ||
| 4893 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4894 | inkscape:connector-curvature="0" | ||
| 4895 | id="path495" | ||
| 4896 | d="m 177.15682,776.16691 0,2.09976" | ||
| 4897 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4898 | inkscape:connector-curvature="0" | ||
| 4899 | id="path497" | ||
| 4900 | d="m 177.15682,778.26667 49.05486,0" | ||
| 4901 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4902 | inkscape:connector-curvature="0" | ||
| 4903 | id="path499" | ||
| 4904 | d="m 226.21168,778.26667 0,-2.09976" | ||
| 4905 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4906 | inkscape:connector-curvature="0" | ||
| 4907 | id="path501" | ||
| 4908 | d="m 226.21168,776.16691 2.80015,0" | ||
| 4909 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4910 | inkscape:connector-curvature="0" | ||
| 4911 | id="path503" | ||
| 4912 | d="m 229.01183,776.16691 0,-44.84928" | ||
| 4913 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4914 | inkscape:connector-curvature="0" | ||
| 4915 | id="path505" | ||
| 4916 | d="m 229.01183,731.31763 -2.80015,0" | ||
| 4917 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4918 | inkscape:connector-curvature="0" | ||
| 4919 | id="path507" | ||
| 4920 | d="m 226.21168,731.31763 0,-2.09976" | ||
| 4921 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4922 | inkscape:connector-curvature="0" | ||
| 4923 | id="path509" | ||
| 4924 | d="m 226.21168,729.21787 -49.05486,0" | ||
| 4925 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4926 | inkscape:connector-curvature="0" | ||
| 4927 | id="path511" | ||
| 4928 | d="m 243.90214,729.21787 0,2.09976" | ||
| 4929 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4930 | inkscape:connector-curvature="0" | ||
| 4931 | id="path513" | ||
| 4932 | d="m 243.90214,731.31763 -2.8005,0" | ||
| 4933 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4934 | inkscape:connector-curvature="0" | ||
| 4935 | id="path515" | ||
| 4936 | d="m 241.10164,731.31763 0,44.84928" | ||
| 4937 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4938 | inkscape:connector-curvature="0" | ||
| 4939 | id="path517" | ||
| 4940 | d="m 241.10164,776.16691 2.8005,0" | ||
| 4941 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4942 | inkscape:connector-curvature="0" | ||
| 4943 | id="path519" | ||
| 4944 | d="m 243.90214,776.16691 0,2.09976" | ||
| 4945 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4946 | inkscape:connector-curvature="0" | ||
| 4947 | id="path521" | ||
| 4948 | d="m 243.90214,778.26667 49.05406,0" | ||
| 4949 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4950 | inkscape:connector-curvature="0" | ||
| 4951 | id="path523" | ||
| 4952 | d="m 292.9562,778.26667 0,-2.09976" | ||
| 4953 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4954 | inkscape:connector-curvature="0" | ||
| 4955 | id="path525" | ||
| 4956 | d="m 292.9562,776.16691 2.80084,0" | ||
| 4957 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4958 | inkscape:connector-curvature="0" | ||
| 4959 | id="path527" | ||
| 4960 | d="m 295.75704,776.16691 0,-44.84928" | ||
| 4961 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4962 | inkscape:connector-curvature="0" | ||
| 4963 | id="path529" | ||
| 4964 | d="m 295.75704,731.31763 -2.80084,0" | ||
| 4965 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4966 | inkscape:connector-curvature="0" | ||
| 4967 | id="path531" | ||
| 4968 | d="m 292.9562,731.31763 0,-2.09976" | ||
| 4969 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4970 | inkscape:connector-curvature="0" | ||
| 4971 | id="path533" | ||
| 4972 | d="m 292.9562,729.21787 -49.05406,0" | ||
| 4973 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4974 | inkscape:connector-curvature="0" | ||
| 4975 | id="path535" | ||
| 4976 | d="m 310.64736,729.21787 0,2.09976" | ||
| 4977 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4978 | inkscape:connector-curvature="0" | ||
| 4979 | id="path537" | ||
| 4980 | d="m 310.64736,731.31763 -2.80085,0" | ||
| 4981 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4982 | inkscape:connector-curvature="0" | ||
| 4983 | id="path539" | ||
| 4984 | d="m 307.84651,731.31763 0,44.84928" | ||
| 4985 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4986 | inkscape:connector-curvature="0" | ||
| 4987 | id="path541" | ||
| 4988 | d="m 307.84651,776.16691 2.80085,0" | ||
| 4989 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4990 | inkscape:connector-curvature="0" | ||
| 4991 | id="path543" | ||
| 4992 | d="m 310.64736,776.16691 0,2.09976" | ||
| 4993 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4994 | inkscape:connector-curvature="0" | ||
| 4995 | id="path545" | ||
| 4996 | d="m 310.64736,778.26667 49.05405,0" | ||
| 4997 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 4998 | inkscape:connector-curvature="0" | ||
| 4999 | id="path547" | ||
| 5000 | d="m 359.70141,778.26667 0,-2.09976" | ||
| 5001 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5002 | inkscape:connector-curvature="0" | ||
| 5003 | id="path549" | ||
| 5004 | d="m 359.70141,776.16691 2.80085,0" | ||
| 5005 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5006 | inkscape:connector-curvature="0" | ||
| 5007 | id="path551" | ||
| 5008 | d="m 362.50226,776.16691 0,-44.84928" | ||
| 5009 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5010 | inkscape:connector-curvature="0" | ||
| 5011 | id="path553" | ||
| 5012 | d="m 362.50226,731.31763 -2.80085,0" | ||
| 5013 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5014 | inkscape:connector-curvature="0" | ||
| 5015 | id="path555" | ||
| 5016 | d="m 359.70141,731.31763 0,-2.09976" | ||
| 5017 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5018 | inkscape:connector-curvature="0" | ||
| 5019 | id="path557" | ||
| 5020 | d="m 359.70141,729.21787 -49.05405,0" | ||
| 5021 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5022 | inkscape:connector-curvature="0" | ||
| 5023 | id="path559" | ||
| 5024 | d="m 377.39257,729.21787 0,2.09976" | ||
| 5025 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5026 | inkscape:connector-curvature="0" | ||
| 5027 | id="path561" | ||
| 5028 | d="m 377.39257,731.31763 -2.80084,0" | ||
| 5029 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5030 | inkscape:connector-curvature="0" | ||
| 5031 | id="path563" | ||
| 5032 | d="m 374.59173,731.31763 0,44.84928" | ||
| 5033 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5034 | inkscape:connector-curvature="0" | ||
| 5035 | id="path565" | ||
| 5036 | d="m 374.59173,776.16691 2.80084,0" | ||
| 5037 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5038 | inkscape:connector-curvature="0" | ||
| 5039 | id="path567" | ||
| 5040 | d="m 377.39257,776.16691 0,2.09976" | ||
| 5041 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5042 | inkscape:connector-curvature="0" | ||
| 5043 | id="path569" | ||
| 5044 | d="m 377.39257,778.26667 49.05406,0" | ||
| 5045 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5046 | inkscape:connector-curvature="0" | ||
| 5047 | id="path571" | ||
| 5048 | d="m 426.44663,778.26667 0,-2.09976" | ||
| 5049 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5050 | inkscape:connector-curvature="0" | ||
| 5051 | id="path573" | ||
| 5052 | d="m 426.44663,776.16691 2.80084,0" | ||
| 5053 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5054 | inkscape:connector-curvature="0" | ||
| 5055 | id="path575" | ||
| 5056 | d="m 429.24747,776.16691 0,-44.84928" | ||
| 5057 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5058 | inkscape:connector-curvature="0" | ||
| 5059 | id="path577" | ||
| 5060 | d="m 429.24747,731.31763 -2.80084,0" | ||
| 5061 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5062 | inkscape:connector-curvature="0" | ||
| 5063 | id="path579" | ||
| 5064 | d="m 426.44663,731.31763 0,-2.09976" | ||
| 5065 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5066 | inkscape:connector-curvature="0" | ||
| 5067 | id="path581" | ||
| 5068 | d="m 426.44663,729.21787 -49.05406,0" | ||
| 5069 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5070 | inkscape:connector-curvature="0" | ||
| 5071 | id="path583" | ||
| 5072 | d="m 444.13779,729.21787 0,2.09976" | ||
| 5073 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5074 | inkscape:connector-curvature="0" | ||
| 5075 | id="path585" | ||
| 5076 | d="m 444.13779,731.31763 -2.80085,0" | ||
| 5077 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5078 | inkscape:connector-curvature="0" | ||
| 5079 | id="path587" | ||
| 5080 | d="m 441.33694,731.31763 0,44.84928" | ||
| 5081 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5082 | inkscape:connector-curvature="0" | ||
| 5083 | id="path589" | ||
| 5084 | d="m 441.33694,776.16691 2.80085,0" | ||
| 5085 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5086 | inkscape:connector-curvature="0" | ||
| 5087 | id="path591" | ||
| 5088 | d="m 444.13779,776.16691 0,2.09976" | ||
| 5089 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5090 | inkscape:connector-curvature="0" | ||
| 5091 | id="path593" | ||
| 5092 | d="m 444.13779,778.26667 49.05405,0" | ||
| 5093 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5094 | inkscape:connector-curvature="0" | ||
| 5095 | id="path595" | ||
| 5096 | d="m 493.19184,778.26667 0,-2.09976" | ||
| 5097 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5098 | inkscape:connector-curvature="0" | ||
| 5099 | id="path597" | ||
| 5100 | d="m 493.19184,776.16691 2.80085,0" | ||
| 5101 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5102 | inkscape:connector-curvature="0" | ||
| 5103 | id="path599" | ||
| 5104 | d="m 495.99269,776.16691 0,-44.84928" | ||
| 5105 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5106 | inkscape:connector-curvature="0" | ||
| 5107 | id="path601" | ||
| 5108 | d="m 495.99269,731.31763 -2.80085,0" | ||
| 5109 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5110 | inkscape:connector-curvature="0" | ||
| 5111 | id="path603" | ||
| 5112 | d="m 493.19184,731.31763 0,-2.09976" | ||
| 5113 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5114 | inkscape:connector-curvature="0" | ||
| 5115 | id="path605" | ||
| 5116 | d="m 493.19184,729.21787 -49.05405,0" | ||
| 5117 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5118 | inkscape:connector-curvature="0" | ||
| 5119 | id="path607" | ||
| 5120 | d="m 510.88301,729.21787 0,2.09976" | ||
| 5121 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5122 | inkscape:connector-curvature="0" | ||
| 5123 | id="path609" | ||
| 5124 | d="m 510.88301,731.31763 -2.80085,0" | ||
| 5125 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5126 | inkscape:connector-curvature="0" | ||
| 5127 | id="path611" | ||
| 5128 | d="m 508.08216,731.31763 0,44.84928" | ||
| 5129 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5130 | inkscape:connector-curvature="0" | ||
| 5131 | id="path613" | ||
| 5132 | d="m 508.08216,776.16691 2.80085,0" | ||
| 5133 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5134 | inkscape:connector-curvature="0" | ||
| 5135 | id="path615" | ||
| 5136 | d="m 510.88301,776.16691 0,2.09976" | ||
| 5137 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5138 | inkscape:connector-curvature="0" | ||
| 5139 | id="path617" | ||
| 5140 | d="m 510.88301,778.26667 49.05055,0" | ||
| 5141 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5142 | inkscape:connector-curvature="0" | ||
| 5143 | id="path619" | ||
| 5144 | d="m 559.93356,778.26667 0,-2.09976" | ||
| 5145 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5146 | inkscape:connector-curvature="0" | ||
| 5147 | id="path621" | ||
| 5148 | d="m 559.93356,776.16691 2.80295,0" | ||
| 5149 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5150 | inkscape:connector-curvature="0" | ||
| 5151 | id="path623" | ||
| 5152 | d="m 562.73651,776.16691 0,-44.84928" | ||
| 5153 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5154 | inkscape:connector-curvature="0" | ||
| 5155 | id="path625" | ||
| 5156 | d="m 562.73651,731.31763 -2.80295,0" | ||
| 5157 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5158 | inkscape:connector-curvature="0" | ||
| 5159 | id="path627" | ||
| 5160 | d="m 559.93356,731.31763 0,-2.09976" | ||
| 5161 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5162 | inkscape:connector-curvature="0" | ||
| 5163 | id="path629" | ||
| 5164 | d="m 559.93356,729.21787 -49.05055,0" | ||
| 5165 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5166 | inkscape:connector-curvature="0" | ||
| 5167 | id="path631" | ||
| 5168 | d="m 177.15682,662.46659 0,2.10582" | ||
| 5169 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5170 | inkscape:connector-curvature="0" | ||
| 5171 | id="path633" | ||
| 5172 | d="m 177.15682,664.57241 -2.80036,0" | ||
| 5173 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5174 | inkscape:connector-curvature="0" | ||
| 5175 | id="path635" | ||
| 5176 | d="m 174.35646,664.57241 0,44.84438" | ||
| 5177 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5178 | inkscape:connector-curvature="0" | ||
| 5179 | id="path637" | ||
| 5180 | d="m 174.35646,709.41679 2.80036,0" | ||
| 5181 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5182 | inkscape:connector-curvature="0" | ||
| 5183 | id="path639" | ||
| 5184 | d="m 177.15682,709.41679 0,2.10466" | ||
| 5185 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5186 | inkscape:connector-curvature="0" | ||
| 5187 | id="path641" | ||
| 5188 | d="m 177.15682,711.52145 49.05486,0" | ||
| 5189 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5190 | inkscape:connector-curvature="0" | ||
| 5191 | id="path643" | ||
| 5192 | d="m 226.21168,711.52145 0,-2.10466" | ||
| 5193 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5194 | inkscape:connector-curvature="0" | ||
| 5195 | id="path645" | ||
| 5196 | d="m 226.21168,709.41679 2.80015,0" | ||
| 5197 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5198 | inkscape:connector-curvature="0" | ||
| 5199 | id="path647" | ||
| 5200 | d="m 229.01183,709.41679 0,-44.84519" | ||
| 5201 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5202 | inkscape:connector-curvature="0" | ||
| 5203 | id="path649" | ||
| 5204 | d="m 229.01183,664.5716 -2.80015,0" | ||
| 5205 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5206 | inkscape:connector-curvature="0" | ||
| 5207 | id="path651" | ||
| 5208 | d="m 226.21168,664.5716 0,-2.10501" | ||
| 5209 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5210 | inkscape:connector-curvature="0" | ||
| 5211 | id="path653" | ||
| 5212 | d="m 226.21168,662.46659 -49.05486,0" | ||
| 5213 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5214 | inkscape:connector-curvature="0" | ||
| 5215 | id="path655" | ||
| 5216 | d="m 243.90214,662.46659 0,2.58538" | ||
| 5217 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5218 | inkscape:connector-curvature="0" | ||
| 5219 | id="path657" | ||
| 5220 | d="m 243.90214,665.05197 -2.8005,0" | ||
| 5221 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5222 | inkscape:connector-curvature="0" | ||
| 5223 | id="path659" | ||
| 5224 | d="m 241.10164,665.05197 0,44.84437" | ||
| 5225 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5226 | inkscape:connector-curvature="0" | ||
| 5227 | id="path661" | ||
| 5228 | d="m 241.10164,709.89634 2.8005,0" | ||
| 5229 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5230 | inkscape:connector-curvature="0" | ||
| 5231 | id="path663" | ||
| 5232 | d="m 243.90214,709.89634 0,1.62511" | ||
| 5233 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5234 | inkscape:connector-curvature="0" | ||
| 5235 | id="path665" | ||
| 5236 | d="m 243.90214,711.52145 49.05406,0" | ||
| 5237 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5238 | inkscape:connector-curvature="0" | ||
| 5239 | id="path667" | ||
| 5240 | d="m 292.9562,711.52145 0,-2.10466" | ||
| 5241 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5242 | inkscape:connector-curvature="0" | ||
| 5243 | id="path669" | ||
| 5244 | d="m 292.9562,709.41679 2.80084,0" | ||
| 5245 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5246 | inkscape:connector-curvature="0" | ||
| 5247 | id="path671" | ||
| 5248 | d="m 295.75704,709.41679 0,-44.84519" | ||
| 5249 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5250 | inkscape:connector-curvature="0" | ||
| 5251 | id="path673" | ||
| 5252 | d="m 295.75704,664.5716 -2.80084,0" | ||
| 5253 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5254 | inkscape:connector-curvature="0" | ||
| 5255 | id="path675" | ||
| 5256 | d="m 292.9562,664.5716 0,-2.10501" | ||
| 5257 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5258 | inkscape:connector-curvature="0" | ||
| 5259 | id="path677" | ||
| 5260 | d="m 292.9562,662.46659 -49.05406,0" | ||
| 5261 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5262 | inkscape:connector-curvature="0" | ||
| 5263 | id="path679" | ||
| 5264 | d="m 310.64736,662.46739 0,2.10502" | ||
| 5265 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5266 | inkscape:connector-curvature="0" | ||
| 5267 | id="path681" | ||
| 5268 | d="m 310.64736,664.57241 -2.80085,0" | ||
| 5269 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5270 | inkscape:connector-curvature="0" | ||
| 5271 | id="path683" | ||
| 5272 | d="m 307.84651,664.57241 0,44.84438" | ||
| 5273 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5274 | inkscape:connector-curvature="0" | ||
| 5275 | id="path685" | ||
| 5276 | d="m 307.84651,709.41679 2.80085,0" | ||
| 5277 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5278 | inkscape:connector-curvature="0" | ||
| 5279 | id="path687" | ||
| 5280 | d="m 310.64736,709.41679 0,2.10466" | ||
| 5281 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5282 | inkscape:connector-curvature="0" | ||
| 5283 | id="path689" | ||
| 5284 | d="m 310.64736,711.52145 49.05405,0" | ||
| 5285 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5286 | inkscape:connector-curvature="0" | ||
| 5287 | id="path691" | ||
| 5288 | d="m 359.70141,711.52145 0,-2.10466" | ||
| 5289 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5290 | inkscape:connector-curvature="0" | ||
| 5291 | id="path693" | ||
| 5292 | d="m 359.70141,709.41679 2.80085,0" | ||
| 5293 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5294 | inkscape:connector-curvature="0" | ||
| 5295 | id="path695" | ||
| 5296 | d="m 362.50226,709.41679 0,-44.84438" | ||
| 5297 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5298 | inkscape:connector-curvature="0" | ||
| 5299 | id="path697" | ||
| 5300 | d="m 362.50226,664.57241 -2.80085,0" | ||
| 5301 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5302 | inkscape:connector-curvature="0" | ||
| 5303 | id="path699" | ||
| 5304 | d="m 359.70141,664.57241 0,-2.10502" | ||
| 5305 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5306 | inkscape:connector-curvature="0" | ||
| 5307 | id="path701" | ||
| 5308 | d="m 359.70141,662.46739 -49.05405,0" | ||
| 5309 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5310 | inkscape:connector-curvature="0" | ||
| 5311 | id="path703" | ||
| 5312 | d="m 377.39257,662.46739 0,2.10502" | ||
| 5313 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5314 | inkscape:connector-curvature="0" | ||
| 5315 | id="path705" | ||
| 5316 | d="m 377.39257,664.57241 -2.80084,0" | ||
| 5317 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5318 | inkscape:connector-curvature="0" | ||
| 5319 | id="path707" | ||
| 5320 | d="m 374.59173,664.57241 0,44.84438" | ||
| 5321 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5322 | inkscape:connector-curvature="0" | ||
| 5323 | id="path709" | ||
| 5324 | d="m 374.59173,709.41679 2.80084,0" | ||
| 5325 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5326 | inkscape:connector-curvature="0" | ||
| 5327 | id="path711" | ||
| 5328 | d="m 377.39257,709.41679 0,2.10466" | ||
| 5329 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5330 | inkscape:connector-curvature="0" | ||
| 5331 | id="path713" | ||
| 5332 | d="m 377.39257,711.52145 49.05406,0" | ||
| 5333 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5334 | inkscape:connector-curvature="0" | ||
| 5335 | id="path715" | ||
| 5336 | d="m 426.44663,711.52145 0,-2.10466" | ||
| 5337 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5338 | inkscape:connector-curvature="0" | ||
| 5339 | id="path717" | ||
| 5340 | d="m 426.44663,709.41679 2.80084,0" | ||
| 5341 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5342 | inkscape:connector-curvature="0" | ||
| 5343 | id="path719" | ||
| 5344 | d="m 429.24747,709.41679 0,-44.84438" | ||
| 5345 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5346 | inkscape:connector-curvature="0" | ||
| 5347 | id="path721" | ||
| 5348 | d="m 429.24747,664.57241 -2.80084,0" | ||
| 5349 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5350 | inkscape:connector-curvature="0" | ||
| 5351 | id="path723" | ||
| 5352 | d="m 426.44663,664.57241 0,-2.10502" | ||
| 5353 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5354 | inkscape:connector-curvature="0" | ||
| 5355 | id="path725" | ||
| 5356 | d="m 426.44663,662.46739 -49.05406,0" | ||
| 5357 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5358 | inkscape:connector-curvature="0" | ||
| 5359 | id="path727" | ||
| 5360 | d="m 444.13779,662.46739 0,2.10502" | ||
| 5361 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5362 | inkscape:connector-curvature="0" | ||
| 5363 | id="path729" | ||
| 5364 | d="m 444.13779,664.57241 -2.80085,0" | ||
| 5365 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5366 | inkscape:connector-curvature="0" | ||
| 5367 | id="path731" | ||
| 5368 | d="m 441.33694,664.57241 0,44.84438" | ||
| 5369 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5370 | inkscape:connector-curvature="0" | ||
| 5371 | id="path733" | ||
| 5372 | d="m 441.33694,709.41679 2.80085,0" | ||
| 5373 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5374 | inkscape:connector-curvature="0" | ||
| 5375 | id="path735" | ||
| 5376 | d="m 444.13779,709.41679 0,2.10466" | ||
| 5377 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5378 | inkscape:connector-curvature="0" | ||
| 5379 | id="path737" | ||
| 5380 | d="m 444.13779,711.52145 49.05405,0" | ||
| 5381 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5382 | inkscape:connector-curvature="0" | ||
| 5383 | id="path739" | ||
| 5384 | d="m 493.19184,711.52145 0,-2.10466" | ||
| 5385 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5386 | inkscape:connector-curvature="0" | ||
| 5387 | id="path741" | ||
| 5388 | d="m 493.19184,709.41679 2.80085,0" | ||
| 5389 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5390 | inkscape:connector-curvature="0" | ||
| 5391 | id="path743" | ||
| 5392 | d="m 495.99269,709.41679 0,-44.84438" | ||
| 5393 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5394 | inkscape:connector-curvature="0" | ||
| 5395 | id="path745" | ||
| 5396 | d="m 495.99269,664.57241 -2.80085,0" | ||
| 5397 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5398 | inkscape:connector-curvature="0" | ||
| 5399 | id="path747" | ||
| 5400 | d="m 493.19184,664.57241 0,-2.10502" | ||
| 5401 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5402 | inkscape:connector-curvature="0" | ||
| 5403 | id="path749" | ||
| 5404 | d="m 493.19184,662.46739 -49.05405,0" | ||
| 5405 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5406 | inkscape:connector-curvature="0" | ||
| 5407 | id="path751" | ||
| 5408 | d="m 510.88206,662.46739 0,2.10502" | ||
| 5409 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5410 | inkscape:connector-curvature="0" | ||
| 5411 | id="path753" | ||
| 5412 | d="m 510.88206,664.57241 -2.80085,0" | ||
| 5413 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5414 | inkscape:connector-curvature="0" | ||
| 5415 | id="path755" | ||
| 5416 | d="m 508.08121,664.57241 0,44.84438" | ||
| 5417 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5418 | inkscape:connector-curvature="0" | ||
| 5419 | id="path757" | ||
| 5420 | d="m 508.08121,709.41679 2.80085,0" | ||
| 5421 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5422 | inkscape:connector-curvature="0" | ||
| 5423 | id="path759" | ||
| 5424 | d="m 510.88206,709.41679 0,2.10466" | ||
| 5425 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5426 | inkscape:connector-curvature="0" | ||
| 5427 | id="path761" | ||
| 5428 | d="m 510.88206,711.52145 49.05055,0" | ||
| 5429 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5430 | inkscape:connector-curvature="0" | ||
| 5431 | id="path763" | ||
| 5432 | d="m 559.93261,711.52145 0,-2.10466" | ||
| 5433 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5434 | inkscape:connector-curvature="0" | ||
| 5435 | id="path765" | ||
| 5436 | d="m 559.93261,709.41679 2.80295,0" | ||
| 5437 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5438 | inkscape:connector-curvature="0" | ||
| 5439 | id="path767" | ||
| 5440 | d="m 562.73556,709.41679 0,-44.84438" | ||
| 5441 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5442 | inkscape:connector-curvature="0" | ||
| 5443 | id="path769" | ||
| 5444 | d="m 562.73556,664.57241 -2.80295,0" | ||
| 5445 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5446 | inkscape:connector-curvature="0" | ||
| 5447 | id="path771" | ||
| 5448 | d="m 559.93261,664.57241 0,-2.10502" | ||
| 5449 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5450 | inkscape:connector-curvature="0" | ||
| 5451 | id="path773" | ||
| 5452 | d="m 559.93261,662.46739 -49.05055,0" | ||
| 5453 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5454 | inkscape:connector-curvature="0" | ||
| 5455 | id="path27-0" | ||
| 5456 | 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" | ||
| 5457 | 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 | ||
| 5458 | id="g21-5" | ||
| 5459 | inkscape:label="0" | ||
| 5460 | transform="matrix(0.8,0,0,0.8,-113.89463,-231.54592)" | ||
| 5461 | style="stroke:#0000ff;stroke-opacity:1;stroke-width:0.35433071;stroke-miterlimit:4;stroke-dasharray:none"><path | ||
| 5462 | inkscape:connector-curvature="0" | ||
| 5463 | id="path23-4" | ||
| 5464 | 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" | ||
| 5465 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5466 | inkscape:connector-curvature="0" | ||
| 5467 | id="path25-4" | ||
| 5468 | 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" | ||
| 5469 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5470 | inkscape:connector-curvature="0" | ||
| 5471 | id="path27-4" | ||
| 5472 | 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" | ||
| 5473 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5474 | inkscape:connector-curvature="0" | ||
| 5475 | id="path29-1" | ||
| 5476 | 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" | ||
| 5477 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path | ||
| 5478 | inkscape:connector-curvature="0" | ||
| 5479 | id="path31-6" | ||
| 5480 | d="m 568.78387,625.5946 0.55008,0.0196" | ||
| 5481 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5482 | inkscape:connector-curvature="0" | ||
| 5483 | id="path33-2" | ||
| 5484 | d="m 569.33395,625.61422 0.54307,0.062" | ||
| 5485 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5486 | inkscape:connector-curvature="0" | ||
| 5487 | id="path35-0" | ||
| 5488 | d="m 569.87702,625.67624 0.54307,0.11107" | ||
| 5489 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5490 | inkscape:connector-curvature="0" | ||
| 5491 | id="path37-1" | ||
| 5492 | d="m 570.42009,625.78731 0.53256,0.1447" | ||
| 5493 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5494 | inkscape:connector-curvature="0" | ||
| 5495 | id="path39-6" | ||
| 5496 | d="m 570.95265,625.93201 0.51504,0.1941" | ||
| 5497 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5498 | inkscape:connector-curvature="0" | ||
| 5499 | id="path41-9" | ||
| 5500 | d="m 571.46769,626.12611 0.49753,0.2309" | ||
| 5501 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5502 | inkscape:connector-curvature="0" | ||
| 5503 | id="path43-3" | ||
| 5504 | d="m 571.96522,626.35701 0.4765,0.26593" | ||
| 5505 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5506 | inkscape:connector-curvature="0" | ||
| 5507 | id="path45-8" | ||
| 5508 | d="m 572.44172,626.62294 0.45898,0.30902" | ||
| 5509 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5510 | inkscape:connector-curvature="0" | ||
| 5511 | id="path47-2" | ||
| 5512 | d="m 572.9007,626.93196 0.43446,0.34231" | ||
| 5513 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5514 | inkscape:connector-curvature="0" | ||
| 5515 | id="path49-0" | ||
| 5516 | d="m 573.33516,627.27427 0.40642,0.37209" | ||
| 5517 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5518 | inkscape:connector-curvature="0" | ||
| 5519 | id="path51-9" | ||
| 5520 | d="m 573.74158,627.64636 0.37139,0.40538" | ||
| 5521 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5522 | inkscape:connector-curvature="0" | ||
| 5523 | id="path53-1" | ||
| 5524 | d="m 574.11297,628.05174 0.34337,0.43025" | ||
| 5525 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5526 | inkscape:connector-curvature="0" | ||
| 5527 | id="path55-7" | ||
| 5528 | d="m 574.45634,628.48199 0.30482,0.45828" | ||
| 5529 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5530 | inkscape:connector-curvature="0" | ||
| 5531 | id="path57-9" | ||
| 5532 | d="m 574.76116,628.94027 0.26978,0.47861" | ||
| 5533 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5534 | inkscape:connector-curvature="0" | ||
| 5535 | id="path59-0" | ||
| 5536 | d="m 575.03094,629.41888 0.22774,0.50173" | ||
| 5537 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5538 | inkscape:connector-curvature="0" | ||
| 5539 | id="path61-7" | ||
| 5540 | d="m 575.25868,629.92061 0.1927,0.51153" | ||
| 5541 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5542 | inkscape:connector-curvature="0" | ||
| 5543 | id="path63-1" | ||
| 5544 | d="m 575.45138,630.43214 0.14365,0.53151" | ||
| 5545 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5546 | inkscape:connector-curvature="0" | ||
| 5547 | id="path65-6" | ||
| 5548 | d="m 575.59503,630.96365 0.11212,0.54027" | ||
| 5549 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5550 | inkscape:connector-curvature="0" | ||
| 5551 | id="path67-0" | ||
| 5552 | d="m 575.70715,631.50392 0.0631,0.54623" | ||
| 5553 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5554 | inkscape:connector-curvature="0" | ||
| 5555 | id="path69-9" | ||
| 5556 | d="m 575.77022,632.05015 0.0175,0.55007" | ||
| 5557 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5558 | inkscape:connector-curvature="0" | ||
| 5559 | id="path71-2" | ||
| 5560 | d="m 575.78774,632.60022 0,288.00768" | ||
| 5561 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5562 | inkscape:connector-curvature="0" | ||
| 5563 | id="path73-7" | ||
| 5564 | d="m 575.78774,920.6079 -0.0175,0.54559" | ||
| 5565 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5566 | inkscape:connector-curvature="0" | ||
| 5567 | id="path75-4" | ||
| 5568 | d="m 575.77022,921.15349 -0.0631,0.55043" | ||
| 5569 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5570 | inkscape:connector-curvature="0" | ||
| 5571 | id="path77-6" | ||
| 5572 | d="m 575.70715,921.70392 -0.11212,0.53593" | ||
| 5573 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5574 | inkscape:connector-curvature="0" | ||
| 5575 | id="path79-8" | ||
| 5576 | d="m 575.59503,922.23985 -0.14365,0.53592" | ||
| 5577 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5578 | inkscape:connector-curvature="0" | ||
| 5579 | id="path81-0" | ||
| 5580 | d="m 575.45138,922.77577 -0.1927,0.51182" | ||
| 5581 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5582 | inkscape:connector-curvature="0" | ||
| 5583 | id="path83-9" | ||
| 5584 | d="m 575.25868,923.28759 -0.22774,0.49731" | ||
| 5585 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5586 | inkscape:connector-curvature="0" | ||
| 5587 | id="path85-7" | ||
| 5588 | d="m 575.03094,923.7849 -0.26978,0.48281" | ||
| 5589 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5590 | inkscape:connector-curvature="0" | ||
| 5591 | id="path87-0" | ||
| 5592 | d="m 574.76116,924.26771 -0.30482,0.45868" | ||
| 5593 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5594 | inkscape:connector-curvature="0" | ||
| 5595 | id="path89-8" | ||
| 5596 | d="m 574.45634,924.72639 -0.34337,0.42971" | ||
| 5597 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5598 | inkscape:connector-curvature="0" | ||
| 5599 | id="path91-1" | ||
| 5600 | d="m 574.11297,925.1561 -0.37139,0.40557" | ||
| 5601 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5602 | inkscape:connector-curvature="0" | ||
| 5603 | id="path93-3" | ||
| 5604 | d="m 573.74158,925.56167 -0.40642,0.37177" | ||
| 5605 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5606 | inkscape:connector-curvature="0" | ||
| 5607 | id="path95-0" | ||
| 5608 | d="m 573.33516,925.93344 -0.43446,0.3428" | ||
| 5609 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5610 | inkscape:connector-curvature="0" | ||
| 5611 | id="path97-2" | ||
| 5612 | d="m 572.9007,926.27624 -0.45898,0.30418" | ||
| 5613 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5614 | inkscape:connector-curvature="0" | ||
| 5615 | id="path99-9" | ||
| 5616 | d="m 572.44172,926.58042 -0.4765,0.27038" | ||
| 5617 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5618 | inkscape:connector-curvature="0" | ||
| 5619 | id="path101-0" | ||
| 5620 | d="m 571.96522,926.8508 -0.49753,0.22693" | ||
| 5621 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5622 | inkscape:connector-curvature="0" | ||
| 5623 | id="path103-6" | ||
| 5624 | d="m 571.46769,927.07773 -0.51504,0.19312" | ||
| 5625 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5626 | inkscape:connector-curvature="0" | ||
| 5627 | id="path105-0" | ||
| 5628 | d="m 570.95265,927.27085 -0.53256,0.14968" | ||
| 5629 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5630 | inkscape:connector-curvature="0" | ||
| 5631 | id="path107-6" | ||
| 5632 | d="m 570.42009,927.42053 -0.54307,0.10622" | ||
| 5633 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5634 | inkscape:connector-curvature="0" | ||
| 5635 | id="path109-4" | ||
| 5636 | d="m 569.87702,927.52675 -0.54307,0.0628" | ||
| 5637 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5638 | inkscape:connector-curvature="0" | ||
| 5639 | id="path111-4" | ||
| 5640 | d="m 569.33395,927.58952 -0.54658,0.0241" | ||
| 5641 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5642 | inkscape:connector-curvature="0" | ||
| 5643 | id="path113-0" | ||
| 5644 | d="m 568.78737,927.61366 -393.47009,0" | ||
| 5645 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5646 | inkscape:connector-curvature="0" | ||
| 5647 | id="path115-3" | ||
| 5648 | d="m 175.31728,927.61366 -0.55043,-0.0241" | ||
| 5649 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5650 | inkscape:connector-curvature="0" | ||
| 5651 | id="path117-5" | ||
| 5652 | d="m 174.76685,927.58952 -0.54556,-0.0628" | ||
| 5653 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5654 | inkscape:connector-curvature="0" | ||
| 5655 | id="path119-9" | ||
| 5656 | d="m 174.22129,927.52675 -0.54076,-0.10622" | ||
| 5657 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5658 | inkscape:connector-curvature="0" | ||
| 5659 | id="path121-7" | ||
| 5660 | d="m 173.68053,927.42053 -0.53112,-0.14968" | ||
| 5661 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5662 | inkscape:connector-curvature="0" | ||
| 5663 | id="path123-5" | ||
| 5664 | d="m 173.14941,927.27085 -0.51179,-0.19312" | ||
| 5665 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5666 | inkscape:connector-curvature="0" | ||
| 5667 | id="path125-6" | ||
| 5668 | d="m 172.63762,927.07773 -0.50214,-0.22693" | ||
| 5669 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5670 | inkscape:connector-curvature="0" | ||
| 5671 | id="path127-2" | ||
| 5672 | d="m 172.13548,926.8508 -0.47798,-0.27038" | ||
| 5673 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5674 | inkscape:connector-curvature="0" | ||
| 5675 | id="path129-0" | ||
| 5676 | d="m 171.6575,926.58042 -0.45869,-0.30418" | ||
| 5677 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5678 | inkscape:connector-curvature="0" | ||
| 5679 | id="path131-4" | ||
| 5680 | d="m 171.19881,926.27624 -0.42971,-0.3428" | ||
| 5681 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5682 | inkscape:connector-curvature="0" | ||
| 5683 | id="path133-8" | ||
| 5684 | d="m 170.7691,925.93344 -0.40557,-0.37177" | ||
| 5685 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5686 | inkscape:connector-curvature="0" | ||
| 5687 | id="path135-3" | ||
| 5688 | d="m 170.36353,925.56167 -0.37177,-0.40557" | ||
| 5689 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5690 | inkscape:connector-curvature="0" | ||
| 5691 | id="path137-2" | ||
| 5692 | d="m 169.99176,925.1561 -0.3428,-0.42971" | ||
| 5693 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5694 | inkscape:connector-curvature="0" | ||
| 5695 | id="path139-1" | ||
| 5696 | d="m 169.64896,924.72639 -0.30901,-0.45868" | ||
| 5697 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5698 | inkscape:connector-curvature="0" | ||
| 5699 | id="path141-6" | ||
| 5700 | d="M 169.33995,924.26771 169.0744,923.7849" | ||
| 5701 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5702 | inkscape:connector-curvature="0" | ||
| 5703 | id="path143-7" | ||
| 5704 | d="m 169.0744,923.7849 -0.23175,-0.49731" | ||
| 5705 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5706 | inkscape:connector-curvature="0" | ||
| 5707 | id="path145-9" | ||
| 5708 | d="m 168.84265,923.28759 -0.19314,-0.51182" | ||
| 5709 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5710 | inkscape:connector-curvature="0" | ||
| 5711 | id="path147-5" | ||
| 5712 | d="m 168.64951,922.77577 -0.14484,-0.53592" | ||
| 5713 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5714 | inkscape:connector-curvature="0" | ||
| 5715 | id="path149-8" | ||
| 5716 | d="m 168.50467,922.23985 -0.11105,-0.53593" | ||
| 5717 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5718 | inkscape:connector-curvature="0" | ||
| 5719 | id="path151-7" | ||
| 5720 | d="m 168.39362,921.70392 -0.0628,-0.55043" | ||
| 5721 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5722 | inkscape:connector-curvature="0" | ||
| 5723 | id="path153-0" | ||
| 5724 | d="m 168.33085,921.15349 -0.0241,-0.54559" | ||
| 5725 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5726 | inkscape:connector-curvature="0" | ||
| 5727 | id="path155-2" | ||
| 5728 | d="m 168.30671,920.6079 0.005,-288.00768" | ||
| 5729 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5730 | inkscape:connector-curvature="0" | ||
| 5731 | id="path157-8" | ||
| 5732 | d="m 168.31154,632.60022 0.0193,-0.55007" | ||
| 5733 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5734 | inkscape:connector-curvature="0" | ||
| 5735 | id="path159-7" | ||
| 5736 | d="m 168.33085,632.05015 0.0628,-0.54623" | ||
| 5737 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5738 | inkscape:connector-curvature="0" | ||
| 5739 | id="path161-9" | ||
| 5740 | d="m 168.39362,631.50392 0.11105,-0.54027" | ||
| 5741 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5742 | inkscape:connector-curvature="0" | ||
| 5743 | id="path163-8" | ||
| 5744 | d="m 168.50467,630.96365 0.14484,-0.53151" | ||
| 5745 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5746 | inkscape:connector-curvature="0" | ||
| 5747 | id="path165-3" | ||
| 5748 | d="m 168.64951,630.43214 0.19314,-0.51153" | ||
| 5749 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5750 | inkscape:connector-curvature="0" | ||
| 5751 | id="path167-0" | ||
| 5752 | d="m 168.84265,629.92061 0.23175,-0.50173" | ||
| 5753 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5754 | inkscape:connector-curvature="0" | ||
| 5755 | id="path169-2" | ||
| 5756 | d="m 169.0744,629.41888 0.26555,-0.47861" | ||
| 5757 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5758 | inkscape:connector-curvature="0" | ||
| 5759 | id="path171-4" | ||
| 5760 | d="m 169.33995,628.94027 0.30901,-0.45828" | ||
| 5761 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5762 | inkscape:connector-curvature="0" | ||
| 5763 | id="path173-2" | ||
| 5764 | d="m 169.64896,628.48199 0.3428,-0.43025" | ||
| 5765 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5766 | inkscape:connector-curvature="0" | ||
| 5767 | id="path175-2" | ||
| 5768 | d="m 169.99176,628.05174 0.37177,-0.40538" | ||
| 5769 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5770 | inkscape:connector-curvature="0" | ||
| 5771 | id="path177-8" | ||
| 5772 | d="m 170.36353,627.64636 0.40557,-0.37209" | ||
| 5773 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5774 | inkscape:connector-curvature="0" | ||
| 5775 | id="path179-1" | ||
| 5776 | d="m 170.7691,627.27427 0.42971,-0.34231" | ||
| 5777 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5778 | inkscape:connector-curvature="0" | ||
| 5779 | id="path181-5" | ||
| 5780 | d="m 171.19881,626.93196 0.45869,-0.30902" | ||
| 5781 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5782 | inkscape:connector-curvature="0" | ||
| 5783 | id="path183-8" | ||
| 5784 | d="m 171.6575,626.62294 0.47798,-0.26593" | ||
| 5785 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5786 | inkscape:connector-curvature="0" | ||
| 5787 | id="path185-5" | ||
| 5788 | d="m 172.13548,626.35701 0.50214,-0.2309" | ||
| 5789 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5790 | inkscape:connector-curvature="0" | ||
| 5791 | id="path187-6" | ||
| 5792 | d="m 172.63762,626.12611 0.51179,-0.1941" | ||
| 5793 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5794 | inkscape:connector-curvature="0" | ||
| 5795 | id="path189-8" | ||
| 5796 | d="m 173.14941,625.93201 0.53112,-0.1447" | ||
| 5797 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5798 | inkscape:connector-curvature="0" | ||
| 5799 | id="path191-8" | ||
| 5800 | d="m 173.68053,625.78731 0.54076,-0.11107" | ||
| 5801 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5802 | inkscape:connector-curvature="0" | ||
| 5803 | id="path193-7" | ||
| 5804 | d="m 174.22129,625.67624 0.54556,-0.062" | ||
| 5805 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5806 | inkscape:connector-curvature="0" | ||
| 5807 | id="path195-9" | ||
| 5808 | d="m 174.76685,625.61422 0.55043,-0.0245" | ||
| 5809 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5810 | inkscape:connector-curvature="0" | ||
| 5811 | id="path197-7" | ||
| 5812 | d="m 175.31728,625.5897 393.46659,0.005" | ||
| 5813 | style="fill:none;stroke:#0000ff;stroke-width:0.03543307;stroke-linecap:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /><path | ||
| 5814 | inkscape:connector-curvature="0" | ||
| 5815 | id="path27-4-7" | ||
| 5816 | 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" | ||
| 5817 | 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 57b2ef62e..4e2a6f00f 100644 --- a/keyboards/maxipad/Makefile +++ b/keyboards/maxipad/Makefile | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | ifndef MAKEFILE_INCLUDED | 1 | ifndef MAKEFILE_INCLUDED |
| 2 | include ../../Makefile | 2 | include ../../Makefile |
| 3 | endif | 3 | endif \ No newline at end of file |
diff --git a/keyboards/maxipad/config.h b/keyboards/maxipad/config.h index fc5ab7761..d7a5ef564 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/>. | |||
| 24 | #define VENDOR_ID 0xFEED | 24 | #define VENDOR_ID 0xFEED |
| 25 | #define PRODUCT_ID 0x6060 | 25 | #define PRODUCT_ID 0x6060 |
| 26 | #define DEVICE_VER 0x0001 | 26 | #define DEVICE_VER 0x0001 |
| 27 | #define MANUFACTURER Wootpatoot | 27 | #define MANUFACTURER wootpatoot |
| 28 | #define PRODUCT maxipad | 28 | #define PRODUCT maxipad |
| 29 | #define DESCRIPTION A custom keyboard | 29 | #define DESCRIPTION A custom keyboard |
| 30 | 30 | ||
| 31 | |||
| 32 | /* key matrix size */ | 31 | /* key matrix size */ |
| 33 | #define MATRIX_ROWS 5 | 32 | #define MATRIX_ROWS 5 |
| 34 | #define MATRIX_COLS 6 | 33 | #define MATRIX_COLS 6 |
| @@ -55,99 +54,26 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 55 | 54 | ||
| 56 | /* COL2ROW or ROW2COL */ | 55 | /* COL2ROW or ROW2COL */ |
| 57 | #define DIODE_DIRECTION COL2ROW | 56 | #define DIODE_DIRECTION COL2ROW |
| 58 | |||
| 59 | // #define BACKLIGHT_PIN B7 | ||
| 60 | // #define BACKLIGHT_BREATHING | ||
| 61 | // #define BACKLIGHT_LEVELS 3 | ||
| 62 | |||
| 63 | |||
| 64 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 65 | #define DEBOUNCING_DELAY 5 | ||
| 66 | 57 | ||
| 67 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | 58 | /* define if matrix has ghost */ |
| 68 | //#define MATRIX_HAS_GHOST | 59 | //#define MATRIX_HAS_GHOST |
| 69 | 60 | ||
| 70 | /* number of backlight levels */ | 61 | /* number of backlight levels */ |
| 62 | #define BACKLIGHT_LEVELS 3 | ||
| 63 | |||
| 64 | /* Set 0 if debouncing isn't needed */ | ||
| 65 | #define DEBOUNCING_DELAY 5 | ||
| 71 | 66 | ||
| 72 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | 67 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ |
| 73 | #define LOCKING_SUPPORT_ENABLE | 68 | #define LOCKING_SUPPORT_ENABLE |
| 74 | /* Locking resynchronize hack */ | 69 | /* Locking resynchronize hack */ |
| 75 | #define LOCKING_RESYNC_ENABLE | 70 | #define LOCKING_RESYNC_ENABLE |
| 76 | 71 | ||
| 77 | /* | 72 | /* key combination for command */ |
| 78 | * Force NKRO | ||
| 79 | * | ||
| 80 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 81 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 82 | * makefile for this to work.) | ||
| 83 | * | ||
| 84 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 85 | * until the next keyboard reset. | ||
| 86 | * | ||
| 87 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 88 | * fully operational during normal computer usage. | ||
| 89 | * | ||
| 90 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 91 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 92 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 93 | * power-up. | ||
| 94 | * | ||
| 95 | */ | ||
| 96 | //#define FORCE_NKRO | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Magic Key Options | ||
| 100 | * | ||
| 101 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 102 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 103 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 104 | * | ||
| 105 | * The options below allow the magic key functionality to be changed. This is | ||
| 106 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 107 | * | ||
| 108 | */ | ||
| 109 | |||
| 110 | /* key combination for magic key command */ | ||
| 111 | #define IS_COMMAND() ( \ | 73 | #define IS_COMMAND() ( \ |
| 112 | keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ | 74 | keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ |
| 113 | ) | 75 | ) |
| 114 | 76 | ||
| 115 | /* control how magic key switches layers */ | ||
| 116 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 117 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 118 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 119 | |||
| 120 | /* override magic key keymap */ | ||
| 121 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 122 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 123 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 124 | //#define MAGIC_KEY_HELP1 H | ||
| 125 | //#define MAGIC_KEY_HELP2 SLASH | ||
| 126 | //#define MAGIC_KEY_DEBUG D | ||
| 127 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 128 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 129 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 130 | //#define MAGIC_KEY_VERSION V | ||
| 131 | //#define MAGIC_KEY_STATUS S | ||
| 132 | //#define MAGIC_KEY_CONSOLE C | ||
| 133 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
| 134 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
| 135 | //#define MAGIC_KEY_LAYER0 0 | ||
| 136 | //#define MAGIC_KEY_LAYER1 1 | ||
| 137 | //#define MAGIC_KEY_LAYER2 2 | ||
| 138 | //#define MAGIC_KEY_LAYER3 3 | ||
| 139 | //#define MAGIC_KEY_LAYER4 4 | ||
| 140 | //#define MAGIC_KEY_LAYER5 5 | ||
| 141 | //#define MAGIC_KEY_LAYER6 6 | ||
| 142 | //#define MAGIC_KEY_LAYER7 7 | ||
| 143 | //#define MAGIC_KEY_LAYER8 8 | ||
| 144 | //#define MAGIC_KEY_LAYER9 9 | ||
| 145 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
| 146 | //#define MAGIC_KEY_LOCK CAPS | ||
| 147 | //#define MAGIC_KEY_EEPROM E | ||
| 148 | //#define MAGIC_KEY_NKRO N | ||
| 149 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 150 | |||
| 151 | /* | 77 | /* |
| 152 | * Feature disable options | 78 | * Feature disable options |
| 153 | * These options are also useful to firmware size reduction. | 79 | * 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 43ace3241..227cef7d8 100644 --- a/keyboards/maxipad/keymaps/default/keymap.c +++ b/keyboards/maxipad/keymaps/default/keymap.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #include "maxipad.h" | 1 | #include "maxipad.h" |
| 2 | 2 | ||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 4 | [0] = KEYMAP( /* Base */ | 4 | [0] = KEYMAP( /* Base */ |
| 5 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, \ | 5 | 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] = { | |||
| 13 | KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, \ | 13 | KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, \ |
| 14 | KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_TRNS, KC_TRNS, \ | 14 | KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_TRNS, KC_TRNS, \ |
| 15 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, \ | 15 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, \ |
| 16 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS \ | 16 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_SPC \ |
| 17 | ), | 17 | ), |
| 18 | }; | 18 | }; |
| 19 | 19 | ||
| 20 | const uint16_t PROGMEM fn_actions[] = { | 20 | const uint16_t PROGMEM fn_actions[] = { |
| 21 | |||
| 22 | }; | 21 | }; |
| 23 | 22 | ||
| 24 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | 23 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // MACRODOWN only works in this function |
| 25 | { | 24 | { |
| 26 | // MACRODOWN only works in this function | ||
| 27 | switch(id) { | ||
| 28 | case 0: | ||
| 29 | if (record->event.pressed) { | ||
| 30 | register_code(KC_RSFT); | ||
| 31 | } else { | ||
| 32 | unregister_code(KC_RSFT); | ||
| 33 | } | ||
| 34 | break; | ||
| 35 | } | ||
| 36 | return MACRO_NONE; | 25 | return MACRO_NONE; |
| 37 | }; | 26 | }; \ No newline at end of file |
| 38 | |||
| 39 | |||
| 40 | void matrix_init_user(void) { | ||
| 41 | |||
| 42 | } | ||
| 43 | |||
| 44 | void matrix_scan_user(void) { | ||
| 45 | |||
| 46 | } | ||
| 47 | |||
| 48 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 49 | return true; | ||
| 50 | } | ||
| 51 | |||
| 52 | void led_set_user(uint8_t usb_led) { | ||
| 53 | |||
| 54 | } \ 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 a6c0d4a3f..000000000 --- a/keyboards/maxipad/keymaps/default/readme.md +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | # The default keymap for maxipad \ No newline at end of file | ||
diff --git a/keyboards/maxipad/maxipad.c b/keyboards/maxipad/maxipad.c index 879ae86a7..a193b112b 100644 --- a/keyboards/maxipad/maxipad.c +++ b/keyboards/maxipad/maxipad.c | |||
| @@ -1,28 +1 @@ | |||
| 1 | #include "maxipad.h" | #include "maxipad.h" \ No newline at end of file | |
| 2 | |||
| 3 | void matrix_init_kb(void) { | ||
| 4 | // put your keyboard start-up code here | ||
| 5 | // runs once when the firmware starts up | ||
| 6 | |||
| 7 | matrix_init_user(); | ||
| 8 | } | ||
| 9 | |||
| 10 | void matrix_scan_kb(void) { | ||
| 11 | // put your looping keyboard code here | ||
| 12 | // runs every cycle (a lot) | ||
| 13 | |||
| 14 | matrix_scan_user(); | ||
| 15 | } | ||
| 16 | |||
| 17 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 18 | // put your per-action keyboard code here | ||
| 19 | // runs for every action, just before processing by the firmware | ||
| 20 | |||
| 21 | return process_record_user(keycode, record); | ||
| 22 | } | ||
| 23 | |||
| 24 | void led_set_kb(uint8_t usb_led) { | ||
| 25 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 26 | |||
| 27 | led_set_user(usb_led); | ||
| 28 | } | ||
diff --git a/keyboards/maxipad/maxipad.h b/keyboards/maxipad/maxipad.h index eee1309dd..4d8c6428d 100644 --- a/keyboards/maxipad/maxipad.h +++ b/keyboards/maxipad/maxipad.h | |||
| @@ -8,18 +8,18 @@ | |||
| 8 | // The first section contains all of the arguements | 8 | // The first section contains all of the arguements |
| 9 | // The second converts the arguments into a two-dimensional array | 9 | // The second converts the arguments into a two-dimensional array |
| 10 | #define KEYMAP( \ | 10 | #define KEYMAP( \ |
| 11 | k00, k01, k02, k03, k04, k05, \ | 11 | k00, k01, k02, k03, k04, k05, \ |
| 12 | k10, k11, k12, k13, k14, k15, \ | 12 | k10, k11, k12, k13, k14, k15, \ |
| 13 | k20, k21, k22, k23, k24, k25, \ | 13 | k20, k21, k22, k23, k24, k25, \ |
| 14 | k30, k31, k32, k33, k34, k35, \ | 14 | k30, k31, k32, k33, k34, k35, \ |
| 15 | k40, k41, k42, k43, k44, k45 \ | 15 | k40, k41, k42, k43, k44, k45 \ |
| 16 | ) \ | 16 | ) \ |
| 17 | { \ | 17 | { \ |
| 18 | { k00, k01, k02, k03, k04, k05 }, \ | 18 | { k00, k01, k02, k03, k04, k05 }, \ |
| 19 | { k10, k11, k12, k13, k14, k15 }, \ | 19 | { k10, k11, k12, k13, k14, k15 }, \ |
| 20 | { k20, k21, k22, k23, k24, k25 }, \ | 20 | { k20, k21, k22, k23, k24, k25 }, \ |
| 21 | { k30, k31, k32, k33, k34, k35 }, \ | 21 | { k30, k31, k32, k33, k34, k35 }, \ |
| 22 | { k40, k41, k42, k43, k44, k45} \ | 22 | { k40, k41, k42, k43, k44, k45 } \ |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | #endif | 25 | #endif |
diff --git a/keyboards/maxipad/readme.md b/keyboards/maxipad/readme.md index de2265d11..861ea2b07 100644 --- a/keyboards/maxipad/readme.md +++ b/keyboards/maxipad/readme.md | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | ## Quantum MK Firmware | 1 | Maxipad keyboard firmware |
| 2 | |||
| 3 | For the full Quantum feature list, see [the parent readme](/). | ||
| 4 | 2 | ||
| 3 | ## Quantum MK Firmware | ||
| 5 | 4 | ||
| 6 | ## Building | 5 | For the full Quantum feature list, see [the parent readme.md](/readme.md). |
| 7 | 6 | ||
| 7 | If you are using a pro micro then make sure to enable USE_PRO_MICRO in the makefile | ||
| 8 | Change the config.h pinout to match your mcu!! | 8 | Change the config.h pinout to match your mcu!! |
| 9 | 9 | ||
| 10 | 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. | 10 | 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`. | |||
| 17 | 17 | ||
| 18 | 18 | ||
| 19 | ### Other Keymaps | 19 | ### Other Keymaps |
| 20 | 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. | ||
| 20 | 21 | ||
| 21 | 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. | ||
| 22 | 22 | ||
| 23 | To build the firmware binary hex file with a keymap just do `make` with a keymap like this: | 23 | To build the firmware binary hex file with a keymap just do `make` with a keymap like this: |
| 24 | 24 | ||
| @@ -27,4 +27,3 @@ $ make [default|jack|<name>] | |||
| 27 | ``` | 27 | ``` |
| 28 | 28 | ||
| 29 | Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder. | 29 | Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder. |
| 30 | |||
diff --git a/keyboards/maxipad/rules.mk b/keyboards/maxipad/rules.mk index 56b2042ef..a5c739152 100644 --- a/keyboards/maxipad/rules.mk +++ b/keyboards/maxipad/rules.mk | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | |||
| 2 | |||
| 1 | # MCU name | 3 | # MCU name |
| 2 | #MCU = at90usb1287 | 4 | #MCU = at90usb1287 |
| 3 | MCU = atmega32u4 | 5 | MCU = atmega32u4 |
| @@ -49,14 +51,21 @@ OPT_DEFS += -DBOOTLOADER_SIZE=512 | |||
| 49 | 51 | ||
| 50 | 52 | ||
| 51 | # Build Options | 53 | # Build Options |
| 52 | # change yes to no to disable | 54 | # comment out to disable the options. |
| 53 | # | 55 | # |
| 54 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | 56 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000) |
| 55 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | 57 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) |
| 56 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | 58 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) |
| 57 | CONSOLE_ENABLE ?= yes # Console for debug(+400) | 59 | CONSOLE_ENABLE ?= yes # Console for debug(+400) |
| 58 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 60 | COMMAND_ENABLE ?= yes # Commands for debug and configuration |
| 59 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 61 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 62 | # SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend | ||
| 63 | # NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 64 | # BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | ||
| 65 | # MIDI_ENABLE ?= YES # MIDI controls | ||
| 66 | # UNICODE_ENABLE ?= YES # Unicode | ||
| 67 | # BLUETOOTH_ENABLE ?= yes # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 68 | USE_PRO_MICRO ?= yes | ||
| 60 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 69 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend |
| 61 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 70 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 62 | NKRO_ENABLE ?= no # USB Nkey Rollover | 71 | NKRO_ENABLE ?= no # USB Nkey Rollover |
| @@ -64,4 +73,4 @@ BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by | |||
| 64 | MIDI_ENABLE ?= no # MIDI controls | 73 | MIDI_ENABLE ?= no # MIDI controls |
| 65 | UNICODE_ENABLE ?= no # Unicode | 74 | UNICODE_ENABLE ?= no # Unicode |
| 66 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 75 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 67 | AUDIO_ENABLE ?= no # Audio output on port C6 \ No newline at end of file | 76 | AUDIO_ENABLE ?= no # Audio output on port C6 |
diff --git a/keyboards/planck/keymaps/default/Makefile b/keyboards/planck/keymaps/default/Makefile index 267a087ea..17487ebbf 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) | |||
| 10 | CONSOLE_ENABLE = no # Console for debug(+400) | 10 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 11 | COMMAND_ENABLE = no # Commands for debug and configuration | 11 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 12 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 12 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 13 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 14 | MIDI_ENABLE = yes # MIDI controls | 14 | MIDI_ENABLE = yes # MIDI controls |
| 15 | AUDIO_ENABLE = yes # Audio output on port C6 | 15 | AUDIO_ENABLE = yes # Audio output on port C6 |
| 16 | UNICODE_ENABLE = no # Unicode | 16 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/planck/keymaps/priyadi/Makefile b/keyboards/planck/keymaps/priyadi/Makefile index f113f496c..d9d4f3d1d 100644 --- a/keyboards/planck/keymaps/priyadi/Makefile +++ b/keyboards/planck/keymaps/priyadi/Makefile | |||
| @@ -1,8 +1,3 @@ | |||
| 1 | # Please remove if no longer applicable | ||
| 2 | $(warning THIS FILE MAY BE TOO LARGE FOR YOUR KEYBOARD) | ||
| 3 | $(warning Please disable some options in the Makefile to resolve) | ||
| 4 | |||
| 5 | |||
| 6 | # Build Options | 1 | # Build Options |
| 7 | # change to "no" to disable the options, or define them in the Makefile in | 2 | # change to "no" to disable the options, or define them in the Makefile in |
| 8 | # the appropriate keymap folder that will get included automatically | 3 | # the appropriate keymap folder that will get included automatically |
| @@ -11,7 +6,7 @@ BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | |||
| 11 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 6 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 7 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 13 | CONSOLE_ENABLE = no # Console for debug(+400) | 8 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 14 | COMMAND_ENABLE = yes # Commands for debug and configuration | 9 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 15 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 10 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 11 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 17 | MIDI_ENABLE = no # MIDI controls | 12 | MIDI_ENABLE = no # MIDI controls |
| @@ -20,6 +15,7 @@ UNICODE_ENABLE = no # Unicode | |||
| 20 | UNICODEMAP_ENABLE = yes # Unicode map | 15 | UNICODEMAP_ENABLE = yes # Unicode map |
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 22 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 17 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
| 18 | API_SYSEX_ENABLE = no | ||
| 23 | 19 | ||
| 24 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 25 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | 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 6e7f4e735..f0dafebf3 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] = { | |||
| 179 | */ | 179 | */ |
| 180 | [_QWERTY] = { | 180 | [_QWERTY] = { |
| 181 | {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC}, | 181 | {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC}, |
| 182 | {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT }, | 182 | {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_ENT }, |
| 183 | {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, | 183 | {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, |
| 184 | {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} | 184 | {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} |
| 185 | }, | 185 | }, |
| @@ -196,10 +196,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 196 | * `-----------------------------------------------------------------------------------' | 196 | * `-----------------------------------------------------------------------------------' |
| 197 | */ | 197 | */ |
| 198 | [_COLEMAK] = { | 198 | [_COLEMAK] = { |
| 199 | {KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC}, | 199 | {_______, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_QUOT, _______}, |
| 200 | {KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_ENT }, | 200 | {_______, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, _______}, |
| 201 | {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, | 201 | {_______, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______}, |
| 202 | {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} | 202 | {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} |
| 203 | }, | 203 | }, |
| 204 | 204 | ||
| 205 | /* Workman | 205 | /* Workman |
| @@ -214,10 +214,10 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 214 | * `-----------------------------------------------------------------------------------' | 214 | * `-----------------------------------------------------------------------------------' |
| 215 | */ | 215 | */ |
| 216 | [_WORKMAN] = { | 216 | [_WORKMAN] = { |
| 217 | {KC_TAB, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_SCLN, KC_BSPC}, | 217 | {_______, KC_Q, KC_D, KC_R, KC_W, KC_B, KC_J, KC_F, KC_U, KC_P, KC_QUOT, _______}, |
| 218 | {KC_ESC, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, KC_ENT }, | 218 | {_______, KC_A, KC_S, KC_H, KC_T, KC_G, KC_Y, KC_N, KC_E, KC_O, KC_I, _______}, |
| 219 | {KC_LSFT, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT}, | 219 | {_______, KC_Z, KC_X, KC_M, KC_C, KC_V, KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH, _______}, |
| 220 | {KC_LCTL, KC_LGUI, KC_LALT, PUNC, NUM, KC_SPC, KC_SPC, FUNC, EMOJI, KC_RALT, KC_RGUI, KC_RCTL} | 220 | {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} |
| 221 | }, | 221 | }, |
| 222 | 222 | ||
| 223 | /* Punc | 223 | /* Punc |
| @@ -322,6 +322,7 @@ float tone_linux[][2] = SONG(CAPS_LOCK_ON_SOUND); | |||
| 322 | float tone_windows[][2] = SONG(SCROLL_LOCK_ON_SOUND); | 322 | float tone_windows[][2] = SONG(SCROLL_LOCK_ON_SOUND); |
| 323 | float tone_osx[][2] = SONG(NUM_LOCK_ON_SOUND); | 323 | float tone_osx[][2] = SONG(NUM_LOCK_ON_SOUND); |
| 324 | float tone_click[][2] = SONG(MUSICAL_NOTE(_F3, 2)); | 324 | float tone_click[][2] = SONG(MUSICAL_NOTE(_F3, 2)); |
| 325 | float tone_release[][2] = SONG(MUSICAL_NOTE(_A3, 2)); | ||
| 325 | #endif | 326 | #endif |
| 326 | 327 | ||
| 327 | void persistant_default_layer_set(uint16_t default_layer) { | 328 | void persistant_default_layer_set(uint16_t default_layer) { |
| @@ -331,9 +332,49 @@ void persistant_default_layer_set(uint16_t default_layer) { | |||
| 331 | 332 | ||
| 332 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 333 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
| 333 | // faux clicky | 334 | // faux clicky |
| 334 | if (record->event.pressed) PLAY_NOTE_ARRAY(tone_click, false, 0); | 335 | // if (record->event.pressed) PLAY_NOTE_ARRAY(tone_click, false, 0); |
| 336 | #ifdef AUDIO_ENABLE | ||
| 337 | if (record->event.pressed) { | ||
| 338 | PLAY_NOTE_ARRAY(tone_click, false, 0); | ||
| 339 | } else { | ||
| 340 | PLAY_NOTE_ARRAY(tone_release, false, 0); | ||
| 341 | } | ||
| 342 | #endif | ||
| 335 | 343 | ||
| 336 | switch (keycode) { | 344 | switch (keycode) { |
| 345 | // QWERTZ style comma and dot: semicolon and colon when shifted | ||
| 346 | case KC_COMM: | ||
| 347 | if (record->event.pressed) { | ||
| 348 | bool lshifted = keyboard_report->mods & MOD_BIT(KC_LSFT); | ||
| 349 | bool rshifted = keyboard_report->mods & MOD_BIT(KC_RSFT); | ||
| 350 | if (lshifted || rshifted) { | ||
| 351 | if (lshifted) unregister_code(KC_LSFT); | ||
| 352 | if (rshifted) unregister_code(KC_RSFT); | ||
| 353 | register_code(KC_SCLN); | ||
| 354 | unregister_code(KC_SCLN); | ||
| 355 | if (lshifted) register_code(KC_LSFT); | ||
| 356 | if (rshifted) register_code(KC_RSFT); | ||
| 357 | } else { | ||
| 358 | register_code(KC_COMM); | ||
| 359 | unregister_code(KC_COMM); | ||
| 360 | } | ||
| 361 | } | ||
| 362 | return false; | ||
| 363 | break; | ||
| 364 | case KC_DOT: | ||
| 365 | if (record->event.pressed) { | ||
| 366 | if ((keyboard_report->mods & MOD_BIT(KC_LSFT)) || (keyboard_report->mods & MOD_BIT(KC_RSFT))) { | ||
| 367 | register_code(KC_SCLN); | ||
| 368 | unregister_code(KC_SCLN); | ||
| 369 | } else { | ||
| 370 | register_code(KC_DOT); | ||
| 371 | unregister_code(KC_DOT); | ||
| 372 | } | ||
| 373 | } | ||
| 374 | return false; | ||
| 375 | break; | ||
| 376 | |||
| 377 | // layout switcher | ||
| 337 | case QWERTY: | 378 | case QWERTY: |
| 338 | if (record->event.pressed) { | 379 | if (record->event.pressed) { |
| 339 | #ifdef AUDIO_ENABLE | 380 | #ifdef AUDIO_ENABLE |
| @@ -361,6 +402,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 361 | } | 402 | } |
| 362 | return false; | 403 | return false; |
| 363 | break; | 404 | break; |
| 405 | |||
| 406 | // layer switchers | ||
| 364 | case PUNC: | 407 | case PUNC: |
| 365 | if (record->event.pressed) { | 408 | if (record->event.pressed) { |
| 366 | layer_on(_PUNC); | 409 | layer_on(_PUNC); |
| @@ -397,6 +440,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 397 | } | 440 | } |
| 398 | return false; | 441 | return false; |
| 399 | break; | 442 | break; |
| 443 | |||
| 444 | // OS switchers | ||
| 400 | case LINUX: | 445 | case LINUX: |
| 401 | set_unicode_input_mode(UC_LNX); | 446 | set_unicode_input_mode(UC_LNX); |
| 402 | #ifdef AUDIO_ENABLE | 447 | #ifdef AUDIO_ENABLE |
diff --git a/keyboards/planck/keymaps/sgoodwin/Makefile b/keyboards/planck/keymaps/sgoodwin/Makefile index b2ca41944..9081c6d3e 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 | |||
| 19 | UNICODE_ENABLE = no # Unicode | 19 | UNICODE_ENABLE = no # Unicode |
| 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 21 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 21 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
| 22 | API_SYSEX_ENABLE = no # Disable extra stuff for ergodoxen | ||
| 22 | 23 | ||
| 23 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 24 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 24 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 25 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
diff --git a/keyboards/planck/planck.c b/keyboards/planck/planck.c index 645b450d1..3980b02f5 100644 --- a/keyboards/planck/planck.c +++ b/keyboards/planck/planck.c | |||
| @@ -16,4 +16,4 @@ void matrix_init_kb(void) { | |||
| 16 | PORTE |= (1<<6); | 16 | PORTE |= (1<<6); |
| 17 | 17 | ||
| 18 | matrix_init_user(); | 18 | matrix_init_user(); |
| 19 | } \ No newline at end of file | 19 | } |
diff --git a/keyboards/planck/rules.mk b/keyboards/planck/rules.mk index ccee97271..fb24e8235 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 | |||
| 65 | API_SYSEX_ENABLE = yes | 65 | API_SYSEX_ENABLE = yes |
| 66 | 66 | ||
| 67 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 67 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 68 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend \ No newline at end of file | 68 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend |
diff --git a/keyboards/preonic/rules.mk b/keyboards/preonic/rules.mk index c4ce2aacc..071bfdc7f 100644 --- a/keyboards/preonic/rules.mk +++ b/keyboards/preonic/rules.mk | |||
| @@ -56,11 +56,11 @@ BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | |||
| 56 | MOUSEKEY_ENABLE ?= no # Mouse keys(+4700) | 56 | MOUSEKEY_ENABLE ?= no # Mouse keys(+4700) |
| 57 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | 57 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) |
| 58 | CONSOLE_ENABLE ?= no # Console for debug(+400) | 58 | CONSOLE_ENABLE ?= no # Console for debug(+400) |
| 59 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 59 | COMMAND_ENABLE ?= no # Commands for debug and configuration |
| 60 | NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 60 | NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 61 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 61 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality |
| 62 | MIDI_ENABLE ?= no # MIDI controls | 62 | MIDI_ENABLE ?= yes # MIDI controls |
| 63 | AUDIO_ENABLE ?= no # Audio output on port C6 | 63 | AUDIO_ENABLE ?= yes # Audio output on port C6 |
| 64 | UNICODE_ENABLE ?= no # Unicode | 64 | UNICODE_ENABLE ?= no # Unicode |
| 65 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 65 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 66 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 66 | 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 6d4172a06..19f7b646e 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c | |||
| @@ -18,7 +18,7 @@ void voice_iterate() { | |||
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | void voice_deiterate() { | 20 | void voice_deiterate() { |
| 21 | voice = (voice - 1) % number_of_voices; | 21 | voice = (voice - 1 + number_of_voices) % number_of_voices; |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | float voice_envelope(float frequency) { | 24 | float voice_envelope(float frequency) { |
| @@ -31,6 +31,27 @@ float voice_envelope(float frequency) { | |||
| 31 | polyphony_rate = 0; | 31 | polyphony_rate = 0; |
| 32 | break; | 32 | break; |
| 33 | 33 | ||
| 34 | case something: | ||
| 35 | polyphony_rate = 0; | ||
| 36 | switch (compensated_index) { | ||
| 37 | case 0 ... 9: | ||
| 38 | note_timbre = TIMBRE_12; | ||
| 39 | break; | ||
| 40 | |||
| 41 | case 10 ... 19: | ||
| 42 | note_timbre = TIMBRE_25; | ||
| 43 | break; | ||
| 44 | |||
| 45 | case 20 ... 200: | ||
| 46 | note_timbre = .25 + .125 + pow(((float)compensated_index - 20) / (200 - 20), 2)*.125; | ||
| 47 | break; | ||
| 48 | |||
| 49 | default: | ||
| 50 | note_timbre = .25; | ||
| 51 | break; | ||
| 52 | } | ||
| 53 | break; | ||
| 54 | |||
| 34 | case butts_fader: | 55 | case butts_fader: |
| 35 | polyphony_rate = 0; | 56 | polyphony_rate = 0; |
| 36 | switch (compensated_index) { | 57 | switch (compensated_index) { |
diff --git a/quantum/audio/voices.h b/quantum/audio/voices.h index b2495b23b..b43def3d7 100644 --- a/quantum/audio/voices.h +++ b/quantum/audio/voices.h | |||
| @@ -11,6 +11,7 @@ float voice_envelope(float frequency); | |||
| 11 | 11 | ||
| 12 | typedef enum { | 12 | typedef enum { |
| 13 | default_voice, | 13 | default_voice, |
| 14 | something, | ||
| 14 | butts_fader, | 15 | butts_fader, |
| 15 | octave_crunch, | 16 | octave_crunch, |
| 16 | duty_osc, | 17 | duty_osc, |
diff --git a/quantum/process_keycode/process_music.c b/quantum/process_keycode/process_music.c index 2d52e47a7..bae43943e 100644 --- a/quantum/process_keycode/process_music.c +++ b/quantum/process_keycode/process_music.c | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | #include "process_music.h" | 1 | #include "process_music.h" |
| 2 | 2 | ||
| 3 | bool music_activated = false; | 3 | bool music_activated = false; |
| 4 | uint8_t starting_note = 0x0C; | 4 | uint8_t music_starting_note = 0x0C; |
| 5 | int offset = 7; | 5 | int music_offset = 7; |
| 6 | 6 | ||
| 7 | // music sequencer | 7 | // music sequencer |
| 8 | static bool music_sequence_recording = false; | 8 | static bool music_sequence_recording = false; |
| @@ -115,7 +115,7 @@ bool process_music(uint16_t keycode, keyrecord_t *record) { | |||
| 115 | return false; | 115 | return false; |
| 116 | } | 116 | } |
| 117 | 117 | ||
| 118 | 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)); | 118 | 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)); |
| 119 | if (record->event.pressed) { | 119 | if (record->event.pressed) { |
| 120 | play_note(freq, 0xF); | 120 | play_note(freq, 0xF); |
| 121 | if (music_sequence_recording) { | 121 | if (music_sequence_recording) { |
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | 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/). | 5 | 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/). |
| 6 | 6 | ||
| 7 | ## Official website | 7 | ## Official website (currently under construction with the move to the wiki) |
| 8 | 8 | ||
| 9 | 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. | 9 | 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. |
| 10 | 10 | ||
| @@ -31,1564 +31,9 @@ The OLKB product firmwares are maintained by [Jack Humbert](https://github.com/j | |||
| 31 | 31 | ||
| 32 | 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: | 32 | 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: |
| 33 | 33 | ||
| 34 | * [**The Wiki**](https://github.com/jackhumbert/qmk_firmware/wiki) - the entirity of the readme has been moved here | ||
| 34 | * 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. | 35 | * 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. |
| 35 | * The list of possible keycodes you can use in your keymap is actually spread out in a few different places: | 36 | * The list of possible keycodes you can use in your keymap is actually spread out in a few different places: |
| 36 | * [doc/keycode.txt](doc/keycode.txt) - an explanation of those same keycodes. | 37 | * [doc/keycode.txt](doc/keycode.txt) - an explanation of those same keycodes. |
| 37 | * [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. | 38 | * [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. |
| 38 | * The [TMK documentation](doc/TMK_README.md). QMK is based on TMK, and this explains how it works internally. | 39 | * The [TMK documentation](doc/TMK_README.md). QMK is based on TMK, and this explains how it works internally. |
| 39 | |||
| 40 | # Getting started | ||
| 41 | |||
| 42 | 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! | ||
| 43 | |||
| 44 | ## Build Environment Setup | ||
| 45 | |||
| 46 | ### Windows 10 | ||
| 47 | |||
| 48 | 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. | ||
| 49 | |||
| 50 | 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! | ||
| 51 | |||
| 52 | Here are the steps | ||
| 53 | |||
| 54 | 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/). | ||
| 55 | 2. If you have cloned the repository using git before August 20, 2016, clean up the line endings from wherever you currently access git: | ||
| 56 | 1. Make sure that you have no changes you haven't committed by running `git status`. ANY UNCOMMITTED CHANGES WILL BE PERMANENTLY LOST. | ||
| 57 | 2. Run `git rm --cached -r .` | ||
| 58 | 3. Run `git reset --hard` | ||
| 59 | 3. Open "Bash On Ubuntu On Windows" from the start menu | ||
| 60 | 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. | ||
| 61 | 5. Run `sudo util/install_dependencies.sh`. | ||
| 62 | 6. After a while the installation will finish, and you are good to go | ||
| 63 | |||
| 64 | **Note** From time to time, the dependencies might change, so just run `install_dependencies.sh` again if things are not working. | ||
| 65 | |||
| 66 | **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. | ||
| 67 | |||
| 68 | |||
| 69 | ### Windows (Vista and later) | ||
| 70 | 1. If you have ever installed WinAVR, uninstall it. | ||
| 71 | 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**. | ||
| 72 | 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). | ||
| 73 | 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. | ||
| 74 | 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. | ||
| 75 | 6. Open the `\util` folder. | ||
| 76 | 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. | ||
| 77 | 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! | ||
| 78 | |||
| 79 | 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. | ||
| 80 | |||
| 81 | ### Mac | ||
| 82 | If you're using [homebrew,](http://brew.sh/) you can use the following commands: | ||
| 83 | |||
| 84 | brew tap osx-cross/avr | ||
| 85 | brew install avr-libc | ||
| 86 | brew install dfu-programmer | ||
| 87 | |||
| 88 | 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. | ||
| 89 | |||
| 90 | You can also try these instructions: | ||
| 91 | |||
| 92 | 1. Install Xcode from the App Store. | ||
| 93 | 2. Install the Command Line Tools from `Xcode->Preferences->Downloads`. | ||
| 94 | 3. Install [DFU-Programmer][dfu-prog]. | ||
| 95 | |||
| 96 | If you are going to flash Infinity based keyboards you will also need dfu-util | ||
| 97 | |||
| 98 | brew install dfu-util | ||
| 99 | |||
| 100 | ### Linux | ||
| 101 | |||
| 102 | 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. | ||
| 103 | |||
| 104 | You can also install things manually, but this documentation might not be always up to date with all requirements. | ||
| 105 | |||
| 106 | 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. | ||
| 107 | |||
| 108 | ``` | ||
| 109 | build-essential | ||
| 110 | gcc | ||
| 111 | unzip | ||
| 112 | wget | ||
| 113 | zip | ||
| 114 | gcc-avr | ||
| 115 | binutils-avr | ||
| 116 | avr-libc | ||
| 117 | dfu-programmer | ||
| 118 | dfu-util | ||
| 119 | gcc-arm-none-eabi | ||
| 120 | binutils-arm-none-eabi | ||
| 121 | libnewlib-arm-none-eabi | ||
| 122 | git | ||
| 123 | ``` | ||
| 124 | |||
| 125 | Install the dependencies with your favorite package manager. | ||
| 126 | |||
| 127 | Debian/Ubuntu example: | ||
| 128 | |||
| 129 | sudo apt-get update | ||
| 130 | 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 | ||
| 131 | |||
| 132 | ### Docker | ||
| 133 | |||
| 134 | 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: | ||
| 135 | |||
| 136 | ```bash | ||
| 137 | # You'll run this every time you want to build a keymap | ||
| 138 | # modify the keymap and keyboard assigment to compile what you want | ||
| 139 | # defaults are ergodox/default | ||
| 140 | |||
| 141 | docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware | ||
| 142 | |||
| 143 | # 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 | ||
| 144 | docker run -e keymap=default -e keyboard=ergobop --rm -v D:/Users/Sacapuces/Documents/Repositories/qmk:/qmk:rw edasque/qmk_firmware | ||
| 145 | |||
| 146 | ``` | ||
| 147 | |||
| 148 | This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. | ||
| 149 | |||
| 150 | ### Vagrant | ||
| 151 | 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). | ||
| 152 | |||
| 153 | ## Verify Your Installation | ||
| 154 | 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. | ||
| 155 | 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. | ||
| 156 | 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`. | ||
| 157 | 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. | ||
| 158 | |||
| 159 | # Customizing your keymap | ||
| 160 | |||
| 161 | In every keymap folder, the following files are recommended: | ||
| 162 | |||
| 163 | * `config.h` - the options to configure your keymap | ||
| 164 | * `keymap.c` - all of your keymap code, required | ||
| 165 | * `Makefile` - the features of QMK that are enabled, required to run `make` in your keymap folder | ||
| 166 | * `readme.md` - a description of your keymap, how others might use it, and explanations of features | ||
| 167 | |||
| 168 | ## The `make` command | ||
| 169 | |||
| 170 | 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). | ||
| 171 | |||
| 172 | **NOTE:** To abort a make command press `Ctrl-c` | ||
| 173 | |||
| 174 | The following instruction refers to these folders. | ||
| 175 | |||
| 176 | * The `root` (`/`) folder is the qmk_firmware folder, in which are `doc`, `keyboard`, `quantum`, etc. | ||
| 177 | * The `keyboard` folder is any keyboard project's folder, like `/keyboards/planck`. | ||
| 178 | * The `keymap` folder is any keymap's folder, like `/keyboards/planck/keymaps/default`. | ||
| 179 | * The `subproject` folder is the subproject folder of a keyboard, like `/keyboards/ergodox/ez` | ||
| 180 | |||
| 181 | ### Simple instructions for building and uploading a keyboard | ||
| 182 | |||
| 183 | **Most keyboards have more specific instructions in the keyboard specific readme.md file, so please check that first** | ||
| 184 | |||
| 185 | If the `keymap` folder contains a file name `Makefile` | ||
| 186 | |||
| 187 | 1. Change the directory to the `keymap` folder | ||
| 188 | 2. Run `make <subproject>-<programmer>` | ||
| 189 | |||
| 190 | Otherwise, if there's no `Makefile` in the `keymap` folder | ||
| 191 | |||
| 192 | 1. Enter the `keyboard` folder | ||
| 193 | 2. Run `make <subproject>-<keymap>-<programmer>` | ||
| 194 | |||
| 195 | In the above commands, replace: | ||
| 196 | |||
| 197 | * `<keymap>` with the name of your keymap | ||
| 198 | * `<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`. | ||
| 199 | * 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. | ||
| 200 | * `<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. | ||
| 201 | * 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. | ||
| 202 | |||
| 203 | **NOTE:** Some operating systems will refuse to program unless you run the make command as root for example `sudo make dfu` | ||
| 204 | |||
| 205 | ### More detailed make instruction | ||
| 206 | |||
| 207 | 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). | ||
| 208 | |||
| 209 | `<keyboard>-<subproject>-<keymap>-<target>`, where: | ||
| 210 | |||
| 211 | * `<keyboard>` is the name of the keyboard, for example `planck` | ||
| 212 | * Use `allkb` to compile all keyboards | ||
| 213 | * `<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`. | ||
| 214 | * If the keyboard doesn't have any subprojects, it can be left out | ||
| 215 | * To compile the default subproject, you can leave it out, or specify `defaultsp` | ||
| 216 | * Use `allsp` to compile all subprojects | ||
| 217 | * `<keymap>` is the name of the keymap, for example `algernon` | ||
| 218 | * Use `allkm` to compile all keymaps | ||
| 219 | * `<target>` will be explained in more detail below. | ||
| 220 | |||
| 221 | **Note:** When you leave some parts of the command out, you should also remove the dash (`-`). | ||
| 222 | |||
| 223 | As mentioned above, there are some shortcuts, when you are in a: | ||
| 224 | |||
| 225 | * `keyboard` folder, the command will automatically fill the `<keyboard>` part. So you only need to type `<subproject>-<keymap>-<target>` | ||
| 226 | * `subproject` folder, it will fill in both `<keyboard>` and `<subproject>` | ||
| 227 | * `keymap` folder, then `<keyboard>` and `<keymap>` will be filled in. If you need to specify the `<subproject>` use the following syntax `<subproject>-<target>` | ||
| 228 | * Note in order to support this shortcut, the keymap needs its own Makefile (see the example [here](/doc/keymap_makefile_example.mk)) | ||
| 229 | * `keymap` folder of a `subproject`, then everything except the `<target>` will be filled in | ||
| 230 | |||
| 231 | The `<target>` means the following | ||
| 232 | * If no target is given, then it's the same as `all` below | ||
| 233 | * `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. | ||
| 234 | * `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`. | ||
| 235 | * `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. | ||
| 236 | |||
| 237 | 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. | ||
| 238 | |||
| 239 | You can also add extra options at the end of the make command line, after the target | ||
| 240 | |||
| 241 | * `make COLOR=false` - turns off color output | ||
| 242 | * `make SILENT=true` - turns off output besides errors/warnings | ||
| 243 | * `make VERBOSE=true` - outputs all of the gcc stuff (not interesting, unless you need to debug) | ||
| 244 | * `make EXTRAFLAGS=-E` - Preprocess the code without doing any compiling (useful if you are trying to debug #define commands) | ||
| 245 | |||
| 246 | 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. | ||
| 247 | |||
| 248 | Here are some examples commands | ||
| 249 | |||
| 250 | * `make allkb-allsp-allkm` builds everything (all keyboards, all subprojects, all keymaps). Running just `make` from the `root` will also run this. | ||
| 251 | * `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. | ||
| 252 | * `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` | ||
| 253 | * `make dfu COLOR=false` from within a keymap folder, builds and uploads the keymap, but without color output. | ||
| 254 | |||
| 255 | ## The `Makefile` | ||
| 256 | |||
| 257 | There are 5 different `make` and `Makefile` locations: | ||
| 258 | |||
| 259 | * root (`/`) | ||
| 260 | * keyboard (`/keyboards/<keyboard>/`) | ||
| 261 | * keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`) | ||
| 262 | * subproject (`/keyboards/<keyboard>/<subproject>`) | ||
| 263 | * subproject keymap (`/keyboards/<keyboard>/<subproject>/keymaps/<keymap>`) | ||
| 264 | |||
| 265 | 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.** | ||
| 266 | |||
| 267 | 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. | ||
| 268 | |||
| 269 | ### Makefile options | ||
| 270 | |||
| 271 | Set the variables to `no` to disable them, and `yes` to enable them. | ||
| 272 | |||
| 273 | `BOOTMAGIC_ENABLE` | ||
| 274 | |||
| 275 | 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. | ||
| 276 | |||
| 277 | `MOUSEKEY_ENABLE` | ||
| 278 | |||
| 279 | This gives you control over cursor movements and clicks via keycodes/custom functions. | ||
| 280 | |||
| 281 | `EXTRAKEY_ENABLE` | ||
| 282 | |||
| 283 | This allows you to use the system and audio control key codes. | ||
| 284 | |||
| 285 | `CONSOLE_ENABLE` | ||
| 286 | |||
| 287 | This allows you to print messages that can be read using [`hid_listen`](https://www.pjrc.com/teensy/hid_listen.html). | ||
| 288 | |||
| 289 | 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. | ||
| 290 | |||
| 291 | To disable debug messages (*dprint*) and reduce the .hex file size, include `#define NO_DEBUG` in your `config.h` file. | ||
| 292 | |||
| 293 | 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. | ||
| 294 | |||
| 295 | To disable print messages (*print*, *xprintf*) and **KEEP** user print messages (*uprint*), include `#define USER_PRINT` in your `config.h` file. | ||
| 296 | |||
| 297 | To see the text, open `hid_listen` and enjoy looking at your printed messages. | ||
| 298 | |||
| 299 | **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. | ||
| 300 | |||
| 301 | `COMMAND_ENABLE` | ||
| 302 | |||
| 303 | 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`). | ||
| 304 | |||
| 305 | `SLEEP_LED_ENABLE` | ||
| 306 | |||
| 307 | 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. | ||
| 308 | |||
| 309 | `NKRO_ENABLE` | ||
| 310 | |||
| 311 | 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. | ||
| 312 | |||
| 313 | `BACKLIGHT_ENABLE` | ||
| 314 | |||
| 315 | 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`: | ||
| 316 | |||
| 317 | #define BACKLIGHT_PIN B7 | ||
| 318 | |||
| 319 | `MIDI_ENABLE` | ||
| 320 | |||
| 321 | 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. | ||
| 322 | |||
| 323 | `UNICODE_ENABLE` | ||
| 324 | |||
| 325 | This allows you to send unicode symbols via `UC(<unicode>)` in your keymap. Only codes up to 0x7FFF are currently supported. | ||
| 326 | |||
| 327 | `UNICODEMAP_ENABLE` | ||
| 328 | |||
| 329 | This allows sending unicode symbols using `X(<unicode>)` in your keymap. Codes | ||
| 330 | up to 0xFFFFFFFF are supported, including emojis. You will need to maintain | ||
| 331 | a separate mapping table in your keymap file. | ||
| 332 | |||
| 333 | Known limitations: | ||
| 334 | - Under Mac OS, only codes up to 0xFFFF are supported. | ||
| 335 | - Under Linux ibus, only codes up to 0xFFFFF are supported (but anything important is still under this limit for now). | ||
| 336 | |||
| 337 | Characters out of range supported by the OS will be ignored. | ||
| 338 | |||
| 339 | `BLUETOOTH_ENABLE` | ||
| 340 | |||
| 341 | This allows you to interface with a Bluefruit EZ-key to send keycodes wirelessly. It uses the D2 and D3 pins. | ||
| 342 | |||
| 343 | `AUDIO_ENABLE` | ||
| 344 | |||
| 345 | This allows you output audio on the C6 pin (needs abstracting). See the [audio section](#driving-a-speaker---audio-support) for more information. | ||
| 346 | |||
| 347 | `VARIABLE_TRACE` | ||
| 348 | |||
| 349 | Use this to debug changes to variable values, see the [tracing variables](#tracing-variables) section for more information. | ||
| 350 | |||
| 351 | `API_SYSEX_ENABLE` | ||
| 352 | |||
| 353 | This enables using the Quantum SYSEX API to send strings (somewhere?) | ||
| 354 | |||
| 355 | ### Customizing Makefile options on a per-keymap basis | ||
| 356 | |||
| 357 | 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. | ||
| 358 | |||
| 359 | 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`. | ||
| 360 | |||
| 361 | You can use the `doc/keymap_makefile_example.md` as a template/starting point. | ||
| 362 | |||
| 363 | ## The `config.h` file | ||
| 364 | |||
| 365 | There are 2 `config.h` locations: | ||
| 366 | |||
| 367 | * keyboard (`/keyboards/<keyboard>/`) | ||
| 368 | * keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`) | ||
| 369 | |||
| 370 | 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: | ||
| 371 | |||
| 372 | ```c | ||
| 373 | #undef MY_SETTING | ||
| 374 | #define MY_SETTING 4 | ||
| 375 | ``` | ||
| 376 | |||
| 377 | For a value of `4` for this imaginary setting. So we `undef` it first, then `define` it. | ||
| 378 | |||
| 379 | You can then override any settings, rather than having to copy and paste the whole thing. | ||
| 380 | |||
| 381 | # Going beyond the keycodes | ||
| 382 | |||
| 383 | Aside from the [basic keycodes](doc/keycode.txt), your keymap can include shortcuts to common operations. | ||
| 384 | |||
| 385 | ## Quick aliases to common actions | ||
| 386 | |||
| 387 | Your keymap can include shortcuts to common operations (called "function actions" in tmk). | ||
| 388 | |||
| 389 | 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). | ||
| 390 | |||
| 391 | 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. | ||
| 392 | |||
| 393 | ### Switching and toggling layers | ||
| 394 | |||
| 395 | `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. | ||
| 396 | |||
| 397 | `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). | ||
| 398 | |||
| 399 | `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). | ||
| 400 | |||
| 401 | `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. | ||
| 402 | |||
| 403 | `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). | ||
| 404 | |||
| 405 | |||
| 406 | ### Fun with modifier keys | ||
| 407 | |||
| 408 | * `LSFT(kc)` - applies left Shift to *kc* (keycode) - `S(kc)` is an alias | ||
| 409 | * `RSFT(kc)` - applies right Shift to *kc* | ||
| 410 | * `LCTL(kc)` - applies left Control to *kc* | ||
| 411 | * `RCTL(kc)` - applies right Control to *kc* | ||
| 412 | * `LALT(kc)` - applies left Alt to *kc* | ||
| 413 | * `RALT(kc)` - applies right Alt to *kc* | ||
| 414 | * `LGUI(kc)` - applies left GUI (command/win) to *kc* | ||
| 415 | * `RGUI(kc)` - applies right GUI (command/win) to *kc* | ||
| 416 | * `HYPR(kc)` - applies Hyper (all modifiers) to *kc* | ||
| 417 | * `MEH(kc)` - applies Meh (all modifiers except Win/Cmd) to *kc* | ||
| 418 | * `LCAG(kc)` - applies CtrlAltGui to *kc* | ||
| 419 | |||
| 420 | You can also chain these, like this: | ||
| 421 | |||
| 422 | LALT(LCTL(KC_DEL)) -- this makes a key that sends Alt, Control, and Delete in a single keypress. | ||
| 423 | |||
| 424 | 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`. | ||
| 425 | |||
| 426 | KC_TILD ~ | ||
| 427 | KC_EXLM ! | ||
| 428 | KC_AT @ | ||
| 429 | KC_HASH # | ||
| 430 | KC_DLR $ | ||
| 431 | KC_PERC % | ||
| 432 | KC_CIRC ^ | ||
| 433 | KC_AMPR & | ||
| 434 | KC_ASTR * | ||
| 435 | KC_LPRN ( | ||
| 436 | KC_RPRN ) | ||
| 437 | KC_UNDS _ | ||
| 438 | KC_PLUS + | ||
| 439 | KC_DQUO " | ||
| 440 | KC_LCBR { | ||
| 441 | KC_RCBR } | ||
| 442 | KC_LABK < | ||
| 443 | KC_RABK > | ||
| 444 | KC_PIPE | | ||
| 445 | KC_COLN : | ||
| 446 | |||
| 447 | `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. :) | ||
| 448 | |||
| 449 | `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. | ||
| 450 | |||
| 451 | These are the values you can use for the `mod` in `MT()` and `OSM()` (right-hand modifiers are not available for `MT()`): | ||
| 452 | |||
| 453 | * MOD_LCTL | ||
| 454 | * MOD_LSFT | ||
| 455 | * MOD_LALT | ||
| 456 | * MOD_LGUI | ||
| 457 | * MOD_HYPR | ||
| 458 | * MOD_MEH | ||
| 459 | |||
| 460 | 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. | ||
| 461 | |||
| 462 | We've added shortcuts to make common modifier/tap (mod-tap) mappings more compact: | ||
| 463 | |||
| 464 | * `CTL_T(kc)` - is LCTL when held and *kc* when tapped | ||
| 465 | * `SFT_T(kc)` - is LSFT when held and *kc* when tapped | ||
| 466 | * `ALT_T(kc)` - is LALT when held and *kc* when tapped | ||
| 467 | * `GUI_T(kc)` - is LGUI when held and *kc* when tapped | ||
| 468 | * `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/) | ||
| 469 | * `LCAG_T(kc)` - is CtrlAltGui when held and *kc* when tapped | ||
| 470 | * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift. | ||
| 471 | |||
| 472 | ## Space Cadet Shift: The future, built in | ||
| 473 | |||
| 474 | 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. | ||
| 475 | |||
| 476 | 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. | ||
| 477 | |||
| 478 | 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: | ||
| 479 | |||
| 480 | #define LSPO_KEY KC_9 | ||
| 481 | #define RSPC_KEY KC_0 | ||
| 482 | |||
| 483 | You can also choose between different rollover behaviors of the shift keys by defining: | ||
| 484 | |||
| 485 | #define DISABLE_SPACE_CADET_ROLLOVER | ||
| 486 | |||
| 487 | 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. | ||
| 488 | |||
| 489 | The only other thing you're going to want to do is create a `Makefile` in your keymap directory and set the following: | ||
| 490 | |||
| 491 | ``` | ||
| 492 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 493 | ``` | ||
| 494 | |||
| 495 | This is just to keep the keyboard from going into command mode when you hold both Shift keys at the same time. | ||
| 496 | |||
| 497 | ## The Leader key: A new kind of modifier | ||
| 498 | |||
| 499 | 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. | ||
| 500 | |||
| 501 | That's what `KC_LEAD` does. Here's an example: | ||
| 502 | |||
| 503 | 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. | ||
| 504 | 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. | ||
| 505 | 3. Within your `matrix_scan_user` function, do something like this: | ||
| 506 | |||
| 507 | ``` | ||
| 508 | LEADER_EXTERNS(); | ||
| 509 | |||
| 510 | void matrix_scan_user(void) { | ||
| 511 | LEADER_DICTIONARY() { | ||
| 512 | leading = false; | ||
| 513 | leader_end(); | ||
| 514 | |||
| 515 | SEQ_ONE_KEY(KC_F) { | ||
| 516 | register_code(KC_S); | ||
| 517 | unregister_code(KC_S); | ||
| 518 | } | ||
| 519 | SEQ_TWO_KEYS(KC_A, KC_S) { | ||
| 520 | register_code(KC_H); | ||
| 521 | unregister_code(KC_H); | ||
| 522 | } | ||
| 523 | SEQ_THREE_KEYS(KC_A, KC_S, KC_D) { | ||
| 524 | register_code(KC_LGUI); | ||
| 525 | register_code(KC_S); | ||
| 526 | unregister_code(KC_S); | ||
| 527 | unregister_code(KC_LGUI); | ||
| 528 | } | ||
| 529 | } | ||
| 530 | } | ||
| 531 | ``` | ||
| 532 | |||
| 533 | 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. | ||
| 534 | |||
| 535 | ## Tap Dance: A single key can do 3, 5, or 100 different things | ||
| 536 | |||
| 537 | 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: | ||
| 538 | |||
| 539 | 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. | ||
| 540 | |||
| 541 | 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. | ||
| 542 | |||
| 543 | 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. | ||
| 544 | |||
| 545 | 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. | ||
| 546 | |||
| 547 | But lets start with how to use it, first! | ||
| 548 | |||
| 549 | 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. | ||
| 550 | |||
| 551 | This array specifies what actions shall be taken when a tap-dance key is in action. Currently, there are three possible options: | ||
| 552 | |||
| 553 | * `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. | ||
| 554 | * `ACTION_TAP_DANCE_FN(fn)`: Calls the specified function - defined in the user keymap - with the final tap count of the tap dance action. | ||
| 555 | * `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. | ||
| 556 | |||
| 557 | 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. | ||
| 558 | |||
| 559 | And that's the bulk of it! | ||
| 560 | |||
| 561 | And now, on to the explanation of how it works! | ||
| 562 | |||
| 563 | 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. | ||
| 564 | |||
| 565 | 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. | ||
| 566 | |||
| 567 | Our next stop is `matrix_scan_tap_dance()`. This handles the timeout of tap-dance keys. | ||
| 568 | |||
| 569 | 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. | ||
| 570 | |||
| 571 | ### Examples | ||
| 572 | |||
| 573 | Here's a simple example for a single definition: | ||
| 574 | |||
| 575 | 1. In your `makefile`, add `TAP_DANCE_ENABLE = yes` | ||
| 576 | 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` | ||
| 577 | 3. In your `keymap.c` file, define the variables and definitions, then add to your keymap: | ||
| 578 | |||
| 579 | ```c | ||
| 580 | //Tap Dance Declarations | ||
| 581 | enum { | ||
| 582 | TD_ESC_CAPS = 0 | ||
| 583 | }; | ||
| 584 | |||
| 585 | //Tap Dance Definitions | ||
| 586 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
| 587 | //Tap once for Esc, twice for Caps Lock | ||
| 588 | [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS) | ||
| 589 | // Other declarations would go here, separated by commas, if you have them | ||
| 590 | }; | ||
| 591 | |||
| 592 | //In Layer declaration, add tap dance item in place of a key code | ||
| 593 | TD(TD_ESC_CAPS) | ||
| 594 | ``` | ||
| 595 | |||
| 596 | Here's a more complex example involving custom actions: | ||
| 597 | |||
| 598 | ```c | ||
| 599 | enum { | ||
| 600 | CT_SE = 0, | ||
| 601 | CT_CLN, | ||
| 602 | CT_EGG, | ||
| 603 | CT_FLSH, | ||
| 604 | }; | ||
| 605 | |||
| 606 | /* Have the above three on the keymap, TD(CT_SE), etc... */ | ||
| 607 | |||
| 608 | void dance_cln_finished (qk_tap_dance_state_t *state, void *user_data) { | ||
| 609 | if (state->count == 1) { | ||
| 610 | register_code (KC_RSFT); | ||
| 611 | register_code (KC_SCLN); | ||
| 612 | } else { | ||
| 613 | register_code (KC_SCLN); | ||
| 614 | } | ||
| 615 | } | ||
| 616 | |||
| 617 | void dance_cln_reset (qk_tap_dance_state_t *state, void *user_data) { | ||
| 618 | if (state->count == 1) { | ||
| 619 | unregister_code (KC_RSFT); | ||
| 620 | unregister_code (KC_SCLN); | ||
| 621 | } else { | ||
| 622 | unregister_code (KC_SCLN); | ||
| 623 | } | ||
| 624 | } | ||
| 625 | |||
| 626 | void dance_egg (qk_tap_dance_state_t *state, void *user_data) { | ||
| 627 | if (state->count >= 100) { | ||
| 628 | SEND_STRING ("Safety dance!"); | ||
| 629 | reset_tap_dance (state); | ||
| 630 | } | ||
| 631 | } | ||
| 632 | |||
| 633 | // on each tap, light up one led, from right to left | ||
| 634 | // on the forth tap, turn them off from right to left | ||
| 635 | void dance_flsh_each(qk_tap_dance_state_t *state, void *user_data) { | ||
| 636 | switch (state->count) { | ||
| 637 | case 1: | ||
| 638 | ergodox_right_led_3_on(); | ||
| 639 | break; | ||
| 640 | case 2: | ||
| 641 | ergodox_right_led_2_on(); | ||
| 642 | break; | ||
| 643 | case 3: | ||
| 644 | ergodox_right_led_1_on(); | ||
| 645 | break; | ||
| 646 | case 4: | ||
| 647 | ergodox_right_led_3_off(); | ||
| 648 | _delay_ms(50); | ||
| 649 | ergodox_right_led_2_off(); | ||
| 650 | _delay_ms(50); | ||
| 651 | ergodox_right_led_1_off(); | ||
| 652 | } | ||
| 653 | } | ||
| 654 | |||
| 655 | // on the fourth tap, set the keyboard on flash state | ||
| 656 | void dance_flsh_finished(qk_tap_dance_state_t *state, void *user_data) { | ||
| 657 | if (state->count >= 4) { | ||
| 658 | reset_keyboard(); | ||
| 659 | reset_tap_dance(state); | ||
| 660 | } | ||
| 661 | } | ||
| 662 | |||
| 663 | // if the flash state didnt happen, then turn off leds, left to right | ||
| 664 | void dance_flsh_reset(qk_tap_dance_state_t *state, void *user_data) { | ||
| 665 | ergodox_right_led_1_off(); | ||
| 666 | _delay_ms(50); | ||
| 667 | ergodox_right_led_2_off(); | ||
| 668 | _delay_ms(50); | ||
| 669 | ergodox_right_led_3_off(); | ||
| 670 | } | ||
| 671 | |||
| 672 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
| 673 | [CT_SE] = ACTION_TAP_DANCE_DOUBLE (KC_SPC, KC_ENT) | ||
| 674 | ,[CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset) | ||
| 675 | ,[CT_EGG] = ACTION_TAP_DANCE_FN (dance_egg) | ||
| 676 | ,[CT_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED (dance_flsh_each, dance_flsh_finished, dance_flsh_reset) | ||
| 677 | }; | ||
| 678 | ``` | ||
| 679 | |||
| 680 | ## Temporarily setting the default layer | ||
| 681 | |||
| 682 | `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. | ||
| 683 | |||
| 684 | ## Prevent stuck modifiers | ||
| 685 | |||
| 686 | Consider the following scenario: | ||
| 687 | |||
| 688 | 1. Layer 0 has a key defined as Shift. | ||
| 689 | 2. The same key is defined on layer 1 as the letter A. | ||
| 690 | 3. User presses Shift. | ||
| 691 | 4. User switches to layer 1 for whatever reason. | ||
| 692 | 5. User releases Shift, or rather the letter A. | ||
| 693 | 6. User switches back to layer 0. | ||
| 694 | |||
| 695 | Shift was actually never released and is still considered pressed. | ||
| 696 | |||
| 697 | If such situation bothers you add this to your `config.h`: | ||
| 698 | |||
| 699 | #define PREVENT_STUCK_MODIFIERS | ||
| 700 | |||
| 701 | This option uses 5 bytes of memory per every 8 keys on the keyboard | ||
| 702 | rounded up (5 bits per key). For example on Planck (48 keys) it uses | ||
| 703 | (48/8)\*5 = 30 bytes. | ||
| 704 | |||
| 705 | ## Macro shortcuts: Send a whole string when pressing just one key | ||
| 706 | |||
| 707 | 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). | ||
| 708 | |||
| 709 | ```c | ||
| 710 | 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. | ||
| 711 | { | ||
| 712 | switch(id) { | ||
| 713 | case 0: // this would trigger when you hit a key mapped as M(0) | ||
| 714 | if (record->event.pressed) { | ||
| 715 | 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 | ||
| 716 | } | ||
| 717 | break; | ||
| 718 | } | ||
| 719 | return MACRO_NONE; | ||
| 720 | }; | ||
| 721 | ``` | ||
| 722 | A macro can include the following commands: | ||
| 723 | |||
| 724 | * I() change interval of stroke in milliseconds. | ||
| 725 | * D() press key. | ||
| 726 | * U() release key. | ||
| 727 | * T() type key(press and release). | ||
| 728 | * W() wait (milliseconds). | ||
| 729 | * END end mark. | ||
| 730 | |||
| 731 | 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. | ||
| 732 | |||
| 733 | Note: Using macros to have your keyboard send passwords for you is possible, but a bad idea. | ||
| 734 | |||
| 735 | ### Advanced macro functions | ||
| 736 | |||
| 737 | 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: | ||
| 738 | |||
| 739 | * `record->event.pressed` | ||
| 740 | |||
| 741 | This is a boolean value that can be tested to see if the switch is being pressed or released. An example of this is | ||
| 742 | |||
| 743 | ```c | ||
| 744 | if (record->event.pressed) { | ||
| 745 | // on keydown | ||
| 746 | } else { | ||
| 747 | // on keyup | ||
| 748 | } | ||
| 749 | ``` | ||
| 750 | |||
| 751 | * `register_code(<kc>);` | ||
| 752 | |||
| 753 | 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`. | ||
| 754 | |||
| 755 | * `unregister_code(<kc>);` | ||
| 756 | |||
| 757 | 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. | ||
| 758 | |||
| 759 | * `layer_on(<n>);` | ||
| 760 | |||
| 761 | 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. | ||
| 762 | |||
| 763 | * `layer_off(<n>);` | ||
| 764 | |||
| 765 | This will turn off the layer `<n>`. | ||
| 766 | |||
| 767 | * `clear_keyboard();` | ||
| 768 | |||
| 769 | This will clear all mods and keys currently pressed. | ||
| 770 | |||
| 771 | * `clear_mods();` | ||
| 772 | |||
| 773 | This will clear all mods currently pressed. | ||
| 774 | |||
| 775 | * `clear_keyboard_but_mods();` | ||
| 776 | |||
| 777 | This will clear all keys besides the mods currently pressed. | ||
| 778 | |||
| 779 | * `update_tri_layer(layer_1, layer_2, layer_3);` | ||
| 780 | |||
| 781 | 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). | ||
| 782 | |||
| 783 | #### Naming your macros | ||
| 784 | |||
| 785 | 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: | ||
| 786 | |||
| 787 | ``` | ||
| 788 | #define AUD_OFF M(6) | ||
| 789 | #define AUD_ON M(7) | ||
| 790 | #define MUS_OFF M(8) | ||
| 791 | #define MUS_ON M(9) | ||
| 792 | #define VC_IN M(10) | ||
| 793 | #define VC_DE M(11) | ||
| 794 | #define PLOVER M(12) | ||
| 795 | #define EXT_PLV M(13) | ||
| 796 | ``` | ||
| 797 | |||
| 798 | As was done on the [Planck default keymap](/keyboards/planck/keymaps/default/keymap.c#L33-L40) | ||
| 799 | |||
| 800 | #### Timer functionality | ||
| 801 | |||
| 802 | It's possible to start timers and read values for time-specific events - here's an example: | ||
| 803 | |||
| 804 | ```c | ||
| 805 | static uint16_t key_timer; | ||
| 806 | key_timer = timer_read(); | ||
| 807 | if (timer_elapsed(key_timer) < 100) { | ||
| 808 | // do something if less than 100ms have passed | ||
| 809 | } else { | ||
| 810 | // do something if 100ms or more have passed | ||
| 811 | } | ||
| 812 | ``` | ||
| 813 | |||
| 814 | It's best to declare the `static uint16_t key_timer;` outside of the macro block (top of file, etc). | ||
| 815 | |||
| 816 | #### Example: Single-key copy/paste (hold to copy, tap to paste) | ||
| 817 | |||
| 818 | 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? | ||
| 819 | |||
| 820 | Here's what you do: | ||
| 821 | |||
| 822 | |||
| 823 | ``` | ||
| 824 | static uint16_t key_timer; | ||
| 825 | |||
| 826 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 827 | { | ||
| 828 | switch(id) { | ||
| 829 | case 0: { | ||
| 830 | if (record->event.pressed) { | ||
| 831 | key_timer = timer_read(); // if the key is being pressed, we start the timer. | ||
| 832 | } | ||
| 833 | else { // this means the key was just released, so we can figure out how long it was pressed for (tap or "held down"). | ||
| 834 | if (timer_elapsed(key_timer) > 150) { // 150 being 150ms, the threshhold we pick for counting something as a tap. | ||
| 835 | return MACRO( D(LCTL), T(C), U(LCTL), END ); | ||
| 836 | } | ||
| 837 | else { | ||
| 838 | return MACRO( D(LCTL), T(V), U(LCTL), END ); | ||
| 839 | } | ||
| 840 | } | ||
| 841 | break; | ||
| 842 | } | ||
| 843 | } | ||
| 844 | return MACRO_NONE; | ||
| 845 | }; | ||
| 846 | ``` | ||
| 847 | |||
| 848 | 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. | ||
| 849 | |||
| 850 | ## Dynamic macros: record and replay macros in runtime | ||
| 851 | |||
| 852 | 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). | ||
| 853 | |||
| 854 | To enable them, first add a new element to the `planck_keycodes` enum -- `DYNAMIC_MACRO_RANGE`: | ||
| 855 | |||
| 856 | enum planck_keycodes { | ||
| 857 | QWERTY = SAFE_RANGE, | ||
| 858 | COLEMAK, | ||
| 859 | DVORAK, | ||
| 860 | PLOVER, | ||
| 861 | LOWER, | ||
| 862 | RAISE, | ||
| 863 | BACKLIT, | ||
| 864 | EXT_PLV, | ||
| 865 | DYNAMIC_MACRO_RANGE, | ||
| 866 | }; | ||
| 867 | |||
| 868 | Afterwards create a new layer called `_DYN`: | ||
| 869 | |||
| 870 | #define _DYN 6 /* almost any other free number should be ok */ | ||
| 871 | |||
| 872 | Below these two modifications include the `dynamic_macro.h` header: | ||
| 873 | |||
| 874 | #include "dynamic_macro.h"` | ||
| 875 | |||
| 876 | 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. | ||
| 877 | |||
| 878 | [_DYN]= { | ||
| 879 | {_______, DYN_REC_START1, DYN_MACRO_PLAY1, _______, _______, _______, _______, _______, _______, _______, _______, _______}, | ||
| 880 | {_______, DYN_REC_START2, DYN_MACRO_PLAY2, _______, _______, _______, _______, _______, _______, _______, _______, _______}, | ||
| 881 | {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, | ||
| 882 | {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||
| 883 | }, | ||
| 884 | |||
| 885 | Add the following code to the very beginning of your `process_record_user()` function: | ||
| 886 | |||
| 887 | if (!process_record_dynamic_macro(keycode, record)) { | ||
| 888 | return false; | ||
| 889 | } | ||
| 890 | |||
| 891 | 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`. | ||
| 892 | |||
| 893 | 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). | ||
| 894 | |||
| 895 | For the details about the internals of the dynamic macros, please read the comments in the `dynamic_macro.h` header. | ||
| 896 | |||
| 897 | ## Additional keycode aliases for software-implemented layouts (Colemak, Dvorak, etc) | ||
| 898 | |||
| 899 | 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: | ||
| 900 | |||
| 901 | #include <keymap_colemak.h> | ||
| 902 | |||
| 903 | 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: | ||
| 904 | |||
| 905 | * `CM_*` for all of the Colemak-equivalent characters | ||
| 906 | * `DV_*` for all of the Dvorak-equivalent characters | ||
| 907 | |||
| 908 | 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. | ||
| 909 | |||
| 910 | 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`. | ||
| 911 | |||
| 912 | ## Additional language support | ||
| 913 | |||
| 914 | 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). | ||
| 915 | |||
| 916 | ## Unicode support | ||
| 917 | |||
| 918 | There are three Unicode keymap definition method available in QMK: | ||
| 919 | |||
| 920 | ### UNICODE_ENABLE | ||
| 921 | |||
| 922 | Supports Unicode input up to 0xFFFF. The keycode function is `UC(n)` in | ||
| 923 | keymap file, where *n* is a 4 digit hexadecimal. | ||
| 924 | |||
| 925 | ### UNICODEMAP_ENABLE | ||
| 926 | |||
| 927 | Supports Unicode up to 0xFFFFFFFF. You need to maintain a separate mapping | ||
| 928 | table `const uint32_t PROGMEM unicode_map[] = {...}` in your keymap file. | ||
| 929 | The keycode function is `X(n)` where *n* is the array index of the mapping | ||
| 930 | table. | ||
| 931 | |||
| 932 | ### UCIS_ENABLE | ||
| 933 | |||
| 934 | TBD | ||
| 935 | |||
| 936 | Unicode input in QMK works by inputing a sequence of characters to the OS, | ||
| 937 | sort of like macro. Unfortunately, each OS has different ideas on how Unicode is inputted. | ||
| 938 | |||
| 939 | This is the current list of Unicode input method in QMK: | ||
| 940 | |||
| 941 | * 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. | ||
| 942 | * 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. | ||
| 943 | * 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. | ||
| 944 | * UC_WINC: Windows Unicode input using WinCompose. Requires [WinCompose](https://github.com/samhocevar/wincompose). Works reliably under many (all?) variations of Windows. | ||
| 945 | |||
| 946 | ## Backlight Breathing | ||
| 947 | |||
| 948 | In order to enable backlight breathing, the following line must be added to your config.h file. | ||
| 949 | |||
| 950 | #define BACKLIGHT_BREATHING | ||
| 951 | |||
| 952 | The following function calls are used to control the breathing effect. | ||
| 953 | |||
| 954 | * ```breathing_enable()``` - Enable the free-running breathing effect. | ||
| 955 | * ```breathing_disable()``` - Disable the free-running breathing effect immediately. | ||
| 956 | * ```breathing_self_disable()``` - Disable the free-running breathing effect after the current effect ends. | ||
| 957 | * ```breathing_toggle()``` - Toggle the free-running breathing effect. | ||
| 958 | * ```breathing_defaults()``` - Reset the speed and brightness settings of the breathing effect. | ||
| 959 | |||
| 960 | The following function calls are used to control the maximum brightness of the breathing effect. | ||
| 961 | |||
| 962 | * ```breathing_intensity_set(value)``` - Set the brightness of the breathing effect when it is at its max value. | ||
| 963 | * ```breathing_intensity_default()``` - Reset the brightness of the breathing effect to the default value based on the current backlight intensity. | ||
| 964 | |||
| 965 | The following function calls are used to control the cycling speed of the breathing effect. | ||
| 966 | |||
| 967 | * ```breathing_speed_set(value)``` - Set the speed of the breathing effect - how fast it cycles. | ||
| 968 | * ```breathing_speed_inc(value)``` - Increase the speed of the breathing effect by a fixed value. | ||
| 969 | * ```breathing_speed_dec(value)``` - Decrease the speed of the breathing effect by a fixed value. | ||
| 970 | * ```breathing_speed_default()``` - Reset the speed of the breathing effect to the default value. | ||
| 971 | |||
| 972 | The following example shows how to enable the backlight breathing effect when the FUNCTION layer macro button is pressed: | ||
| 973 | |||
| 974 | case MACRO_FUNCTION: | ||
| 975 | if (record->event.pressed) | ||
| 976 | { | ||
| 977 | breathing_speed_set(3); | ||
| 978 | breathing_enable(); | ||
| 979 | layer_on(LAYER_FUNCTION); | ||
| 980 | } | ||
| 981 | else | ||
| 982 | { | ||
| 983 | breathing_speed_set(1); | ||
| 984 | breathing_self_disable(); | ||
| 985 | layer_off(LAYER_FUNCTION); | ||
| 986 | } | ||
| 987 | break; | ||
| 988 | |||
| 989 | The following example shows how to pulse the backlight on-off-on when the RAISED layer macro button is pressed: | ||
| 990 | |||
| 991 | case MACRO_RAISED: | ||
| 992 | if (record->event.pressed) | ||
| 993 | { | ||
| 994 | layer_on(LAYER_RAISED); | ||
| 995 | breathing_speed_set(2); | ||
| 996 | breathing_pulse(); | ||
| 997 | update_tri_layer(LAYER_LOWER, LAYER_RAISED, LAYER_ADJUST); | ||
| 998 | } | ||
| 999 | else | ||
| 1000 | { | ||
| 1001 | layer_off(LAYER_RAISED); | ||
| 1002 | update_tri_layer(LAYER_LOWER, LAYER_RAISED, LAYER_ADJUST); | ||
| 1003 | } | ||
| 1004 | break; | ||
| 1005 | |||
| 1006 | ## Other firmware shortcut keycodes | ||
| 1007 | |||
| 1008 | * `RESET` - puts the MCU in DFU mode for flashing new firmware (with `make dfu`) | ||
| 1009 | * `DEBUG` - the firmware into debug mode - you'll need hid_listen to see things | ||
| 1010 | * `BL_ON` - turns the backlight on | ||
| 1011 | * `BL_OFF` - turns the backlight off | ||
| 1012 | * `BL_<n>` - sets the backlight to level *n* | ||
| 1013 | * `BL_INC` - increments the backlight level by one | ||
| 1014 | * `BL_DEC` - decrements the backlight level by one | ||
| 1015 | * `BL_TOGG` - toggles the backlight | ||
| 1016 | * `BL_STEP` - steps through the backlight levels | ||
| 1017 | |||
| 1018 | Enable the backlight from the Makefile. | ||
| 1019 | |||
| 1020 | # Custom Quantum functions | ||
| 1021 | |||
| 1022 | 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. | ||
| 1023 | |||
| 1024 | ## `void matrix_init_*(void)` | ||
| 1025 | |||
| 1026 | This function gets called when the matrix is initiated, and can contain start-up code for your keyboard/keymap. | ||
| 1027 | |||
| 1028 | ## `void matrix_scan_*(void)` | ||
| 1029 | |||
| 1030 | 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. | ||
| 1031 | |||
| 1032 | ## `bool process_record_*(uint16_t keycode, keyrecord_t *record)` | ||
| 1033 | |||
| 1034 | 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. | ||
| 1035 | |||
| 1036 | 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. | ||
| 1037 | |||
| 1038 | The `record` variable contains infomation about the actual press: | ||
| 1039 | |||
| 1040 | ``` | ||
| 1041 | keyrecord_t record { | ||
| 1042 | keyevent_t event { | ||
| 1043 | keypos_t key { | ||
| 1044 | uint8_t col | ||
| 1045 | uint8_t row | ||
| 1046 | } | ||
| 1047 | bool pressed | ||
| 1048 | uint16_t time | ||
| 1049 | } | ||
| 1050 | } | ||
| 1051 | ``` | ||
| 1052 | |||
| 1053 | The conditional `if (record->event.pressed)` can tell if the key is being pressed or released, and you can execute code based on that. | ||
| 1054 | |||
| 1055 | ## `void led_set_*(uint8_t usb_led)` | ||
| 1056 | |||
| 1057 | This gets called whenever there is a state change on your host LEDs (eg caps lock, scroll lock, etc). The LEDs are defined as: | ||
| 1058 | |||
| 1059 | ``` | ||
| 1060 | #define USB_LED_NUM_LOCK 0 | ||
| 1061 | #define USB_LED_CAPS_LOCK 1 | ||
| 1062 | #define USB_LED_SCROLL_LOCK 2 | ||
| 1063 | #define USB_LED_COMPOSE 3 | ||
| 1064 | #define USB_LED_KANA 4 | ||
| 1065 | ``` | ||
| 1066 | |||
| 1067 | 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. | ||
| 1068 | |||
| 1069 | # Modding your keyboard | ||
| 1070 | |||
| 1071 | ## Audio output from a speaker | ||
| 1072 | |||
| 1073 | 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. | ||
| 1074 | |||
| 1075 | 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: | ||
| 1076 | |||
| 1077 | ``` | ||
| 1078 | #include "audio.h" | ||
| 1079 | ``` | ||
| 1080 | |||
| 1081 | Then, lower down the file: | ||
| 1082 | |||
| 1083 | ``` | ||
| 1084 | float tone_startup[][2] = { | ||
| 1085 | ED_NOTE(_E7 ), | ||
| 1086 | E__NOTE(_CS7), | ||
| 1087 | E__NOTE(_E6 ), | ||
| 1088 | E__NOTE(_A6 ), | ||
| 1089 | M__NOTE(_CS7, 20) | ||
| 1090 | }; | ||
| 1091 | ``` | ||
| 1092 | |||
| 1093 | 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. | ||
| 1094 | |||
| 1095 | Then, we have this chunk: | ||
| 1096 | |||
| 1097 | ``` | ||
| 1098 | float tone_qwerty[][2] = SONG(QWERTY_SOUND); | ||
| 1099 | float tone_dvorak[][2] = SONG(DVORAK_SOUND); | ||
| 1100 | float tone_colemak[][2] = SONG(COLEMAK_SOUND); | ||
| 1101 | float tone_plover[][2] = SONG(PLOVER_SOUND); | ||
| 1102 | float tone_plover_gb[][2] = SONG(PLOVER_GOODBYE_SOUND); | ||
| 1103 | |||
| 1104 | float music_scale[][2] = SONG(MUSIC_SCALE_SOUND); | ||
| 1105 | float goodbye[][2] = SONG(GOODBYE_SOUND); | ||
| 1106 | ``` | ||
| 1107 | |||
| 1108 | 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. | ||
| 1109 | |||
| 1110 | 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: | ||
| 1111 | |||
| 1112 | ``` | ||
| 1113 | PLAY_NOTE_ARRAY(tone_plover, false, 0); // Signature is: Song name, repeat, rest style | ||
| 1114 | ``` | ||
| 1115 | |||
| 1116 | This is inside one of the macros. So when that macro executes, your keyboard plays that particular chime. | ||
| 1117 | |||
| 1118 | "Rest style" in the method signature above (the last parameter) specifies if there's a rest (a moment of silence) between the notes. | ||
| 1119 | |||
| 1120 | |||
| 1121 | ## Recording And Playing back Music | ||
| 1122 | * ```Music On``` - Turn music mode on. The default mapping is ```Lower+Upper+C``` | ||
| 1123 | * ```LCTL``` - start a recording | ||
| 1124 | * play some tones | ||
| 1125 | * ```LALT``` - stop recording, stop playing | ||
| 1126 | * ```LGUI``` - play recording | ||
| 1127 | * ```LALT``` - stop playing | ||
| 1128 | * ```Music Off``` - Turn music mode off. The default mapping is ```Lower+Upper+V``` | ||
| 1129 | |||
| 1130 | |||
| 1131 | ## MIDI functionalty | ||
| 1132 | |||
| 1133 | This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile. | ||
| 1134 | |||
| 1135 | ## Bluetooth functionality | ||
| 1136 | |||
| 1137 | 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. | ||
| 1138 | |||
| 1139 | ## International Characters on Windows | ||
| 1140 | |||
| 1141 | [AutoHotkey](https://autohotkey.com) allows Windows users to create custom hotkeys among others. | ||
| 1142 | |||
| 1143 | The method does not require Unicode support in the keyboard itself but depends instead of AutoHotkey running in the background. | ||
| 1144 | |||
| 1145 | First you need to select a modifier combination that is not in use by any of your programs. | ||
| 1146 | CtrlAltWin is not used very widely and should therefore be perfect for this. | ||
| 1147 | There is a macro defined for a mod-tab combo `LCAG_T`. | ||
| 1148 | Add this mod-tab combo to a key on your keyboard, e.g.: `LCAG_T(KC_TAB)`. | ||
| 1149 | 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. | ||
| 1150 | |||
| 1151 | In the default script of AutoHotkey you can define custom hotkeys. | ||
| 1152 | |||
| 1153 | <^<!<#a::Send, ä | ||
| 1154 | <^<!<#<+a::Send, Ä | ||
| 1155 | |||
| 1156 | The hotkeys above are for the combination CtrlAltGui and CtrlAltGuiShift plus the letter a. | ||
| 1157 | AutoHotkey inserts the Text right of `Send, ` when this combination is pressed. | ||
| 1158 | |||
| 1159 | ## RGB Under Glow Mod | ||
| 1160 | |||
| 1161 |  | ||
| 1162 | |||
| 1163 | Here is a quick demo on Youtube (with NPKC KC60) (https://www.youtube.com/watch?v=VKrpPAHlisY). | ||
| 1164 | |||
| 1165 | 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. | ||
| 1166 | |||
| 1167 | RGBLIGHT_ENABLE = yes | ||
| 1168 | |||
| 1169 | In order to use the underglow animation functions, you need to have `#define RGBLIGHT_ANIMATIONS` in your `config.h`. | ||
| 1170 | |||
| 1171 | 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: | ||
| 1172 | |||
| 1173 | #define RGB_DI_PIN F4 // The pin your RGB strip is wired to | ||
| 1174 | #define RGBLIGHT_ANIMATIONS // Require for fancier stuff (not compatible with audio) | ||
| 1175 | #define RGBLED_NUM 14 // Number of LEDs | ||
| 1176 | #define RGBLIGHT_HUE_STEP 10 | ||
| 1177 | #define RGBLIGHT_SAT_STEP 17 | ||
| 1178 | #define RGBLIGHT_VAL_STEP 17 | ||
| 1179 | |||
| 1180 | You'll need to edit `RGB_DI_PIN` to the pin you have your `DI` on your RGB strip wired to. | ||
| 1181 | |||
| 1182 | 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` | ||
| 1183 | |||
| 1184 | ### WS2812 Wiring | ||
| 1185 | |||
| 1186 |  | ||
| 1187 | |||
| 1188 | 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. | ||
| 1189 | |||
| 1190 | ## PS/2 Mouse Support | ||
| 1191 | |||
| 1192 | Its possible to hook up a PS/2 mouse (for example touchpads or trackpoints) to your keyboard as a composite device. | ||
| 1193 | |||
| 1194 | There are three available modes for hooking up PS/2 devices: USART (best), interrupts (better) or busywait (not recommended). | ||
| 1195 | |||
| 1196 | ### Busywait version | ||
| 1197 | |||
| 1198 | Note: This is not recommended, you may encounter jerky movement or unsent inputs. Please use interrupt or USART version if possible. | ||
| 1199 | |||
| 1200 | In rules.mk: | ||
| 1201 | |||
| 1202 | ``` | ||
| 1203 | PS2_MOUSE_ENABLE = yes | ||
| 1204 | PS2_USE_BUSYWAIT = yes | ||
| 1205 | ``` | ||
| 1206 | |||
| 1207 | In your keyboard config.h: | ||
| 1208 | |||
| 1209 | ``` | ||
| 1210 | #ifdef PS2_USE_BUSYWAIT | ||
| 1211 | # define PS2_CLOCK_PORT PORTD | ||
| 1212 | # define PS2_CLOCK_PIN PIND | ||
| 1213 | # define PS2_CLOCK_DDR DDRD | ||
| 1214 | # define PS2_CLOCK_BIT 1 | ||
| 1215 | # define PS2_DATA_PORT PORTD | ||
| 1216 | # define PS2_DATA_PIN PIND | ||
| 1217 | # define PS2_DATA_DDR DDRD | ||
| 1218 | # define PS2_DATA_BIT 2 | ||
| 1219 | #endif | ||
| 1220 | ``` | ||
| 1221 | |||
| 1222 | ### Interrupt version | ||
| 1223 | |||
| 1224 | 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. | ||
| 1225 | |||
| 1226 | In rules.mk: | ||
| 1227 | |||
| 1228 | ``` | ||
| 1229 | PS2_MOUSE_ENABLE = yes | ||
| 1230 | PS2_USE_INT = yes | ||
| 1231 | ``` | ||
| 1232 | |||
| 1233 | In your keyboard config.h: | ||
| 1234 | |||
| 1235 | ``` | ||
| 1236 | #ifdef PS2_USE_INT | ||
| 1237 | #define PS2_CLOCK_PORT PORTD | ||
| 1238 | #define PS2_CLOCK_PIN PIND | ||
| 1239 | #define PS2_CLOCK_DDR DDRD | ||
| 1240 | #define PS2_CLOCK_BIT 2 | ||
| 1241 | #define PS2_DATA_PORT PORTD | ||
| 1242 | #define PS2_DATA_PIN PIND | ||
| 1243 | #define PS2_DATA_DDR DDRD | ||
| 1244 | #define PS2_DATA_BIT 5 | ||
| 1245 | |||
| 1246 | #define PS2_INT_INIT() do { \ | ||
| 1247 | EICRA |= ((1<<ISC21) | \ | ||
| 1248 | (0<<ISC20)); \ | ||
| 1249 | } while (0) | ||
| 1250 | #define PS2_INT_ON() do { \ | ||
| 1251 | EIMSK |= (1<<INT2); \ | ||
| 1252 | } while (0) | ||
| 1253 | #define PS2_INT_OFF() do { \ | ||
| 1254 | EIMSK &= ~(1<<INT2); \ | ||
| 1255 | } while (0) | ||
| 1256 | #define PS2_INT_VECT INT2_vect | ||
| 1257 | #endif | ||
| 1258 | ``` | ||
| 1259 | |||
| 1260 | ### USART version | ||
| 1261 | |||
| 1262 | 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. | ||
| 1263 | |||
| 1264 | In rules.mk: | ||
| 1265 | |||
| 1266 | ``` | ||
| 1267 | PS2_MOUSE_ENABLE = yes | ||
| 1268 | PS2_USE_USART = yes | ||
| 1269 | ``` | ||
| 1270 | |||
| 1271 | In your keyboard config.h: | ||
| 1272 | |||
| 1273 | ``` | ||
| 1274 | #ifdef PS2_USE_USART | ||
| 1275 | #define PS2_CLOCK_PORT PORTD | ||
| 1276 | #define PS2_CLOCK_PIN PIND | ||
| 1277 | #define PS2_CLOCK_DDR DDRD | ||
| 1278 | #define PS2_CLOCK_BIT 5 | ||
| 1279 | #define PS2_DATA_PORT PORTD | ||
| 1280 | #define PS2_DATA_PIN PIND | ||
| 1281 | #define PS2_DATA_DDR DDRD | ||
| 1282 | #define PS2_DATA_BIT 2 | ||
| 1283 | |||
| 1284 | /* synchronous, odd parity, 1-bit stop, 8-bit data, sample at falling edge */ | ||
| 1285 | /* set DDR of CLOCK as input to be slave */ | ||
| 1286 | #define PS2_USART_INIT() do { \ | ||
| 1287 | PS2_CLOCK_DDR &= ~(1<<PS2_CLOCK_BIT); \ | ||
| 1288 | PS2_DATA_DDR &= ~(1<<PS2_DATA_BIT); \ | ||
| 1289 | UCSR1C = ((1 << UMSEL10) | \ | ||
| 1290 | (3 << UPM10) | \ | ||
| 1291 | (0 << USBS1) | \ | ||
| 1292 | (3 << UCSZ10) | \ | ||
| 1293 | (0 << UCPOL1)); \ | ||
| 1294 | UCSR1A = 0; \ | ||
| 1295 | UBRR1H = 0; \ | ||
| 1296 | UBRR1L = 0; \ | ||
| 1297 | } while (0) | ||
| 1298 | #define PS2_USART_RX_INT_ON() do { \ | ||
| 1299 | UCSR1B = ((1 << RXCIE1) | \ | ||
| 1300 | (1 << RXEN1)); \ | ||
| 1301 | } while (0) | ||
| 1302 | #define PS2_USART_RX_POLL_ON() do { \ | ||
| 1303 | UCSR1B = (1 << RXEN1); \ | ||
| 1304 | } while (0) | ||
| 1305 | #define PS2_USART_OFF() do { \ | ||
| 1306 | UCSR1C = 0; \ | ||
| 1307 | UCSR1B &= ~((1 << RXEN1) | \ | ||
| 1308 | (1 << TXEN1)); \ | ||
| 1309 | } while (0) | ||
| 1310 | #define PS2_USART_RX_READY (UCSR1A & (1<<RXC1)) | ||
| 1311 | #define PS2_USART_RX_DATA UDR1 | ||
| 1312 | #define PS2_USART_ERROR (UCSR1A & ((1<<FE1) | (1<<DOR1) | (1<<UPE1))) | ||
| 1313 | #define PS2_USART_RX_VECT USART1_RX_vect | ||
| 1314 | #endif | ||
| 1315 | #endif | ||
| 1316 | #endif | ||
| 1317 | ``` | ||
| 1318 | |||
| 1319 | ### Additional Settings | ||
| 1320 | |||
| 1321 | #### PS/2 mouse features | ||
| 1322 | |||
| 1323 | These enable settings supported by the PS/2 mouse protocol: http://www.computer-engineering.org/ps2mouse/ | ||
| 1324 | |||
| 1325 | ``` | ||
| 1326 | /* Use remote mode instead of the default stream mode (see link) */ | ||
| 1327 | #define PS2_MOUSE_USE_REMOTE_MODE | ||
| 1328 | |||
| 1329 | /* Enable the scrollwheel or scroll gesture on your mouse or touchpad */ | ||
| 1330 | #define PS2_MOUSE_ENABLE_SCROLLING | ||
| 1331 | |||
| 1332 | /* Some mice will need a scroll mask to be configured. The default is 0xFF. */ | ||
| 1333 | #define PS2_MOUSE_SCROLL_MASK 0x0F | ||
| 1334 | |||
| 1335 | /* Applies a transformation to the movement before sending to the host (see link) */ | ||
| 1336 | #define PS2_MOUSE_USE_2_1_SCALING | ||
| 1337 | |||
| 1338 | /* The time to wait after initializing the ps2 host */ | ||
| 1339 | #define PS2_MOUSE_INIT_DELAY 1000 /* Default */ | ||
| 1340 | ``` | ||
| 1341 | |||
| 1342 | You can also call the following functions from ps2_mouse.h | ||
| 1343 | |||
| 1344 | ``` | ||
| 1345 | void ps2_mouse_disable_data_reporting(void); | ||
| 1346 | |||
| 1347 | void ps2_mouse_enable_data_reporting(void); | ||
| 1348 | |||
| 1349 | void ps2_mouse_set_remote_mode(void); | ||
| 1350 | |||
| 1351 | void ps2_mouse_set_stream_mode(void); | ||
| 1352 | |||
| 1353 | void ps2_mouse_set_scaling_2_1(void); | ||
| 1354 | |||
| 1355 | void ps2_mouse_set_scaling_1_1(void); | ||
| 1356 | |||
| 1357 | void ps2_mouse_set_resolution(ps2_mouse_resolution_t resolution); | ||
| 1358 | |||
| 1359 | void ps2_mouse_set_sample_rate(ps2_mouse_sample_rate_t sample_rate); | ||
| 1360 | ``` | ||
| 1361 | |||
| 1362 | #### Fine control | ||
| 1363 | |||
| 1364 | Use the following defines to change the sensitivity and speed of the mouse. | ||
| 1365 | Note: you can also use `ps2_mouse_set_resolution` for the same effect (not supported on most touchpads). | ||
| 1366 | |||
| 1367 | ``` | ||
| 1368 | #define PS2_MOUSE_X_MULTIPLIER 3 | ||
| 1369 | #define PS2_MOUSE_Y_MULTIPLIER 3 | ||
| 1370 | #define PS2_MOUSE_V_MULTIPLIER 1 | ||
| 1371 | ``` | ||
| 1372 | |||
| 1373 | #### Scroll button | ||
| 1374 | |||
| 1375 | If you're using a trackpoint, you will likely want to be able to use it for scrolling. | ||
| 1376 | Its possible to enable a "scroll button/s" that when pressed will cause the mouse to scroll instead of moving. | ||
| 1377 | To enable the feature, you must set a scroll button mask as follows: | ||
| 1378 | |||
| 1379 | ``` | ||
| 1380 | #define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BUTTON_MIDDLE) /* Default */ | ||
| 1381 | ``` | ||
| 1382 | |||
| 1383 | To disable the scroll button feature: | ||
| 1384 | |||
| 1385 | ``` | ||
| 1386 | #define PS2_MOUSE_SCROLL_BTN_MASK 0 | ||
| 1387 | ``` | ||
| 1388 | |||
| 1389 | The available buttons are: | ||
| 1390 | |||
| 1391 | ``` | ||
| 1392 | #define PS2_MOUSE_BTN_LEFT 0 | ||
| 1393 | #define PS2_MOUSE_BTN_RIGHT 1 | ||
| 1394 | #define PS2_MOUSE_BTN_MIDDLE 2 | ||
| 1395 | ``` | ||
| 1396 | |||
| 1397 | You can also combine buttons in the mask by `|`ing them together. | ||
| 1398 | |||
| 1399 | Once you've configured your scroll button mask, you must configure the scroll button send interval. | ||
| 1400 | This is the interval before which if the scroll buttons were released they would be sent to the host. | ||
| 1401 | After this interval, they will cause the mouse to scroll and will not be sent. | ||
| 1402 | |||
| 1403 | ``` | ||
| 1404 | #define PS2_MOUSE_SCROLL_BTN_SEND 300 /* Default */ | ||
| 1405 | ``` | ||
| 1406 | |||
| 1407 | To disable sending the scroll buttons: | ||
| 1408 | ``` | ||
| 1409 | #define PS2_MOUSE_SCROLL_BTN_SEND 0 | ||
| 1410 | ``` | ||
| 1411 | |||
| 1412 | Fine control over the scrolling is supported with the following defines: | ||
| 1413 | |||
| 1414 | ``` | ||
| 1415 | #define PS2_MOUSE_SCROLL_DIVISOR_H 2 | ||
| 1416 | #define PS2_MOUSE_SCROLL_DIVISOR_V 2 | ||
| 1417 | ``` | ||
| 1418 | |||
| 1419 | #### Debug settings | ||
| 1420 | |||
| 1421 | To debug the mouse, add `debug_mouse = true` or enable via bootmagic. | ||
| 1422 | |||
| 1423 | ``` | ||
| 1424 | /* To debug the mouse reports */ | ||
| 1425 | #define PS2_MOUSE_DEBUG_HID | ||
| 1426 | #define PS2_MOUSE_DEBUG_RAW | ||
| 1427 | ``` | ||
| 1428 | |||
| 1429 | ## Safety Considerations | ||
| 1430 | |||
| 1431 | You probably don't want to "brick" your keyboard, making it impossible | ||
| 1432 | to rewrite firmware onto it. Here are some of the parameters to show | ||
| 1433 | what things are (and likely aren't) too risky. | ||
| 1434 | |||
| 1435 | - If your keyboard map does not include RESET, then, to get into DFU | ||
| 1436 | mode, you will need to press the reset button on the PCB, which | ||
| 1437 | requires unscrewing the bottom. | ||
| 1438 | - Messing with tmk_core / common files might make the keyboard | ||
| 1439 | inoperable | ||
| 1440 | - Too large a .hex file is trouble; `make dfu` will erase the block, | ||
| 1441 | test the size (oops, wrong order!), which errors out, failing to | ||
| 1442 | flash the keyboard, leaving it in DFU mode. | ||
| 1443 | - To this end, note that the maximum .hex file size on Planck is | ||
| 1444 | 7000h (28672 decimal) | ||
| 1445 | ```Linking: .build/planck_rev4_cbbrowne.elf [OK] | ||
| 1446 | Creating load file for Flash: .build/planck_rev4_cbbrowne.hex [OK] | ||
| 1447 | |||
| 1448 | Size after: | ||
| 1449 | text data bss dec hex filename | ||
| 1450 | 0 22396 0 22396 577c planck_rev4_cbbrowne.hex | ||
| 1451 | ``` | ||
| 1452 | - The above file is of size 22396/577ch, which is less than | ||
| 1453 | 28672/7000h | ||
| 1454 | - As long as you have a suitable alternative .hex file around, you | ||
| 1455 | can retry, loading that one | ||
| 1456 | - Some of the options you might specify in your keyboard's Makefile | ||
| 1457 | consume extra memory; watch out for BOOTMAGIC_ENABLE, | ||
| 1458 | MOUSEKEY_ENABLE, EXTRAKEY_ENABLE, CONSOLE_ENABLE, API_SYSEX_ENABLE | ||
| 1459 | - DFU tools do /not/ allow you to write into the bootloader (unless | ||
| 1460 | you throw in extra fruitsalad of options), so there is little risk | ||
| 1461 | there. | ||
| 1462 | - EEPROM has around a 100000 write cycle. You shouldn't rewrite the | ||
| 1463 | firmware repeatedly and continually; that'll burn the EEPROM | ||
| 1464 | eventually. | ||
| 1465 | |||
| 1466 | # Porting your keyboard to QMK | ||
| 1467 | |||
| 1468 | 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. | ||
| 1469 | |||
| 1470 | ## `/keyboards/<keyboard>/config.h` | ||
| 1471 | |||
| 1472 | The `USB Device descriptor parameter` block contains parameters are used to uniquely identify your keyboard, but they don't really matter to the machine. | ||
| 1473 | |||
| 1474 | 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. | ||
| 1475 | |||
| 1476 | 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. | ||
| 1477 | |||
| 1478 | 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. | ||
| 1479 | |||
| 1480 | `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. | ||
| 1481 | |||
| 1482 | `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. | ||
| 1483 | |||
| 1484 | `BACKLIGHT_LEVELS` is how many levels exist for your backlight - max is 15, and they are computed automatically from this number. | ||
| 1485 | |||
| 1486 | ## `/keyboards/<keyboard>/Makefile` | ||
| 1487 | |||
| 1488 | 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`. | ||
| 1489 | |||
| 1490 | ``` | ||
| 1491 | # Boot Section Size in *bytes* | ||
| 1492 | # Teensy halfKay 512 | ||
| 1493 | # Teensy++ halfKay 1024 | ||
| 1494 | # Atmel DFU loader 4096 | ||
| 1495 | # LUFA bootloader 4096 | ||
| 1496 | # USBaspLoader 2048 | ||
| 1497 | OPT_DEFS += -DBOOTLOADER_SIZE=512 | ||
| 1498 | ``` | ||
| 1499 | |||
| 1500 | 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). | ||
| 1501 | |||
| 1502 | ## `/keyboards/<keyboard>/readme.md` | ||
| 1503 | |||
| 1504 | 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>/. | ||
| 1505 | |||
| 1506 | ## `/keyboards/<keyboard>/<keyboard>.c` | ||
| 1507 | |||
| 1508 | 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) | ||
| 1509 | |||
| 1510 | ## `/keyboards/<keyboard>/<keyboard>.h` | ||
| 1511 | |||
| 1512 | 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: | ||
| 1513 | |||
| 1514 | ``` | ||
| 1515 | #define KEYMAP( \ | ||
| 1516 | k00, k01, k02, \ | ||
| 1517 | k10, k11 \ | ||
| 1518 | ) \ | ||
| 1519 | { \ | ||
| 1520 | { k00, k01, k02 }, \ | ||
| 1521 | { k10, KC_NO, k11 }, \ | ||
| 1522 | } | ||
| 1523 | ``` | ||
| 1524 | |||
| 1525 | 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. | ||
| 1526 | |||
| 1527 | # Unit Testing | ||
| 1528 | |||
| 1529 | 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. | ||
| 1530 | |||
| 1531 | Instead I recommend these two books, explaining two different styles of Unit Testing in detail. | ||
| 1532 | |||
| 1533 | * "Test Driven Development: By Example: Kent Beck" | ||
| 1534 | * "Growing Object-Oriented Software, Guided By Tests: Steve Freeman, Nat Pryce" | ||
| 1535 | |||
| 1536 | 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. | ||
| 1537 | |||
| 1538 | ## Google Test and Google Mock | ||
| 1539 | 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. | ||
| 1540 | |||
| 1541 | ## Use of C++ | ||
| 1542 | |||
| 1543 | 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. | ||
| 1544 | |||
| 1545 | One thing to remember, is that you have to append `extern "C"` around all of your C file includes. | ||
| 1546 | |||
| 1547 | ## Adding tests for new or existing features | ||
| 1548 | |||
| 1549 | 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. | ||
| 1550 | |||
| 1551 | 1. If it doesn't already exist, add a test subfolder to the folder containing the feature. | ||
| 1552 | 2. Create a `testlist.mk` and a `rules.mk` file in that folder. | ||
| 1553 | 3. Include those files from the root folder `testlist.mk`and `build_test.mk` respectively. | ||
| 1554 | 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. | ||
| 1555 | 5. Define the source files and required options in the `rules.mk` file. | ||
| 1556 | * `_SRC` for source files | ||
| 1557 | * `_DEFS` for additional defines | ||
| 1558 | * `_INC` for additional include folders | ||
| 1559 | 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. | ||
| 1560 | |||
| 1561 | 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) | ||
| 1562 | |||
| 1563 | ## Running the tests | ||
| 1564 | |||
| 1565 | 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. | ||
| 1566 | |||
| 1567 | ## Debugging the tests | ||
| 1568 | |||
| 1569 | 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. | ||
| 1570 | |||
| 1571 | ## Full Integration tests | ||
| 1572 | |||
| 1573 | 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. | ||
| 1574 | |||
| 1575 | In that model you would emulate the input, and expect a certain output from the emulated keyboard. | ||
| 1576 | |||
| 1577 | # Tracing variables | ||
| 1578 | |||
| 1579 | 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. | ||
| 1580 | |||
| 1581 | 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. | ||
| 1582 | |||
| 1583 | 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 | ||
| 1584 | ```c | ||
| 1585 | void matrix_init_user(void) { | ||
| 1586 | ADD_TRACED_VARIABLE("layer", &layer_state, sizeof(layer_state)); | ||
| 1587 | } | ||
| 1588 | ``` | ||
| 1589 | |||
| 1590 | 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. | ||
| 1591 | |||
| 1592 | 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. | ||
| 1593 | |||
| 1594 | 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 b48173341..5df539def 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk | |||
| @@ -26,7 +26,7 @@ CFLAGS += -fno-inline-small-functions | |||
| 26 | CFLAGS += -fno-strict-aliasing | 26 | CFLAGS += -fno-strict-aliasing |
| 27 | 27 | ||
| 28 | CPPFLAGS += $(COMPILEFLAGS) | 28 | CPPFLAGS += $(COMPILEFLAGS) |
| 29 | CPPFLAGS += -fno-exceptions | 29 | CPPFLAGS += -fno-exceptions -std=c++11 |
| 30 | 30 | ||
| 31 | LDFLAGS +=-Wl,--gc-sections | 31 | LDFLAGS +=-Wl,--gc-sections |
| 32 | 32 | ||
diff --git a/tmk_core/common.mk b/tmk_core/common.mk index c32a12bb6..3c1373c08 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk | |||
| @@ -50,6 +50,10 @@ ifeq ($(strip $(EXTRAKEY_ENABLE)), yes) | |||
| 50 | TMK_COMMON_DEFS += -DEXTRAKEY_ENABLE | 50 | TMK_COMMON_DEFS += -DEXTRAKEY_ENABLE |
| 51 | endif | 51 | endif |
| 52 | 52 | ||
| 53 | ifeq ($(strip $(RAW_ENABLE)), yes) | ||
| 54 | TMK_COMMON_DEFS += -DRAW_ENABLE | ||
| 55 | endif | ||
| 56 | |||
| 53 | ifeq ($(strip $(CONSOLE_ENABLE)), yes) | 57 | ifeq ($(strip $(CONSOLE_ENABLE)), yes) |
| 54 | TMK_COMMON_DEFS += -DCONSOLE_ENABLE | 58 | TMK_COMMON_DEFS += -DCONSOLE_ENABLE |
| 55 | else | 59 | else |
diff --git a/tmk_core/common/raw_hid.h b/tmk_core/common/raw_hid.h new file mode 100644 index 000000000..86da02fd1 --- /dev/null +++ b/tmk_core/common/raw_hid.h | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | #ifndef _RAW_HID_H_ | ||
| 2 | #define _RAW_HID_H_ | ||
| 3 | |||
| 4 | void raw_hid_receive( uint8_t *data, uint8_t length ); | ||
| 5 | |||
| 6 | void raw_hid_send( uint8_t *data, uint8_t length ); | ||
| 7 | |||
| 8 | #endif | ||
diff --git a/tmk_core/protocol/lufa/adafruit_ble.cpp b/tmk_core/protocol/lufa/adafruit_ble.cpp index 37194e77a..fd6edd42c 100644 --- a/tmk_core/protocol/lufa/adafruit_ble.cpp +++ b/tmk_core/protocol/lufa/adafruit_ble.cpp | |||
| @@ -86,7 +86,7 @@ struct queue_item { | |||
| 86 | 86 | ||
| 87 | uint16_t consumer; | 87 | uint16_t consumer; |
| 88 | struct __attribute__((packed)) { | 88 | struct __attribute__((packed)) { |
| 89 | uint8_t x, y, scroll, pan; | 89 | int8_t x, y, scroll, pan; |
| 90 | } mousemove; | 90 | } mousemove; |
| 91 | }; | 91 | }; |
| 92 | }; | 92 | }; |
diff --git a/tmk_core/protocol/lufa/descriptor.c b/tmk_core/protocol/lufa/descriptor.c index 6f2407f58..14d99b50b 100644 --- a/tmk_core/protocol/lufa/descriptor.c +++ b/tmk_core/protocol/lufa/descriptor.c | |||
| @@ -40,6 +40,9 @@ | |||
| 40 | #include "report.h" | 40 | #include "report.h" |
| 41 | #include "descriptor.h" | 41 | #include "descriptor.h" |
| 42 | 42 | ||
| 43 | #ifndef USB_MAX_POWER_CONSUMPTION | ||
| 44 | #define USB_MAX_POWER_CONSUMPTION 500 | ||
| 45 | #endif | ||
| 43 | 46 | ||
| 44 | /******************************************************************************* | 47 | /******************************************************************************* |
| 45 | * HID Report Descriptors | 48 | * HID Report Descriptors |
| @@ -164,6 +167,28 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM ExtrakeyReport[] = | |||
| 164 | }; | 167 | }; |
| 165 | #endif | 168 | #endif |
| 166 | 169 | ||
| 170 | #ifdef RAW_ENABLE | ||
| 171 | const USB_Descriptor_HIDReport_Datatype_t PROGMEM RawReport[] = | ||
| 172 | { | ||
| 173 | HID_RI_USAGE_PAGE(16, 0xFF60), /* Vendor Page 0xFF60 */ | ||
| 174 | HID_RI_USAGE(8, 0x61), /* Vendor Usage 0x61 */ | ||
| 175 | HID_RI_COLLECTION(8, 0x01), /* Application */ | ||
| 176 | HID_RI_USAGE(8, 0x62), /* Vendor Usage 0x62 */ | ||
| 177 | HID_RI_LOGICAL_MINIMUM(8, 0x00), | ||
| 178 | HID_RI_LOGICAL_MAXIMUM(16, 0x00FF), | ||
| 179 | HID_RI_REPORT_COUNT(8, RAW_EPSIZE), | ||
| 180 | HID_RI_REPORT_SIZE(8, 0x08), | ||
| 181 | HID_RI_INPUT(8, HID_IOF_DATA | HID_IOF_VARIABLE | HID_IOF_ABSOLUTE), | ||
| 182 | HID_RI_USAGE(8, 0x63), /* Vendor Usage 0x63 */ | ||
| 183 | HID_RI_LOGICAL_MINIMUM(8, 0x00), | ||
| 184 | HID_RI_LOGICAL_MAXIMUM(16, 0x00FF), | ||
| 185 | HID_RI_REPORT_COUNT(8, RAW_EPSIZE), | ||
| 186 | HID_RI_REPORT_SIZE(8, 0x08), | ||
| 187 | HID_RI_OUTPUT(8, HID_IOF_DATA | HID_IOF_VARIABLE | HID_IOF_ABSOLUTE | HID_IOF_NON_VOLATILE), | ||
| 188 | HID_RI_END_COLLECTION(0), | ||
| 189 | }; | ||
| 190 | #endif | ||
| 191 | |||
| 167 | #ifdef CONSOLE_ENABLE | 192 | #ifdef CONSOLE_ENABLE |
| 168 | const USB_Descriptor_HIDReport_Datatype_t PROGMEM ConsoleReport[] = | 193 | const USB_Descriptor_HIDReport_Datatype_t PROGMEM ConsoleReport[] = |
| 169 | { | 194 | { |
| @@ -272,7 +297,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = | |||
| 272 | 297 | ||
| 273 | .ConfigAttributes = (USB_CONFIG_ATTR_RESERVED | USB_CONFIG_ATTR_REMOTEWAKEUP), | 298 | .ConfigAttributes = (USB_CONFIG_ATTR_RESERVED | USB_CONFIG_ATTR_REMOTEWAKEUP), |
| 274 | 299 | ||
| 275 | .MaxPowerConsumption = USB_CONFIG_POWER_MA(500) | 300 | .MaxPowerConsumption = USB_CONFIG_POWER_MA(USB_MAX_POWER_CONSUMPTION) |
| 276 | }, | 301 | }, |
| 277 | 302 | ||
| 278 | /* | 303 | /* |
| @@ -399,6 +424,58 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = | |||
| 399 | }, | 424 | }, |
| 400 | #endif | 425 | #endif |
| 401 | 426 | ||
| 427 | /* | ||
| 428 | * Raw | ||
| 429 | */ | ||
| 430 | #ifdef RAW_ENABLE | ||
| 431 | .Raw_Interface = | ||
| 432 | { | ||
| 433 | .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, | ||
| 434 | |||
| 435 | .InterfaceNumber = RAW_INTERFACE, | ||
| 436 | .AlternateSetting = 0x00, | ||
| 437 | |||
| 438 | .TotalEndpoints = 2, | ||
| 439 | |||
| 440 | .Class = HID_CSCP_HIDClass, | ||
| 441 | .SubClass = HID_CSCP_NonBootSubclass, | ||
| 442 | .Protocol = HID_CSCP_NonBootProtocol, | ||
| 443 | |||
| 444 | .InterfaceStrIndex = NO_DESCRIPTOR | ||
| 445 | }, | ||
| 446 | |||
| 447 | .Raw_HID = | ||
| 448 | { | ||
| 449 | .Header = {.Size = sizeof(USB_HID_Descriptor_HID_t), .Type = HID_DTYPE_HID}, | ||
| 450 | |||
| 451 | .HIDSpec = VERSION_BCD(1,1,1), | ||
| 452 | .CountryCode = 0x00, | ||
| 453 | .TotalReportDescriptors = 1, | ||
| 454 | .HIDReportType = HID_DTYPE_Report, | ||
| 455 | .HIDReportLength = sizeof(RawReport) | ||
| 456 | }, | ||
| 457 | |||
| 458 | .Raw_INEndpoint = | ||
| 459 | { | ||
| 460 | .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, | ||
| 461 | |||
| 462 | .EndpointAddress = (ENDPOINT_DIR_IN | RAW_IN_EPNUM), | ||
| 463 | .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), | ||
| 464 | .EndpointSize = RAW_EPSIZE, | ||
| 465 | .PollingIntervalMS = 0x01 | ||
| 466 | }, | ||
| 467 | |||
| 468 | .Raw_OUTEndpoint = | ||
| 469 | { | ||
| 470 | .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, | ||
| 471 | |||
| 472 | .EndpointAddress = (ENDPOINT_DIR_OUT | RAW_OUT_EPNUM), | ||
| 473 | .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), | ||
| 474 | .EndpointSize = RAW_EPSIZE, | ||
| 475 | .PollingIntervalMS = 0x01 | ||
| 476 | }, | ||
| 477 | #endif | ||
| 478 | |||
| 402 | /* | 479 | /* |
| 403 | * Console | 480 | * Console |
| 404 | */ | 481 | */ |
| @@ -754,7 +831,6 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = | |||
| 754 | .PollingIntervalMS = 0x05 | 831 | .PollingIntervalMS = 0x05 |
| 755 | }, | 832 | }, |
| 756 | #endif | 833 | #endif |
| 757 | |||
| 758 | }; | 834 | }; |
| 759 | 835 | ||
| 760 | 836 | ||
| @@ -846,6 +922,12 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, | |||
| 846 | Size = sizeof(USB_HID_Descriptor_HID_t); | 922 | Size = sizeof(USB_HID_Descriptor_HID_t); |
| 847 | break; | 923 | break; |
| 848 | #endif | 924 | #endif |
| 925 | #ifdef RAW_ENABLE | ||
| 926 | case RAW_INTERFACE: | ||
| 927 | Address = &ConfigurationDescriptor.Raw_HID; | ||
| 928 | Size = sizeof(USB_HID_Descriptor_HID_t); | ||
| 929 | break; | ||
| 930 | #endif | ||
| 849 | #ifdef CONSOLE_ENABLE | 931 | #ifdef CONSOLE_ENABLE |
| 850 | case CONSOLE_INTERFACE: | 932 | case CONSOLE_INTERFACE: |
| 851 | Address = &ConfigurationDescriptor.Console_HID; | 933 | Address = &ConfigurationDescriptor.Console_HID; |
| @@ -878,6 +960,12 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, | |||
| 878 | Size = sizeof(ExtrakeyReport); | 960 | Size = sizeof(ExtrakeyReport); |
| 879 | break; | 961 | break; |
| 880 | #endif | 962 | #endif |
| 963 | #ifdef RAW_ENABLE | ||
| 964 | case RAW_INTERFACE: | ||
| 965 | Address = &RawReport; | ||
| 966 | Size = sizeof(RawReport); | ||
| 967 | break; | ||
| 968 | #endif | ||
| 881 | #ifdef CONSOLE_ENABLE | 969 | #ifdef CONSOLE_ENABLE |
| 882 | case CONSOLE_INTERFACE: | 970 | case CONSOLE_INTERFACE: |
| 883 | Address = &ConsoleReport; | 971 | Address = &ConsoleReport; |
diff --git a/tmk_core/protocol/lufa/descriptor.h b/tmk_core/protocol/lufa/descriptor.h index c6c94e361..24ce420e6 100644 --- a/tmk_core/protocol/lufa/descriptor.h +++ b/tmk_core/protocol/lufa/descriptor.h | |||
| @@ -71,6 +71,14 @@ typedef struct | |||
| 71 | USB_Descriptor_Endpoint_t Extrakey_INEndpoint; | 71 | USB_Descriptor_Endpoint_t Extrakey_INEndpoint; |
| 72 | #endif | 72 | #endif |
| 73 | 73 | ||
| 74 | #ifdef RAW_ENABLE | ||
| 75 | // Raw HID Interface | ||
| 76 | USB_Descriptor_Interface_t Raw_Interface; | ||
| 77 | USB_HID_Descriptor_HID_t Raw_HID; | ||
| 78 | USB_Descriptor_Endpoint_t Raw_INEndpoint; | ||
| 79 | USB_Descriptor_Endpoint_t Raw_OUTEndpoint; | ||
| 80 | #endif | ||
| 81 | |||
| 74 | #ifdef CONSOLE_ENABLE | 82 | #ifdef CONSOLE_ENABLE |
| 75 | // Console HID Interface | 83 | // Console HID Interface |
| 76 | USB_Descriptor_Interface_t Console_Interface; | 84 | USB_Descriptor_Interface_t Console_Interface; |
| @@ -137,10 +145,16 @@ typedef struct | |||
| 137 | # define EXTRAKEY_INTERFACE MOUSE_INTERFACE | 145 | # define EXTRAKEY_INTERFACE MOUSE_INTERFACE |
| 138 | #endif | 146 | #endif |
| 139 | 147 | ||
| 148 | #ifdef RAW_ENABLE | ||
| 149 | # define RAW_INTERFACE (EXTRAKEY_INTERFACE + 1) | ||
| 150 | #else | ||
| 151 | # define RAW_INTERFACE EXTRAKEY_INTERFACE | ||
| 152 | #endif | ||
| 153 | |||
| 140 | #ifdef CONSOLE_ENABLE | 154 | #ifdef CONSOLE_ENABLE |
| 141 | # define CONSOLE_INTERFACE (EXTRAKEY_INTERFACE + 1) | 155 | # define CONSOLE_INTERFACE (RAW_INTERFACE + 1) |
| 142 | #else | 156 | #else |
| 143 | # define CONSOLE_INTERFACE EXTRAKEY_INTERFACE | 157 | # define CONSOLE_INTERFACE RAW_INTERFACE |
| 144 | #endif | 158 | #endif |
| 145 | 159 | ||
| 146 | #ifdef NKRO_ENABLE | 160 | #ifdef NKRO_ENABLE |
| @@ -182,12 +196,19 @@ typedef struct | |||
| 182 | # define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM | 196 | # define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM |
| 183 | #endif | 197 | #endif |
| 184 | 198 | ||
| 199 | #ifdef RAW_ENABLE | ||
| 200 | # define RAW_IN_EPNUM (EXTRAKEY_IN_EPNUM + 1) | ||
| 201 | # define RAW_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 2) | ||
| 202 | #else | ||
| 203 | # define RAW_OUT_EPNUM EXTRAKEY_IN_EPNUM | ||
| 204 | #endif | ||
| 205 | |||
| 185 | #ifdef CONSOLE_ENABLE | 206 | #ifdef CONSOLE_ENABLE |
| 186 | # define CONSOLE_IN_EPNUM (EXTRAKEY_IN_EPNUM + 1) | 207 | # define CONSOLE_IN_EPNUM (RAW_OUT_EPNUM + 1) |
| 187 | # define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 1) | 208 | //# define CONSOLE_OUT_EPNUM (RAW_OUT_EPNUM + 2) |
| 188 | //# define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 2) | 209 | # define CONSOLE_OUT_EPNUM (RAW_OUT_EPNUM + 1) |
| 189 | #else | 210 | #else |
| 190 | # define CONSOLE_OUT_EPNUM EXTRAKEY_IN_EPNUM | 211 | # define CONSOLE_OUT_EPNUM RAW_OUT_EPNUM |
| 191 | #endif | 212 | #endif |
| 192 | 213 | ||
| 193 | #ifdef NKRO_ENABLE | 214 | #ifdef NKRO_ENABLE |
| @@ -217,7 +238,6 @@ typedef struct | |||
| 217 | # define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM | 238 | # define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM |
| 218 | #endif | 239 | #endif |
| 219 | 240 | ||
| 220 | |||
| 221 | #if defined(__AVR_ATmega32U2__) && CDC_OUT_EPNUM > 4 | 241 | #if defined(__AVR_ATmega32U2__) && CDC_OUT_EPNUM > 4 |
| 222 | # error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO, MIDI, SERIAL)" | 242 | # error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO, MIDI, SERIAL)" |
| 223 | #endif | 243 | #endif |
| @@ -225,6 +245,7 @@ typedef struct | |||
| 225 | #define KEYBOARD_EPSIZE 8 | 245 | #define KEYBOARD_EPSIZE 8 |
| 226 | #define MOUSE_EPSIZE 8 | 246 | #define MOUSE_EPSIZE 8 |
| 227 | #define EXTRAKEY_EPSIZE 8 | 247 | #define EXTRAKEY_EPSIZE 8 |
| 248 | #define RAW_EPSIZE 32 | ||
| 228 | #define CONSOLE_EPSIZE 32 | 249 | #define CONSOLE_EPSIZE 32 |
| 229 | #define NKRO_EPSIZE 32 | 250 | #define NKRO_EPSIZE 32 |
| 230 | #define MIDI_STREAM_EPSIZE 64 | 251 | #define MIDI_STREAM_EPSIZE 64 |
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index ee2552c19..dd78fe621 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c | |||
| @@ -84,6 +84,10 @@ | |||
| 84 | #include "sysex_tools.h" | 84 | #include "sysex_tools.h" |
| 85 | #endif | 85 | #endif |
| 86 | 86 | ||
| 87 | #ifdef RAW_ENABLE | ||
| 88 | #include "raw_hid.h" | ||
| 89 | #endif | ||
| 90 | |||
| 87 | uint8_t keyboard_idle = 0; | 91 | uint8_t keyboard_idle = 0; |
| 88 | /* 0: Boot Protocol, 1: Report Protocol(default) */ | 92 | /* 0: Boot Protocol, 1: Report Protocol(default) */ |
| 89 | uint8_t keyboard_protocol = 1; | 93 | uint8_t keyboard_protocol = 1; |
| @@ -179,6 +183,80 @@ USB_ClassInfo_CDC_Device_t cdc_device = | |||
| 179 | }; | 183 | }; |
| 180 | #endif | 184 | #endif |
| 181 | 185 | ||
| 186 | #ifdef RAW_ENABLE | ||
| 187 | |||
| 188 | void raw_hid_send( uint8_t *data, uint8_t length ) | ||
| 189 | { | ||
| 190 | // TODO: implement variable size packet | ||
| 191 | if ( length != RAW_EPSIZE ) | ||
| 192 | { | ||
| 193 | return; | ||
| 194 | } | ||
| 195 | |||
| 196 | if (USB_DeviceState != DEVICE_STATE_Configured) | ||
| 197 | { | ||
| 198 | return; | ||
| 199 | } | ||
| 200 | |||
| 201 | // TODO: decide if we allow calls to raw_hid_send() in the middle | ||
| 202 | // of other endpoint usage. | ||
| 203 | uint8_t ep = Endpoint_GetCurrentEndpoint(); | ||
| 204 | |||
| 205 | Endpoint_SelectEndpoint(RAW_IN_EPNUM); | ||
| 206 | |||
| 207 | // Check to see if the host is ready to accept another packet | ||
| 208 | if (Endpoint_IsINReady()) | ||
| 209 | { | ||
| 210 | // Write data | ||
| 211 | Endpoint_Write_Stream_LE(data, RAW_EPSIZE, NULL); | ||
| 212 | // Finalize the stream transfer to send the last packet | ||
| 213 | Endpoint_ClearIN(); | ||
| 214 | } | ||
| 215 | |||
| 216 | Endpoint_SelectEndpoint(ep); | ||
| 217 | } | ||
| 218 | |||
| 219 | __attribute__ ((weak)) | ||
| 220 | void raw_hid_receive( uint8_t *data, uint8_t length ) | ||
| 221 | { | ||
| 222 | // Users should #include "raw_hid.h" in their own code | ||
| 223 | // and implement this function there. Leave this as weak linkage | ||
| 224 | // so users can opt to not handle data coming in. | ||
| 225 | } | ||
| 226 | |||
| 227 | static void raw_hid_task(void) | ||
| 228 | { | ||
| 229 | // Create a temporary buffer to hold the read in data from the host | ||
| 230 | uint8_t data[RAW_EPSIZE]; | ||
| 231 | bool data_read = false; | ||
| 232 | |||
| 233 | // Device must be connected and configured for the task to run | ||
| 234 | if (USB_DeviceState != DEVICE_STATE_Configured) | ||
| 235 | return; | ||
| 236 | |||
| 237 | Endpoint_SelectEndpoint(RAW_OUT_EPNUM); | ||
| 238 | |||
| 239 | // Check to see if a packet has been sent from the host | ||
| 240 | if (Endpoint_IsOUTReceived()) | ||
| 241 | { | ||
| 242 | // Check to see if the packet contains data | ||
| 243 | if (Endpoint_IsReadWriteAllowed()) | ||
| 244 | { | ||
| 245 | /* Read data */ | ||
| 246 | Endpoint_Read_Stream_LE(data, sizeof(data), NULL); | ||
| 247 | data_read = true; | ||
| 248 | } | ||
| 249 | |||
| 250 | // Finalize the stream transfer to receive the last packet | ||
| 251 | Endpoint_ClearOUT(); | ||
| 252 | |||
| 253 | if ( data_read ) | ||
| 254 | { | ||
| 255 | raw_hid_receive( data, sizeof(data) ); | ||
| 256 | } | ||
| 257 | } | ||
| 258 | } | ||
| 259 | #endif | ||
| 182 | 260 | ||
| 183 | /******************************************************************************* | 261 | /******************************************************************************* |
| 184 | * Console | 262 | * Console |
| @@ -298,6 +376,8 @@ void EVENT_USB_Device_WakeUp() | |||
| 298 | #endif | 376 | #endif |
| 299 | } | 377 | } |
| 300 | 378 | ||
| 379 | |||
| 380 | |||
| 301 | #ifdef CONSOLE_ENABLE | 381 | #ifdef CONSOLE_ENABLE |
| 302 | static bool console_flush = false; | 382 | static bool console_flush = false; |
| 303 | #define CONSOLE_FLUSH_SET(b) do { \ | 383 | #define CONSOLE_FLUSH_SET(b) do { \ |
| @@ -317,6 +397,7 @@ void EVENT_USB_Device_StartOfFrame(void) | |||
| 317 | Console_Task(); | 397 | Console_Task(); |
| 318 | console_flush = false; | 398 | console_flush = false; |
| 319 | } | 399 | } |
| 400 | |||
| 320 | #endif | 401 | #endif |
| 321 | 402 | ||
| 322 | /** Event handler for the USB_ConfigurationChanged event. | 403 | /** Event handler for the USB_ConfigurationChanged event. |
| @@ -345,6 +426,14 @@ void EVENT_USB_Device_ConfigurationChanged(void) | |||
| 345 | EXTRAKEY_EPSIZE, ENDPOINT_BANK_SINGLE); | 426 | EXTRAKEY_EPSIZE, ENDPOINT_BANK_SINGLE); |
| 346 | #endif | 427 | #endif |
| 347 | 428 | ||
| 429 | #ifdef RAW_ENABLE | ||
| 430 | /* Setup Raw HID Report Endpoints */ | ||
| 431 | ConfigSuccess &= ENDPOINT_CONFIG(RAW_IN_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_IN, | ||
| 432 | RAW_EPSIZE, ENDPOINT_BANK_SINGLE); | ||
| 433 | ConfigSuccess &= ENDPOINT_CONFIG(RAW_OUT_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_OUT, | ||
| 434 | RAW_EPSIZE, ENDPOINT_BANK_SINGLE); | ||
| 435 | #endif | ||
| 436 | |||
| 348 | #ifdef CONSOLE_ENABLE | 437 | #ifdef CONSOLE_ENABLE |
| 349 | /* Setup Console HID Report Endpoints */ | 438 | /* Setup Console HID Report Endpoints */ |
| 350 | ConfigSuccess &= ENDPOINT_CONFIG(CONSOLE_IN_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_IN, | 439 | ConfigSuccess &= ENDPOINT_CONFIG(CONSOLE_IN_EPNUM, EP_TYPE_INTERRUPT, ENDPOINT_DIR_IN, |
| @@ -1124,9 +1213,14 @@ int main(void) | |||
| 1124 | CDC_Device_USBTask(&cdc_device); | 1213 | CDC_Device_USBTask(&cdc_device); |
| 1125 | #endif | 1214 | #endif |
| 1126 | 1215 | ||
| 1216 | #ifdef RAW_ENABLE | ||
| 1217 | raw_hid_task(); | ||
| 1218 | #endif | ||
| 1219 | |||
| 1127 | #if !defined(INTERRUPT_CONTROL_ENDPOINT) | 1220 | #if !defined(INTERRUPT_CONTROL_ENDPOINT) |
| 1128 | USB_USBTask(); | 1221 | USB_USBTask(); |
| 1129 | #endif | 1222 | #endif |
| 1223 | |||
| 1130 | } | 1224 | } |
| 1131 | } | 1225 | } |
| 1132 | 1226 | ||
diff --git a/tmk_core/protocol/ps2_mouse.c b/tmk_core/protocol/ps2_mouse.c index af971dd49..d9ccbecb4 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/>. | |||
| 28 | 28 | ||
| 29 | /* ============================= MACROS ============================ */ | 29 | /* ============================= MACROS ============================ */ |
| 30 | 30 | ||
| 31 | #define PS2_MOUSE_SEND(command, message) \ | ||
| 32 | do { \ | ||
| 33 | uint8_t rcv = ps2_host_send(command); \ | ||
| 34 | if (debug_mouse) { \ | ||
| 35 | print((message)); \ | ||
| 36 | xprintf(" command: %X, result: %X, error: %X \n", command, rcv, ps2_error); \ | ||
| 37 | } \ | ||
| 38 | } while(0) | ||
| 39 | |||
| 40 | #define PS2_MOUSE_SEND_SAFE(command, message) \ | ||
| 41 | do { \ | ||
| 42 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 43 | ps2_mouse_disable_data_reporting(); \ | ||
| 44 | } \ | ||
| 45 | PS2_MOUSE_SEND(command, message); \ | ||
| 46 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 47 | ps2_mouse_enable_data_reporting(); \ | ||
| 48 | } \ | ||
| 49 | } while(0) | ||
| 50 | |||
| 51 | #define PS2_MOUSE_SET_SAFE(command, value, message) \ | ||
| 52 | do { \ | ||
| 53 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 54 | ps2_mouse_disable_data_reporting(); \ | ||
| 55 | } \ | ||
| 56 | PS2_MOUSE_SEND(command, message); \ | ||
| 57 | PS2_MOUSE_SEND(value, "Sending value"); \ | ||
| 58 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 59 | ps2_mouse_enable_data_reporting(); \ | ||
| 60 | } \ | ||
| 61 | } while(0) | ||
| 62 | |||
| 63 | #define PS2_MOUSE_RECEIVE(message) \ | ||
| 64 | do { \ | ||
| 65 | uint8_t rcv = ps2_host_recv_response(); \ | ||
| 66 | if (debug_mouse) { \ | ||
| 67 | print((message)); \ | ||
| 68 | xprintf(" result: %X, error: %X \n", rcv, ps2_error); \ | ||
| 69 | } \ | ||
| 70 | } while(0) | ||
| 71 | |||
| 72 | static enum ps2_mouse_mode_e { | ||
| 73 | PS2_MOUSE_STREAM_MODE, | ||
| 74 | PS2_MOUSE_REMOTE_MODE, | ||
| 75 | } ps2_mouse_mode = PS2_MOUSE_STREAM_MODE; | ||
| 76 | |||
| 77 | static report_mouse_t mouse_report = {}; | 31 | static report_mouse_t mouse_report = {}; |
| 78 | 32 | ||
| 79 | static inline void ps2_mouse_print_report(report_mouse_t *mouse_report); | 33 | static inline void ps2_mouse_print_report(report_mouse_t *mouse_report); |
| @@ -108,6 +62,12 @@ void ps2_mouse_init(void) { | |||
| 108 | #ifdef PS2_MOUSE_USE_2_1_SCALING | 62 | #ifdef PS2_MOUSE_USE_2_1_SCALING |
| 109 | ps2_mouse_set_scaling_2_1(); | 63 | ps2_mouse_set_scaling_2_1(); |
| 110 | #endif | 64 | #endif |
| 65 | |||
| 66 | ps2_mouse_init_user(); | ||
| 67 | } | ||
| 68 | |||
| 69 | __attribute__((weak)) | ||
| 70 | void ps2_mouse_init_user(void) { | ||
| 111 | } | 71 | } |
| 112 | 72 | ||
| 113 | void ps2_mouse_task(void) { | 73 | void ps2_mouse_task(void) { |
diff --git a/tmk_core/protocol/ps2_mouse.h b/tmk_core/protocol/ps2_mouse.h index e11c705fc..3c93a4634 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/>. | |||
| 19 | #define PS2_MOUSE_H | 19 | #define PS2_MOUSE_H |
| 20 | 20 | ||
| 21 | #include <stdbool.h> | 21 | #include <stdbool.h> |
| 22 | #include "debug.h" | ||
| 23 | |||
| 24 | #define PS2_MOUSE_SEND(command, message) \ | ||
| 25 | do { \ | ||
| 26 | uint8_t rcv = ps2_host_send(command); \ | ||
| 27 | if (debug_mouse) { \ | ||
| 28 | print((message)); \ | ||
| 29 | xprintf(" command: %X, result: %X, error: %X \n", command, rcv, ps2_error); \ | ||
| 30 | } \ | ||
| 31 | } while(0) | ||
| 32 | |||
| 33 | #define PS2_MOUSE_SEND_SAFE(command, message) \ | ||
| 34 | do { \ | ||
| 35 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 36 | ps2_mouse_disable_data_reporting(); \ | ||
| 37 | } \ | ||
| 38 | PS2_MOUSE_SEND(command, message); \ | ||
| 39 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 40 | ps2_mouse_enable_data_reporting(); \ | ||
| 41 | } \ | ||
| 42 | } while(0) | ||
| 43 | |||
| 44 | #define PS2_MOUSE_SET_SAFE(command, value, message) \ | ||
| 45 | do { \ | ||
| 46 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 47 | ps2_mouse_disable_data_reporting(); \ | ||
| 48 | } \ | ||
| 49 | PS2_MOUSE_SEND(command, message); \ | ||
| 50 | PS2_MOUSE_SEND(value, "Sending value"); \ | ||
| 51 | if (PS2_MOUSE_STREAM_MODE == ps2_mouse_mode) { \ | ||
| 52 | ps2_mouse_enable_data_reporting(); \ | ||
| 53 | } \ | ||
| 54 | } while(0) | ||
| 55 | |||
| 56 | #define PS2_MOUSE_RECEIVE(message) \ | ||
| 57 | do { \ | ||
| 58 | uint8_t rcv = ps2_host_recv_response(); \ | ||
| 59 | if (debug_mouse) { \ | ||
| 60 | print((message)); \ | ||
| 61 | xprintf(" result: %X, error: %X \n", rcv, ps2_error); \ | ||
| 62 | } \ | ||
| 63 | } while(0) | ||
| 64 | |||
| 65 | static enum ps2_mouse_mode_e { | ||
| 66 | PS2_MOUSE_STREAM_MODE, | ||
| 67 | PS2_MOUSE_REMOTE_MODE, | ||
| 68 | } ps2_mouse_mode = PS2_MOUSE_STREAM_MODE; | ||
| 22 | 69 | ||
| 23 | /* | 70 | /* |
| 24 | * Data format: | 71 | * Data format: |
| @@ -107,6 +154,8 @@ typedef enum ps2_mouse_sample_rate_e { | |||
| 107 | 154 | ||
| 108 | void ps2_mouse_init(void); | 155 | void ps2_mouse_init(void); |
| 109 | 156 | ||
| 157 | void ps2_mouse_init_user(void); | ||
| 158 | |||
| 110 | void ps2_mouse_task(void); | 159 | void ps2_mouse_task(void); |
| 111 | 160 | ||
| 112 | void ps2_mouse_disable_data_reporting(void); | 161 | void ps2_mouse_disable_data_reporting(void); |
